How to convert a HSV image into gray image????
조회 수: 24 (최근 30일)
이전 댓글 표시
i have a rgb image that i have converted into HSv image and applied some filter on that, now i have to convert that filtered HSV image into gray image.
댓글 수: 0
답변 (3개)
KSSV
2016년 6월 17일
Convert hsv image to rgb: http://in.mathworks.com/help/images/convert-from-hsv-to-rgb-color-space.html
Image Analyst
2016년 6월 17일
Use rgb2gray:
hsvImage = rgb2hsv(rgbImage);
% Now do some computations on the HSV image.
% Now convert back to RGB
rgbImage2 = hsv2rgb(hsvImage);
% Convert to gray scale
grayImage = rgb2gray(rgbImage2);
댓글 수: 0
kautsar rusydi
2017년 6월 7일
a=imread(img);
b=rgb2hsv(a);
c=a(:,:,3);
댓글 수: 1
Image Analyst
2017년 6월 7일
That totally ignores the hsv image, and just sets c equal to the blue channel of the original RGB image.
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!