MATLAB: 2D image to 3D image

image processing

Hi,I am going to get set of images in 2D. First i need to fix the size of images to 32*32 and then i need to add one more Dimension (Time) to the image. so it will be 3D. How to assign the image the 32*32?

Best Answer

imresize()
How are you planning to display the constructed series? The animation tools usually use (X, Y, [RGB], Time] so you might find yourself better off constructing a 4D array in which the 3rd dimension is size 1 (one color plane)
Related Question