ReadJpegSEQ

版本 2.1 (4.1 KB) 作者: Paul Siefert
Read compressed or uncompressed NorPix image sequences in MATLAB. This script can read all frames or a set reading window.
515.0 次下载
更新时间 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