How to convert gray image to HSV plane V - value image?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Akzeptierte Antwort
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
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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!