Can you read multiple layers from a .JPX file?
1 view (last 30 days)
Show older comments
I am trying to work with (read & write) .jpx files which contain multiple layers, much like a .TIFF file.
using imread, you can read files which contain multiple images (such as a .TIFF file) like so:
img = imread('my_image_stack.tif',3); % to get the third frame in the image stack
I can confirm using imfinfo that my .jpx file contains multiple images, and when I open my file in e.g. Imaris I can see my image stack:
info = imfinfo('my_image_stack.jpx'); % get info about file
image_size_bytes = info.Width * info.Height * info.BitDepth / 8;
images_per_file = info.FileSize / image_size_bytes
% >> images_per_file = 11.2503
Is there a way to get the other frames of my image using matlab, or do I need to convert all of my .jpx files to .tiffs?
0 Comments
Answers (1)
See Also
Categories
Find more on Image Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!