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

2 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 31 de Oct. de 2019
Is this?
color_image(:,:,2:3); % Having only two colors plane
or
color_image(:,:,1:2);
or
color_image(:,:,[1,3]);

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by