This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
ImageIO/utils/cziClasses/@CZISegments/CZISegments.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (28 sloc)
1.26 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
classdef CZISegments < uint8 | |
%CZISEGMENTS Enumeration class describing the types of segments available in | |
% a CZI file | |
% | |
% AUTHOR: Stefano Masneri | |
% Date: 13.10.2016 | |
enumeration | |
ZISRAWFILE (1) % File Header segment, occurs only once per file. | |
% The segment is always located at position 0. | |
ZISRAWDIRECTORY (2) % Directory segment containing a sequence of | |
% "DirectoryEntry" items. | |
ZISRAWSUBBLOCK (3) % Contains an ImageSubBlock containing an XML part, | |
% optional pixel data and binary attachments | |
% described by the AttachmentSchema within the XML part . | |
ZISRAWMETADATA (4) % Contains Metadata consisting of an XML part and | |
% binary attachments described by the AttachmentSchema | |
% within the XML part . | |
ZISRAWATTACH (5) % Any kind of named Attachment, some names are | |
% reserved for internal use. | |
ZISRAWATTDIR (6) % Attachments directory. | |
DELETED (7) % Indicates that the segment has been deleted (dropped) | |
% and should be skipped or ignored by readers. | |
end | |
properties | |
end | |
methods | |
end | |
end | |