Reader class for Photron .mraw-Files

Reads 8 - 16 bit monchrome and color image data from Photron .mraw (and .cih) files
387 Downloads
Aktualisiert 23 Mär 2017

Lizenz anzeigen

mraw.m
MRAW - Read 8 - 16 bit monchrome and color Photron image data as a class
C=MRAW('c:\Photron\Filename') loads video infos from 'c:\Photron\Filename' into class C.
Remarks

This class must be handed the common *.cih and *.mraw file name.
A file extension is not allowed.
his function is intended for color and monochrome 8 to 16 bit *.mraw files.
NOTE: Both the *.cih file and the *.mraw file are utilized
partly adapted from Autor: SEP Creation Date: June 20,2013

Added support for 8 to 16 bit.
Added support for big/little endian bit order.
Added support for variable header information.
Lookup table transformation to 16 bit output.
Included LUT Function to class.
Included Videoplayer with VideoFig from João Filipe Henriques.
Autor: Markus Lindner Creation Date: Feb 24,2017

Added ExtendedInfos from .cih file
Autor: Markus Lindner Creation Date: Mar 23,2017

Examples

Load image 10
C=mraw('c:\Photron\Moviefile');
Image = C.getFrame(10);
Access camera setup Framerate
fRate = C.FrameRate;
Play whole Video with LUT
C = mraw('c:\Photron\Moviefile');
lastImage = C.TotalFrames;
C.makeLut(0,200,1);
for i = 1:lastImage
imshow(C.getFrame_uint8(i))
end
Play whole Video with included Player
C = mraw('c:\Photron\Moviefile');
C.play;

Zitieren als

Markus Lindner (2024). Reader class for Photron .mraw-Files (https://www.mathworks.com/matlabcentral/fileexchange/62219-reader-class-for-photron-mraw-files), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2016b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0