Questions tagged [hsv]

HSV is cylindrical color space that determines colors by hue (0°-360°), saturation (percentage of white) and value (percentage of black).

468 questions
-3
votes
1 answer

HSV to RGB paint

I want to paint that: hsv I already wrote that code. I used that site to write hsvtorgb method: http://www.rapidtables.com/convert/color/hsv-to-rgb.htm Unfortunatelly my code doesn't show what i want. Can you tell me why? Thanks a lot! I am…
JKSX
  • 1
  • 2
-3
votes
1 answer

How would I translate this equation into code?

I am working in Python, and I a trying to compute a wight matrix for a graph of pixels, and the weight of each edge is dependent on their "feature" similarity (F(i) - F(j)), and their location similarity (X(i)-X(j)). "Features" includes intensity,…
user2407420
-4
votes
1 answer

How do I convert a RBG image to HSV and save the H, S, and V values into 3 separate images in C++ using OpenCV?

I have an RBG picture that I want to convert into HSV. I want to save the H, S, and V values into 3 separate images. How would I do it? My current code consists of just converting the RGB image to HSV: #include "opencv2/imgproc.hpp" #include…
user9701233
1 2 3
31
32