Gets and sets the minimum brightness ("V" in HSV colorspace) required for a pixel to be considered "color".
Syntax
public byte MinimumBrightness {get; set;}
public: __property byte get_MinimumBrightness();
public: __property void set_MinimumBrightness(
byte value
);
public:
property byte MinimumBrightness {
byte get();
void set ( byte value);
}
'Declaration
Public Property MinimumBrightness As Byte
'Usage
Dim instance As DetectColorOptions
Dim value As Byte
instance.MinimumBrightness = value
value = instance.MinimumBrightness
See Also