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

5 次查看(过去 30 天)
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 个评论
DGM
DGM 2023-12-31
编辑:DGM 2023-12-31
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?

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-1-20
编辑:Walter Roberson 2020-1-20
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Modify Image Colors 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by