what's the diffeence between those two intsructions to tranform the RGB image to HSV one
Show older comments
the first example:
frame1=rgb2hsv(frameRGB);
frame=frame1;
frame(:,:,3)=0;
the seconde example:
frame1=rgb2hsv(frameRGB);
frame=frame1;
frame(:,:,3)=0.7;
frame=hsv2rgb(frame);
Accepted Answer
More Answers (0)
Categories
Find more on Convert Image Type in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
