How can I recombine two color channels after separating all the channels?

2 ビュー (過去 30 日間)
Muhamed Sewidan
Muhamed Sewidan 2019 年 10 月 25 日
回答済み: KALYAN ACHARJYA 2019 年 10 月 31 日
I separated the color channels of an image, and i want to combine every two channels again without the third, how can I perform this?

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 31 日
Is this?
color_image(:,:,2:3); % Having only two colors plane
or
color_image(:,:,1:2);
or
color_image(:,:,[1,3]);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by