Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by