Filter löschen
Filter löschen

How to convert gray image to HSV plane V - value image?

17 Ansichten (letzte 30 Tage)
MR. W
MR. W am 14 Nov. 2016
Kommentiert: MR. W am 15 Nov. 2016
Hi,
Given my image is a gray image and i don't have the rgb image of this gray image, can i know how can i convert this gray image to the HSV colour plane V - value plane image only?
The gray image and the value plane image looks quite similar but actually their values are quite different so if anyone have any idea on this, please let me know about the possibility.
Thank you in advance.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 14 Nov. 2016
I used
cam = imread('cameraman.tif');
HSV = cat(3, zeros(size(cam)), zeros(size(cam)), double(cam)./255);
RGB = hsv2rgb(HSV);
imshow(RGB)
It seems to have worked
  6 Kommentare
Walter Roberson
Walter Roberson am 15 Nov. 2016
I am certain that there is no formula to convert between the two methods.
As for testing which method had been used: good question. I do not have an answer for that at this time. I notice that they have different distribution statistics, but I do not know yet how that could be taken advantage of.
If you happened to know that an area was originally bright blue, then if the area shows up bright then the HSV method has been used; if the area shows up dark then the rgb2gray method has been used.
MR. W
MR. W am 15 Nov. 2016
Thanks again for the information and appreciate it. I will try to read through some related materials first to check on the possibility.
Have a nice day.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by