Thresholding operation on HSV Image

I wish to do thresholding operation on a HSV Image converted from an RGB image. Is there any function like imtool()for RGB images that display the HSV Values of a pixel?

回答 (3 件)

Image Analyst
Image Analyst 2014 年 2 月 4 日

1 投票

Yes. My demo "Simple color detection by hue" in my File Exchange does that. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 Also there is an interactive thresholding application.

1 件のコメント

Image Analyst
Image Analyst 2014 年 2 月 5 日
You can use impixelinfo() to have the value of the three channel image that's being displayed show up in a little static text box as you mouse around. The image can be RGB, grayscale, or HSV. Let me know if you can't figure it out. You may have to play around with the 'Position' option to see the text.

サインインしてコメントする。

kartheek
kartheek 2014 年 2 月 4 日

0 投票

Dear Analyst
Thank you for your answer. But, is there a way where we can see the instantaneous values of H,S,V in the same way we can get values of R,G,B when I hover the cursor over the pixels using imtool()? coz, I want H,S,V values for only a particular region of image

4 件のコメント

Jeff E
Jeff E 2014 年 2 月 4 日
Have you tried using the rgb2hsv function to convert your image to an HSV image? You can then use the imtool function as you would with an RGB image. True, the image will look a little weird, but you will get the desired functionality with the red channel = hue , green = saturation , blue = value. Try it with a RGB color wheel to start with and see if it makes sense.
kartheek
kartheek 2014 年 2 月 5 日
I have used rgb2hsv(). but the values it is showing are less than 1. Do I have to use the RGB to HSV Conversion formula again to get my original HSV values?
Image Analyst
Image Analyst 2014 年 2 月 5 日
No. What original HSV values? As far as I know there is only one hsv image, and it has values between 0 and 1, like it should. Exactly what are you expecting?
JESU
JESU 2023 年 7 月 27 日
channel1Min = 0.825;
channel1Max = 0.451;
% Create mask based on chosen histogram thresholds
sliderBW = ( (H(:,:,1) >= channel1Min) | (H(:,:,1) <= channel1Max) );
BW = sliderBW;

サインインしてコメントする。

Image Analyst
Image Analyst 2023 年 7 月 27 日

0 投票

You can use the Color Thresholder app on the Apps tab of the tool ribbon to interactively threshold the color image by moving sliders.

カテゴリ

ヘルプ センター および File ExchangeImage Processing Toolbox についてさらに検索

質問済み:

2014 年 2 月 4 日

回答済み:

2023 年 7 月 27 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by