图像处理中,各个颜色及代表的编码

typedef enum ColorList //红、橙、黄、绿、蓝绿、蓝、紫、黑、白

{

  RED = 0,

  ORANGE,

  YELLOW,

  GREEN,

  TURQUOISE,

  CYAN,

  BLUE,

  PURPLE,

  BLACK,

  WHITE

COLOR;

 

static const CvScalar colors[] = {

  {{  0,  0,255}},

  {{  0,128,255}},

  {{  0,255,255}},

  {{  0,255,  0}},

  {{255,128,  0}},

  {{255,255,  0}},

  {{255,  0,  0}},

  {{255,  0,255}},

  {{  0,  0,  0}},

  {{255,255,255}}

};

你可能感兴趣的:(图像处理)