create a black image.
> I've a problem with RGB2HSV conversion, it's not returning the black&white
> picture like backprojection in your research doc. But if I use RGB2GRAY it
> will fine. Why RGB2HSV conversion not returning black&white picture ?
> Could you please reply to dila...@gmail.com (or give your e-mail) then I
> can send my code and returned pictures to you.
rgb to HSV will convert the 3 channel RGB (Red Green Blue) image to the
3 channel HSV (Hue Saturation Value) image space. Displaying this image
as a RGB image gives no meaningful result. You should take one channel,
hue for example, and do your stuff with that image. When you display one
channel of a HSV image you get a grey scale image. Note that probably
the values will be between 0 and 1, so you need to multiply it with 255
for correct visualization.
- Gijs
It seems you are abusing functions, but it may work.
- gijs