Reader class for Photron .mraw-Files

Reads 8 - 16 bit monchrome and color image data from Photron .mraw (and .cih) files
387 téléchargements
Mise à jour 23 mars 2017

Afficher la licence

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;

Citation pour cette source

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. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2016b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Data Import and Analysis dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.0.0.0