'Declaration
Public Function New( _ ByVal id As String, _ ByVal name As String, _ ByVal isSelected As Boolean, _ ByVal sectorID As String, _ ByVal x As Double, _ ByVal y As Double, _ ByVal diameter As Double, _ ByVal area As Double, _ ByVal brightness As Double, _ ByVal averageRed As Double, _ ByVal averageGreen As Double, _ ByVal averageBlue As Double, _ ByVal redness As Double, _ ByVal greenness As Double, _ ByVal blueness As Double, _ ByVal proximityToClosest As Double, _ ByVal circularity As Double _ )
'Usage
Dim id As String Dim name As String Dim isSelected As Boolean Dim sectorID As String Dim x As Double Dim y As Double Dim diameter As Double Dim area As Double Dim brightness As Double Dim averageRed As Double Dim averageGreen As Double Dim averageBlue As Double Dim redness As Double Dim greenness As Double Dim blueness As Double Dim proximityToClosest As Double Dim circularity As Double Dim instance As New ColonyInformation(id, name, isSelected, sectorID, x, y, diameter, area, brightness, averageRed, averageGreen, averageBlue, redness, greenness, blueness, proximityToClosest, circularity)
public ColonyInformation( string id, string name, bool isSelected, string sectorID, double x, double y, double diameter, double area, double brightness, double averageRed, double averageGreen, double averageBlue, double redness, double greenness, double blueness, double proximityToClosest, double circularity )
public: ColonyInformation( String^ id, String^ name, bool isSelected, String^ sectorID, double x, double y, double diameter, double area, double brightness, double averageRed, double averageGreen, double averageBlue, double redness, double greenness, double blueness, double proximityToClosest, double circularity )
Parameters
- id
- The ID of the colony.
- name
- The name of the colony.
- isSelected
- If the colony was selected for picking.
- sectorID
- The sector ID of the colony.
- x
- The X location of the colony within the plate.
- y
- The Y location of the colony within the plate.
- diameter
- The diameter of the colony, in mm.
- area
- The area of the colony, in mm2.
- brightness
- The brightness of the colony as a normalised value.
- averageRed
- The average red of the colony as a normalised value.
- averageGreen
- The average green of the colony as a normalised value.
- averageBlue
- The average blue of the colony as a normalised value.
- redness
- The redness of the colony as a normalised value.
- greenness
- The greenness of the colony as a normalised value.
- blueness
- The blueness of the colony as a normalised value.
- proximityToClosest
- The proximity to the closest colony, in mm.
- circularity
- The circularity of the colony colony as a normalised value.