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

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 S - value plane image only?

1 Comment

DGM
DGM on 31 Dec 2023
Edited: DGM on 31 Dec 2023
Consider a cone.
Consider a point P which lies on the central axis of the cone.
What is the distance from P to the nearest point on the central axis of the cone?

Sign in to comment.

 Accepted Answer

Hsv=rgb2hsv(repmat(YourMatrix, 1, 1, 3));
S = Hsv(:, :, 2) ;
By the way the results are all 0. The h plane is all 0 too.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Tags

Asked:

on 20 Jan 2020

Edited:

DGM
on 31 Dec 2023

Community Treasure Hunt

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

Start Hunting!