Hii TI Community,
In face detect demo of C6748 LCDK
CvScalar blue = {255, 0, 0, 0};
is drawing blue rectangle across face.
It is working perfect for blue color but when I am changing other values it is making black rectangle. It is not following RGB model.
What model it is following?
If I want to draw red color box what should be CvScalar vale?
CvScalar red = {0,255, 0, 0, 0}; ???
CvScalar green = {0,0,255, 0}; ???
Any arbitary color how to represent?
With regards,
AS