Can you read multiple layers from a .JPX file?

조회 수: 3 (최근 30일)
Calvin Eiber
Calvin Eiber 2020년 3월 27일
답변: Abhisek Pradhan 2020년 3월 30일
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?

답변 (1개)

Abhisek Pradhan
Abhisek Pradhan 2020년 3월 30일
I could understand you want to read each layer using A = imread(___ ,index ), which applies only to GIF, PGM, PBM, PPM, CUR, ICO, TIF, and HDF4 files.
So, converting the JPX file into any of the file format may be a possible way to achieve it.

카테고리

Help CenterFile Exchange에서 Image Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by