Eidolon
Classes | Variables
eidolon.plugins.MetaImagePlugin Namespace Reference

Classes

class  MetaImagePlugin
 

Variables

 MetaImageTypes
 

Variable Documentation

◆ MetaImageTypes

MetaImageTypes
Initial value:
1 = enum(
2  ('MET_FLOAT','f'), # C equivalent: float
3  ('MET_DOUBLE','d'), # C equivalent: double
4  ('MET_CHAR','b'), # C equivalent: char or int8_t
5  ('MET_UCHAR','B'), # C equivalent: unsigned char or uint8_t
6  ('MET_SHORT','h'), # C equivalent: short or int16_t
7  ('MET_USHORT','H'), # C equivalent: unsigned short or uint16_t
8  ('MET_INT','i'), # C equivalent: int or int32_t
9  ('MET_UINT','I'), # C equivalent: unsigned int or uint32_t
10  ('MET_LONG','l'), # C equivalent: long long or int64_t
11  ('MET_ULONG','L'), # C equivalent: unsigned long long or uint64_t
12  desc='Maps the MetaImage pixel type to the equivalent Numpy datatype'
13 )