how to change hyperspectral image size array?
    7 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
I want to change my image size from 3248x242x256 to 3248x256x242 . what should i do?
0 Kommentare
Antworten (1)
  Subhadeep Koley
    
 am 21 Apr. 2021
        This code snippet might help.
% Creating a random data
dataCube = rand(3248,242,256);
% Permuting the 2nd and 3rd channel
dataCubeNew = permute(dataCube, [1 3 2]);
Siehe auch
Kategorien
				Mehr zu Hyperspectral Image Processing 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!

