public static byte[] BinaryNotConverter(byte[] rgbValues, RGB thresholdMax, RGB thresholdMin)
 {
     return(BinaryNotConverter(rgbValues, thresholdMax.R, thresholdMax.G, thresholdMax.B, thresholdMin.R, thresholdMin.G, thresholdMin.B));
 }
 public static byte[] BinaryConverter(byte[] rgbValues, RGB thresholdMax)
 {
     return(BinaryConverter(rgbValues, thresholdMax.R, thresholdMax.G, thresholdMax.B));
 }
Exemplo n.º 3
0
 public static byte[] DrawBoxLine(byte[] rgbValues, Size bmpSize, RGB color, Point pos, Size size)
 {
     return(DrawBoxLine(rgbValues, bmpSize.Width, bmpSize.Height, color.R, color.G, color.B, pos.X, pos.Y, size.Width, size.Height));
 }