I am pretty new to these things, I have implemented a code in C++ to find HSV values from RGB values.
R = 255;
G = 0;
B = 0;
for this i am getting the value of HSV
as :
H = 0;
S = 1;
V = 1;
No i am taking here V= 255V
and S = 255S
whereas H = H/2
. I am getting correct hsv
values but i dont know how to plot them in 24 bit bitmap image. I have searched internet but could bot find. Anybody can help me out here ? Thankx