Filter löschen
Filter löschen

How convert an m x n x p image sequence to an m x n x 3 x p sequence efficiently?

3 Ansichten (letzte 30 Tage)
Hi, I would like to convert my grayscale image sequence to an rgb sequence, and I'm wondering if it possible to do it without a loop?

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 12 Nov. 2013
Bearbeitet: Andrei Bobrov am 12 Nov. 2013
A - array with size [m x n x p].
out = reshape(repmat(reshape(A,[],p),3,1),[m n 3 p]);

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by