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

learn more… | top users | synonyms

0
votes
1answer
17 views

Convert from Vec3b to Mat3b

I am using BGR to HSV conversion of image using OpenCV. Since I am new to this field and software, I may sound incorrect so please let me know if I am wrong. Now, in my school project i want to work ...
1
vote
2answers
27 views

Why is the range of hue 0-180° in opencv

Can anybody explain to me why the hue value of an HSV image in OpenCV only goes to 180° and not the full 360°? I have found somewhere that OpenCV uses a 180° cylinder, but I can not really visualize ...
1
vote
1answer
30 views

how to use kmeans on a hsv matrix

I am trying to use kmeans clustering only on the h matrix (from the original picture) and I am having trouble with the size of the matrix that I use with kmeans. I know that I need to reshape it , but ...
0
votes
1answer
26 views

HSV conversion with cvCvtColor() issue

I'm trying convert RGB image to HSV with the function cvCvtColor(), but the results are unexpected. For example, white are converted to something near to red. cvCvtColor(img, hsv, ...
0
votes
1answer
56 views

Calculate perceived equal steps in color brightness

I've been trying to figure this out for a while, and it's driving me mad. As most people know, if you draw 10 rectangles next to each other, ranging from white to black in equal steps of HSV ...
2
votes
2answers
66 views

Saturation, Value remapping to compensate for lighting

I have the same object that is shot in two different lighting conditions by the same camera. Suppose I take the saturation of a red colored component A, which becomes A' in the second picture. If I ...
-1
votes
0answers
27 views

How to convert RGB to HSV manually

I would like to clarify my understanding of the formula presented below, and how to use a calculator with the functions outlined (e.g. delta) The R,G,B values are divided by 255 to change the range ...
0
votes
0answers
36 views

projecting light and shadows on a surface

Hi I am trying to extract the lighting and the shadow from one surface and apply it to another type of surface. I convert the image to HSV and extract the Hue component and plot it which seems to give ...
1
vote
0answers
51 views

Sorting colors by Hue in php

H ieveryone, I would like to sort colors so that they are beautifully organized (in a way that similar colors are grouped together) I have found this function 'rgb2hsl' somewhere in a forum (sorryif ...
-1
votes
1answer
50 views

How to plot HSV values using C++

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 ...
0
votes
1answer
171 views

Detect colored spheres with OpenCV using HSV and HoughCircles

I am trying to detect colored spheres with openCV using an Iphone. For the first test case I was using one single yellow marble with the given code: cv::Mat thresholdHSV; cv::Mat imgHSV; ...
0
votes
2answers
56 views

Matlab Convertion of HSV type in Matlab

I'm looking for making image corrections in a movie using matlab. I've googling for examples to splitting the movie into images, and then another example to improve image's quality. As I'm using ...
3
votes
1answer
173 views

Detecting shades of color in OpenCV

I have a lots of images of paper cards of different shades of colors. Like all blues, or all reds, etc. In the images, they are held up to different objects that are of that color. I want to write a ...
1
vote
1answer
138 views

Cannot get Color.HSVToColor to work on Android

I've derived a class from View and implemented the onDraw method as follows: protected void onDraw( Canvas canvas ) { Paint p = new Paint(); p.setColor( Color.HSVToColor( new float[]{ 1.f, ...
0
votes
0answers
54 views

Compare Images By Color Using a Genetic Algorithm

I am right now in a serious problem, I need to compare images of flowers (carnations) using a genetic algorithm, the program must determine which variety does the flower belongs to (until now I am ...
0
votes
0answers
135 views

HSB vs HSL vs HSV

I am making a Color class as a part of a very basic graphics API in c++. So I decided to take a look at Microsoft's .NET framework and noticed that their Color class has functions for HSB. Then I ...
0
votes
0answers
102 views

Yellow and Orange color identifying with Android

Me and my project group are making an Paintball-like Android app. When you shoot someone it checks the following things: Is the opponent's color in the cross-hair (center of screen)? (either fluor ...
1
vote
2answers
117 views

Most used tones in a picture by checking the HSV color

I hope you can help me. I am taking a picture in Android, generating a thumbnail and, using this thumbnail, I analyze the pixels to get the most used tones. I thought that using RGB would be hard to ...
0
votes
1answer
71 views

Special color histogram in SimpleCV

I need to cunstruct color histogram (using HSV color space) in SimpleCV, the problem is that the histogram needs cointain only colors where saturation and brightness are over certain level (which is ...
0
votes
0answers
77 views

Efficient Fast Color Extraction Emgucv

So I'm new to image processing, and i'm kinda learning emgucv right now.. ..I want to track a Ball with a specific color- orange.. however.. so..what i needed was to threshold, isolate , or binarize ...
1
vote
1answer
216 views

From RGB to HSV in OpenGL GLSL

I need to pass from RGB color space to HSV .. I searched in internet and found two different implementations, but those give me different results: A: precision mediump float; vec3 rgb2hsv(float r, ...
0
votes
0answers
86 views

Compute HSL main color values (red, yellow, green, magenta, blue and purple)

How do I mathematically compute the values for HSL main colors? I can hardcode them in the program, of course, but I remain interested how can I determine if the color is main or combined. There must ...
0
votes
0answers
118 views

Android RGB To HSV stack

Hi Ive go this code for Droid Bitmap:: THis convert fisrt Image to RGBRGBRGB...etc and after to HSV but when I testing this, its seems like in the loop and dont send data to next method: Bitmap ...
0
votes
1answer
152 views

Render Points in HSV color space instead of RGB with OpenGL

I'm currently trying to render my points with the HSV color space. To do this, I use a function in my fragment shader, with produces the correct conversion vector. Now my question is how to tell ...
0
votes
2answers
191 views

Best way to find HSV values

I am going to apply a HSV threshold to the image below in order to extract the tennis ball. But I could not figure out the best way to find the correct HSV values of the ball. Which method/software do ...
0
votes
0answers
128 views

Change the V of HSV of an specific place at an image with OpenCV and C++

I'm new with OpenCV and I'm using it for change the luminosity of an image. In my image, here: https://docs.google.com/file/d/0B9LaMgEERnMxQUNKbndBODJ5TXM/edit, there's a big space reflecting the ...
0
votes
2answers
129 views

How to create a Mat image in OpenCV if i have the values of h, s and v?

I used mathematical calculations to convert the r,g,b values of a pixel into the h,s and v values. How do i use these h, s, and v values to create an image and be able to show them using imshow("HSV", ...
1
vote
1answer
419 views

Calculate the apparent difference in color between two HSI color values

I have two color values in HSI (Hue Saturation and Intensity) and I want a number which represents the visual difference between the two colors. Hue is a number between 0 and 360 inclusive. Saturation ...
0
votes
2answers
151 views

Perform Canny Edge in HSV Image

I had converted an BGR image to HSV to detect the black circles, then how I perform Canny edge on the HSV image? I had tried but it doesn't works at all. IplImage *capturedImg = ...
0
votes
0answers
85 views

How to adjust reverse range for Hue in cvInRangeS?

cvInRangeS method is used like (for HSV): cvInRangeS( imgHSV, cvScalar( hMin,sMin,vMin),cvScalar(hMax,sMax, vMax),imgThresh ); For hue value we generally use range between two number, small and big ...
0
votes
0answers
463 views

RGB to HSV color conversion android using Opencv

i've tried my code to take a picture from camera and convert it into a HSV color space from RGB, but the result didn't show the HSV color, it shows something unusual, please take a look here's my ...
1
vote
0answers
197 views

HSV to color on android

I have an exception to change color of view by function HSVToColor,this is the code. I think the problem is in value of Hue, Saturation and Value. Tab_COLOR[0] =300; //pHue [0 .. 360) ...
0
votes
0answers
29 views

Convert RGB value to HSV/HSL [duplicate]

Possible Duplicate: RGB to HSV in PHP Please help,I googled many script but all not work .. Can somebody tell me how to write a function to do the conversion?
0
votes
1answer
143 views

RGB color bitmap and HSV bilinearly interpolated colors

I want to use the algorithm from converting an HSV color value into RGB color to compute a 200 x 200 RGB bitmap with the colors red, green, blue, and white in its corners and bilinearly interpolated ...
0
votes
0answers
98 views

HSV colors algorithm (display on a bitmap)

I want to implement an algorithm for converting HSV colors to RGB. I found the algorithm from the Wikipedia and using this I want to compute a 200 x 200 RGB bitmap with the colors red, green, blue, ...
0
votes
1answer
320 views

HSV color to RGB color Algorithm - Linearly Interpolated colors

Develop an algorithm for converting an HSV colour value into RGB colour and explain how and why it works correctly. Then consider the two HSV colours h1 = (156, 0.625, 0.8) and h2 = (300, 0.6, 0.5) ...
0
votes
0answers
37 views

How to aggregate similar hexadecimal color values into color groups?

My problem is that i have a list og i.e. 100 different hexadecimal values ranging from #ffffff to #000000. Then I want the user to be able to select by color group in a filter, i.e. blue, red, yellow, ...
2
votes
1answer
1k views

HSV Color ranges table

I'm developing an App in which children need to find certain colors using a certain target dot on the camera screen - kind of augmented reality like. I've got the whole thing working already, but with ...
1
vote
1answer
144 views

Converting between RGB and HSL/HSV: What to do with overflows?

I've implemented some functions according to the HSL->RGB and HSV->RGB algorithms. They mostly work fine, but I'm not sure what is the right thing to do then a color component overflows as a result of ...
0
votes
0answers
140 views

What the valid range of HSV color

I'm playing with HSV color. I have an array of hsv after convert from rgb color: //hsv[0], hsv[1], hsv[2] var hsv = rgbToHsv(rgb[0], rgb[1], rgb[2]); I will add or subtract it hsv[0] += ... ...
0
votes
1answer
309 views

Sort list of colors by HSV/HSB

I am looking to sort a very long list of colors by their HSV/HSB values. I would like to sort them by Hue, then Sat, then Bright. Really all I need is a way to tell if one color comes "before" or ...
0
votes
0answers
102 views

Equivalence between 3-points DCT and HSV color transform

I was looking to perform a color decorrelation on a RGB image. I know that various color spaces present various decorelation power, used notably to perform image compression. The optimal ...
0
votes
3answers
289 views

Cycle R,G,B vales as HUE?

I am using SFML and it has a color function that takes values in RGB. example.. (255,0,0). I would like to be able to cycle these numbers though a loop so that the displayed colour cycles though the ...
1
vote
2answers
335 views

Sorting list by color (Java)

I am looking to sort a list by "color distance." I am using the following function to calculate the distance between two colors: double colorDistance(Color c1, Color c2) { double rmean = ...
0
votes
1answer
758 views

HorizontalScrollView with imageviews as a child and while scrolling the center of the image in the screen should play animation?

I am new android platform app development. my problem is center lock the image without using gallery view and that image we play an animation.while scrolling animated image should be adjust with ...
0
votes
1answer
510 views

How to compare two color histogram

I used a map<CString, vector<double>> structure to store the mapping of file name to its HSV color histogram.And there are 100 elements in this map as a image DB.If now comes a image,and I ...
0
votes
0answers
194 views

How can I change lightness hue and partially desaturate an image in ImageMagick?

I have a PNG which (besides a white spot and transparency in the background) is a pretty straight blue. I would like to use convert from ImageMagick to partially desaturate it, so that I can create ...
0
votes
0answers
501 views

Changing bitmap color/hue efficiently in Android

I am using the following method to change the hue of a bitmap: public Bitmap changeHue( Bitmap source, double hue ) { Bitmap result = Bitmap.createBitmap( screenWidth, screenHeight, ...
7
votes
2answers
8k views

Choosing correct HSV values for OpenCV thresholding with InRangeS

I have an image of a coffee can with an orange lid position of which I want to find. Here is it . gcolor2 utility shows HSV at the center of the lid to be (22, 59, 100). The question is how to choose ...
0
votes
0answers
193 views

a bit of color math - (photoshop HSV to Nuke HSV)

I hoping someone knows what the math is behind the Photoshop's Hue and Saturation Filter and/or how to translate that to Nuke. Issue: I get my client notes in Photoshop which includes an image with ...

1 2