フィルターのクリア

How to change 1 channel image to 3 channel

31 ビュー (過去 30 日間)
evianita dewi
evianita dewi 2019 年 12 月 13 日
回答済み: DGM 2022 年 5 月 2 日
I have several grayscale images with channel 1, then I want to convert it to RGB channel 3 image, how do I change it?

採用された回答

Image Analyst
Image Analyst 2019 年 12 月 13 日
Try cat() to stack the gray scale image into 3 slices (color channels):
rgbImage = cat(3, grayImage, grayImage, grayImage);
It will be an RGB image though the only colors will be gray since there is no difference between the three different color channels. It will be a 3-D image with the z-direction (third index) being the color channel index.
  2 件のコメント
evianita dewi
evianita dewi 2019 年 12 月 26 日
this is very helpful, thank you!!
Muhammad Kamran
Muhammad Kamran 2021 年 3 月 25 日
Thanks a lot.
It's very helpful.

サインインしてコメントする。

その他の回答 (1 件)

DGM
DGM 2022 年 5 月 2 日
Alternative to using cat(), the same can also be done a couple other ways.
You can use repmat()
rgbpict = repmat(graypict,[1 1 3]);
... or you can even use basic indexing:
rgbpict = graypict(:,:,[1 1 1]);

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by