Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
b2faf8451a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (22 sloc) 482 Bytes
classdef CZIPixelTypes < uint16
%CZIPIXELTYPES Enumeration class describing pixel types used by CZI File
%Format
%
% AUTHOR: Stefano Masneri
% Date: 13.10.2016
enumeration
Gray8 (0)
Gray16 (1)
Gray32Float (2)
Bgr24 (3)
Bgr48 (4)
Bgr96Float (5)
Bgra32 (6)
Gray64ComplexFloat (7)
Bgr192ComplexFloat (8)
end
properties
end
methods
end
end