开始学习C#+emgucv了,这里会有一些自己想要记住的东西!!开始更新!!
图像
1、创建图像
Image<Gray(颜色属性), Byte(图像深度)> image = new Image<Gray, Byte>( width, height);
其中颜色属性可选:
- Gray
- Bgr (Blue Green Red)
- Bgra (Blue Green Red Alpha)
- Hsv (Hue Saturation Value)
- Hls (Hue Lightness Saturation)
- Lab (CIE L*a*b*)
- Luv (CIE L*u*v*)
- Xyz (CIE XYZ.Rec 709 with D65 white point)
- Ycc (YCrCb JPEG)
- Byte
- SByte
- Single (float)
- Double
- UInt16
- Int16
- Int32 (int)