필터 지우기
필터 지우기

how to combine H(hue), S(saturation) & V(value).

조회 수: 2 (최근 30일)
sachit
sachit 2014년 12월 25일
편집: Matt J 2014년 12월 25일
how to combine H, S& V, again after modifying any of the component.

답변 (1개)

Matt J
Matt J 2014년 12월 25일
편집: Matt J 2014년 12월 25일
You mean, you have H,S,V as separate images? If so, this will combine them
HSV=cat(3, H,S, V);
To convert to RGB format,
RGB=hsv2rgb(HSV);

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by