ReadJpegSEQ

버전 2.1 (4.12 KB) 작성자: Paul Siefert
Read compressed or uncompressed NorPix image sequences in MATLAB. This script can read all frames or a set reading window.
다운로드 수: 508
업데이트 날짜: 2021/11/5

라이선스 보기

Read compressed or uncompressed NorPix image sequence in MATLAB.
This script can read all frames or a set reading window.
Index file will be used if available and named as the source file
(eg. test.seq.idx). Otherwise the script will skip through a compressed
sequence from the beginning (may take some time).
INPUTS
fileName: Char containing the full path to the sequence
frames: 1x2 double array of beginning and end frame
OUTPUTS
ImageCellArray: Cell array with images and timestamps of all allocated
frames.
headerInfo: Struct with header information (ImageWidth,
ImageHeight, ImageBitDepth, ImageBitDepthReal,
ImageSizeBytes, ImageFormat, AllocatedFrames,
Compression, HeaderVersion, HeaderSize, Description,
TrueImageSize, FrameRate).
EXAMPLES
Read all frames:
I = ReadJpegSEQ('C:\test.seq')
Read frames 2 to 13:
I = ReadJpegSEQ('C:\test.seq',[2 13])
Include sequence header information:
[I, headerInfo] = ReadJpegSEQ('C:\test.seq',[1 1])
Last modified 05.11.2021 by Paul Siefert, PhD
Goethe-University Frankfurt
siefert@bio.uni-frankfurt.de
Based on the work of Brett Shoelson (Norpix2MATLAB_MarksMod.m)
Thanks to NorPix support for providing sequence information.
This code was tested with Norpix SEQ
8-bit monochrome 75% lossy jpeg compression (24.07.2018)
8-bit monochrome uncompressed (03.06.2019)
8-bit(24) BGR 75% lossy jpeg compressed (04.10.2021)
Code for RGB included but not tested!
Please report any bugs and improvement suggestions!

인용 양식

Paul Siefert (2024). ReadJpegSEQ (https://www.mathworks.com/matlabcentral/fileexchange/68341-readjpegseq), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2021a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
2.1

Bugfix for uncompressed color images, added RGB support (not tested)

2.0

Added compatibility with BGR image format and reading window without .idx file.

1.4.1

BugFix for reading uncompressed sequences

1.4.0

Added headerInfo output

1.3.0

Fixed subSeq bug, thanks to Dr. Aaron Corcoran.

1.2.0

The script can now read a set reading window.

1.1.0

New version is able to read both, compressed and uncompressed sequences.

1.0.0