I've recently been creating large-ish HDF files from CSV data (~45GiB)
with h5py. During the course of this data conversion, I've found a few
odd hdf5 issues I thought I should pass on:
1) "long double" / f16 float types are not viewable with HDFView 3.0.
The data type is shown as "Unknown" with all values displayed as
"*unknown*". It would be nice if it could support viewing of such data.
2) h5dump seems to truncate all floating point types to around that of
"float" / f4 by default. double and long double aka f8 and f16 have the
extra precision truncated. Is there a flag to tell h5dump to retain the
full precision for each size of float? I can see there's a "-m" flag,
but this affects display for all float types irrespective of size. Is
there a way to have it dump the full value of every float by default?
3) Opening a 45GB (uncompressed) dataset with HDFView 3.0 causes the
program to freeze in a busy state ~indefinitely. I'm not sure why it
needs to read in huge quantities of data when it could restrict itself
to what's viewable on the screen and fetch data as you scroll around.
Whatever it's doing right now doesn't seem very scalable.
4) Worse, killing HDFView when hung opening (3) above corrupts the file
making it unreadable(!) even though no changes were made:
% ls -l idr*.h5
-rw-rw-r-- 1 rleigh rleigh 17444765812 Jan 5 09:54 idr016-broken.h5
-rwxrwx--- 1 rleigh rleigh 17444765812 Jan 5 10:55 idr016.h5
% cmp -l idr016.h5 idr016-broken.h5 | gawk '{printf "%08X %02X %02X\n",
$1, strtonum(0$2), strtonum(0$3)}'
0000000C 00 01
0000002D A6 67
0000002E 31 19
0000002F CC 52
00000030 19 92
% h5ls -r idr016.h5
/ Group
/Images Dataset {69120/Inf}
/Objects Dataset {5880380/Inf}
% h5ls -r idr016-broken.h5
idr016-broken.h5: unable to open file
Is this a known issue? This seems quite bad; I wouldn't want to
permanently lose data simply by opening a dataset in the viewer tool.
I'm surprised any changes were made since all I did was to open the
dataset in the viewer. What is the reason for the viewer to be making
changes to the file in this case; I would expect it to be robust in the
face of unexpected termination, power loss, network interruption etc.
I've attached the overall structure of the HDF file in case this is
useful, from "h5dump -BHip". If you want to take a look at the original
and uncorrupted files, I can upload them somewhere.
Thanks,
Roger
--
Dr Roger Leigh -- Open Microscopy Environment
Wellcome Trust Centre for Gene Regulation and Expression,
College of Life Sciences, University of Dundee, Dow Street,
Dundee DD1 5EH Scotland UK Tel: (01382) 386364
The University of Dundee is a registered Scottish Charity, No: SC015096
HDF5 "idr016.h5" {
SUPER_BLOCK {
SUPERBLOCK_VERSION 3
FREELIST_VERSION 0
SYMBOLTABLE_VERSION 0
OBJECTHEADER_VERSION 0
OFFSET_SIZE 8
LENGTH_SIZE 8
BTREE_RANK 16
BTREE_LEAF 4
ISTORE_K 32
FILE_SPACE_STRATEGY H5F_FILE_SPACE_ALL
FREE_SPACE_THRESHOLD 1
USER_BLOCK {
USERBLOCK_SIZE 0
}
}
GROUP "/" {
OBJECTID { 1 }
DATASET "Images" {
DATATYPE H5T_COMPOUND {
H5T_STD_U32LE "ImageNumber";
H5T_STRING {
STRSIZE 57;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_FileName_OrigER";
H5T_STRING {
STRSIZE 57;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_FileName_OrigHoechst";
H5T_STRING {
STRSIZE 57;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_FileName_OrigMito";
H5T_STRING {
STRSIZE 57;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_FileName_OrigPh_golgi";
H5T_STRING {
STRSIZE 57;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_FileName_OrigSyto";
H5T_STD_U8LE "Image_Group_Index";
H5T_STD_U8LE "Image_Group_Number";
H5T_STD_U16LE "Image_Height_OrigER";
H5T_STD_U16LE "Image_Height_OrigHoechst";
H5T_STD_U16LE "Image_Height_OrigMito";
H5T_STD_U16LE "Image_Height_OrigPh_golgi";
H5T_STD_U16LE "Image_Height_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigER_10";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigER_2";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigER_20";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigER_5";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigHoechst_10";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigHoechst_2";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigHoechst_20";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigHoechst_5";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigMito_10";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigMito_2";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigMito_20";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigMito_5";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigPh_golgi_10";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigPh_golgi_2";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigPh_golgi_20";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigPh_golgi_5";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigSyto_10";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigSyto_2";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigSyto_20";
H5T_IEEE_F32LE "Image_ImageQuality_Correlation_OrigSyto_5";
H5T_IEEE_F32LE "Image_ImageQuality_FocusScore_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_FocusScore_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_FocusScore_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_FocusScore_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_FocusScore_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigER_10";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigER_2";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigER_20";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigER_5";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigHoechst_10";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigHoechst_2";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigHoechst_20";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigHoechst_5";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigMito_10";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigMito_2";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigMito_20";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigMito_5";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigPh_golgi_10";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigPh_golgi_2";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigPh_golgi_20";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigPh_golgi_5";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigSyto_10";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigSyto_2";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigSyto_20";
H5T_IEEE_F32LE "Image_ImageQuality_LocalFocusScore_OrigSyto_5";
H5T_IEEE_F32LE "Image_ImageQuality_MADIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_MADIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_MADIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_MADIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_MADIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_MaxIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_MaxIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_MaxIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_MaxIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_MaxIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_MeanIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_MeanIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_MeanIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_MeanIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_MeanIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_MedianIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_MedianIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_MedianIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_MedianIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_MedianIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_MinIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_MinIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_MinIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_MinIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_MinIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMaximal_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMaximal_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMaximal_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMaximal_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMaximal_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMinimal_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMinimal_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMinimal_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMinimal_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_PercentMinimal_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_PowerLogLogSlope_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_PowerLogLogSlope_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_PowerLogLogSlope_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_PowerLogLogSlope_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_PowerLogLogSlope_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_Scaling_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_Scaling_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_Scaling_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_Scaling_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_Scaling_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_StdIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_StdIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_StdIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_StdIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_StdIntensity_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_ThresholdOtsu_OrigHoechst_2W";
H5T_IEEE_F32LE "Image_ImageQuality_ThresholdOtsu_OrigSyto_3FW";
H5T_IEEE_F32LE "Image_ImageQuality_TotalArea_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_TotalArea_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_TotalArea_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_TotalArea_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_TotalArea_OrigSyto";
H5T_IEEE_F32LE "Image_ImageQuality_TotalIntensity_OrigER";
H5T_IEEE_F32LE "Image_ImageQuality_TotalIntensity_OrigHoechst";
H5T_IEEE_F32LE "Image_ImageQuality_TotalIntensity_OrigMito";
H5T_IEEE_F32LE "Image_ImageQuality_TotalIntensity_OrigPh_golgi";
H5T_IEEE_F32LE "Image_ImageQuality_TotalIntensity_OrigSyto";
H5T_STRING {
STRSIZE 32;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_MD5Digest_OrigER";
H5T_STRING {
STRSIZE 32;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_MD5Digest_OrigHoechst";
H5T_STRING {
STRSIZE 32;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_MD5Digest_OrigMito";
H5T_STRING {
STRSIZE 32;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_MD5Digest_OrigPh_golgi";
H5T_STRING {
STRSIZE 32;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_MD5Digest_OrigSyto";
H5T_STRING {
STRSIZE 8;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_ASSAY_WELL_ROLE";
H5T_STRING {
STRSIZE 22;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_BROAD_ID";
H5T_STRING {
STRSIZE 36;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_CLSID";
H5T_NATIVE_LDOUBLE "Image_Metadata_CPD_MMOL_CONC";
H5T_STRING {
STRSIZE 12;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_CPD_PLATE_MAP_NAME";
H5T_STRING {
STRSIZE 224;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_CPD_SMILES";
H5T_STRING {
STRSIZE 3;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_CPD_WELL_POSITION";
H5T_STD_U16LE "Image_Metadata_PlateID";
H5T_STRING {
STRSIZE 91;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_SOURCE_COMPOUND_NAME";
H5T_STRING {
STRSIZE 34;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_SOURCE_NAME";
H5T_STD_U8LE "Image_Metadata_Site";
H5T_STD_U64LE "Image_Metadata_Time";
H5T_STRING {
STRSIZE 7;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Metadata_UserStem";
H5T_STD_U8LE "Image_Metadata_Wave";
H5T_STD_U16LE "Image_PathName_OrigER";
H5T_STD_U16LE "Image_PathName_OrigHoechst";
H5T_STD_U16LE "Image_PathName_OrigMito";
H5T_STD_U16LE "Image_PathName_OrigPh_golgi";
H5T_STD_U16LE "Image_PathName_OrigSyto";
H5T_IEEE_F32LE "Image_Scaling_OrigER";
H5T_IEEE_F32LE "Image_Scaling_OrigHoechst";
H5T_IEEE_F32LE "Image_Scaling_OrigMito";
H5T_IEEE_F32LE "Image_Scaling_OrigPh_golgi";
H5T_IEEE_F32LE "Image_Scaling_OrigSyto";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Thumbnail_OrigER";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Thumbnail_OrigHoechst";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Thumbnail_OrigMito";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Thumbnail_OrigPh_golgi";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_Thumbnail_OrigSyto";
H5T_STRING {
STRSIZE 68;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_URL_OrigER";
H5T_STRING {
STRSIZE 68;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_URL_OrigHoechst";
H5T_STRING {
STRSIZE 68;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_URL_OrigMito";
H5T_STRING {
STRSIZE 68;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_URL_OrigPh_golgi";
H5T_STRING {
STRSIZE 68;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "Image_URL_OrigSyto";
H5T_STD_U16LE "Image_Width_OrigER";
H5T_STD_U16LE "Image_Width_OrigHoechst";
H5T_STD_U16LE "Image_Width_OrigMito";
H5T_STD_U16LE "Image_Width_OrigPh_golgi";
H5T_STD_U16LE "Image_Width_OrigSyto";
H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_NULLPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} "User_Cluster106_isBlurry";
}
DATASPACE SIMPLE { ( 69120 ) / ( H5S_UNLIMITED ) }
OBJECTID { 2 }
STORAGE_LAYOUT {
CHUNKED ( 128 )
SIZE 46599488 (2.581:1 COMPRESSION)
}
FILTERS {
COMPRESSION DEFLATE { LEVEL 4 }
}
FILLVALUE {
FILL_TIME H5D_FILL_TIME_ALLOC
VALUE H5D_FILL_VALUE_DEFAULT
}
ALLOCATION_TIME {
H5D_ALLOC_TIME_INCR
}
}
DATASET "Objects" {
DATATYPE H5T_COMPOUND {
H5T_STD_U32LE "ImageNumber";
H5T_STD_U8LE "ObjectNumber";
H5T_IEEE_F32LE "Nuclei_AreaShape_Area";
H5T_IEEE_F32LE "Nuclei_AreaShape_Eccentricity";
H5T_IEEE_F32LE "Nuclei_AreaShape_EulerNumber";
H5T_IEEE_F32LE "Nuclei_AreaShape_Extent";
H5T_IEEE_F32LE "Nuclei_AreaShape_FormFactor";
H5T_IEEE_F32LE "Nuclei_AreaShape_MajorAxisLength";
H5T_IEEE_F32LE "Nuclei_AreaShape_MinorAxisLength";
H5T_IEEE_F32LE "Nuclei_AreaShape_Orientation";
H5T_IEEE_F32LE "Nuclei_AreaShape_Perimeter";
H5T_IEEE_F32LE "Nuclei_AreaShape_Solidity";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_0_0";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_1_1";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_2_0";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_2_2";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_3_1";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_3_3";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_4_0";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_4_2";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_4_4";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_5_1";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_5_3";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_5_5";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_6_0";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_6_2";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_6_4";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_6_6";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_7_1";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_7_3";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_7_5";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_7_7";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_8_0";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_8_2";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_8_4";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_8_6";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_8_8";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_9_1";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_9_3";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_9_5";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_9_7";
H5T_IEEE_F32LE "Nuclei_AreaShape_Zernike_9_9";
H5T_STD_U8LE "Nuclei_Children_Cells_Count";
H5T_STD_U8LE "Nuclei_Children_Cytoplasm_Count";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensityEdge_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensityEdge_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensityEdge_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_IntegratedIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_LowerQuartileIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_LowerQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_LowerQuartileIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_LowerQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_LowerQuartileIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MassDisplacement_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MassDisplacement_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MassDisplacement_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MassDisplacement_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MassDisplacement_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensityEdge_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensityEdge_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensityEdge_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MaxIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensityEdge_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensityEdge_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensityEdge_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MeanIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MedianIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MedianIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MedianIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MedianIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MedianIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensityEdge_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensityEdge_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensityEdge_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_MinIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensityEdge_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensityEdge_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensityEdge_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_StdIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Intensity_UpperQuartileIntensity_ER";
H5T_IEEE_F32LE "Nuclei_Intensity_UpperQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Nuclei_Intensity_UpperQuartileIntensity_Mito";
H5T_IEEE_F32LE "Nuclei_Intensity_UpperQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Nuclei_Intensity_UpperQuartileIntensity_Syto";
H5T_IEEE_F32LE "Nuclei_Location_Center_X";
H5T_IEEE_F32LE "Nuclei_Location_Center_Y";
H5T_IEEE_F32LE "Nuclei_Neighbors_AngleBetweenNeighbors_1";
H5T_IEEE_F32LE "Nuclei_Neighbors_FirstClosestDistance_1";
H5T_STD_U8LE "Nuclei_Neighbors_FirstClosestObjectNumber_1";
H5T_STD_U8LE "Nuclei_Neighbors_NumberOfNeighbors_1";
H5T_IEEE_F32LE "Nuclei_Neighbors_PercentTouching_1";
H5T_IEEE_F32LE "Nuclei_Neighbors_SecondClosestDistance_1";
H5T_STD_U8LE "Nuclei_Neighbors_SecondClosestObjectNumber_1";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_AngularSecondMoment_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_Contrast_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_Correlation_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceEntropy_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_DifferenceVariance_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_Entropy_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_Gabor_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas1_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_InfoMeas2_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_InverseDifferenceMoment_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumAverage_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumEntropy_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_SumVariance_Syto_5";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_ER_3";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_ER_5";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Hoechst_3";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Hoechst_5";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Mito_3";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Mito_5";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Ph_golgi_3";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Ph_golgi_5";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Syto_3";
H5T_IEEE_F32LE "Nuclei_Texture_Variance_Syto_5";
H5T_IEEE_F32LE "Cells_AreaShape_Area";
H5T_IEEE_F32LE "Cells_AreaShape_Eccentricity";
H5T_IEEE_F32LE "Cells_AreaShape_EulerNumber";
H5T_IEEE_F32LE "Cells_AreaShape_Extent";
H5T_IEEE_F32LE "Cells_AreaShape_FormFactor";
H5T_IEEE_F32LE "Cells_AreaShape_MajorAxisLength";
H5T_IEEE_F32LE "Cells_AreaShape_MinorAxisLength";
H5T_IEEE_F32LE "Cells_AreaShape_Orientation";
H5T_IEEE_F32LE "Cells_AreaShape_Perimeter";
H5T_IEEE_F32LE "Cells_AreaShape_Solidity";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_0_0";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_1_1";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_2_0";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_2_2";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_3_1";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_3_3";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_4_0";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_4_2";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_4_4";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_5_1";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_5_3";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_5_5";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_6_0";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_6_2";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_6_4";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_6_6";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_7_1";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_7_3";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_7_5";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_7_7";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_8_0";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_8_2";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_8_4";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_8_6";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_8_8";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_9_1";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_9_3";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_9_5";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_9_7";
H5T_IEEE_F32LE "Cells_AreaShape_Zernike_9_9";
H5T_STD_U8LE "Cells_Children_Cytoplasm_Count";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensityEdge_ER";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensityEdge_Mito";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensityEdge_Syto";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_IntegratedIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_LowerQuartileIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_LowerQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_LowerQuartileIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_LowerQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_LowerQuartileIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MassDisplacement_ER";
H5T_IEEE_F32LE "Cells_Intensity_MassDisplacement_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MassDisplacement_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MassDisplacement_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MassDisplacement_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensityEdge_ER";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensityEdge_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensityEdge_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MaxIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensityEdge_ER";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensityEdge_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensityEdge_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MeanIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MedianIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_MedianIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MedianIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MedianIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MedianIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensityEdge_ER";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensityEdge_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensityEdge_Syto";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_MinIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensityEdge_ER";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensityEdge_Mito";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensityEdge_Syto";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_StdIntensity_Syto";
H5T_IEEE_F32LE "Cells_Intensity_UpperQuartileIntensity_ER";
H5T_IEEE_F32LE "Cells_Intensity_UpperQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Cells_Intensity_UpperQuartileIntensity_Mito";
H5T_IEEE_F32LE "Cells_Intensity_UpperQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cells_Intensity_UpperQuartileIntensity_Syto";
H5T_IEEE_F32LE "Cells_Location_Center_X";
H5T_IEEE_F32LE "Cells_Location_Center_Y";
H5T_IEEE_F32LE "Cells_Neighbors_AngleBetweenNeighbors_5";
H5T_IEEE_F32LE "Cells_Neighbors_FirstClosestDistance_5";
H5T_STD_U8LE "Cells_Neighbors_FirstClosestObjectNumber_5";
H5T_STD_U8LE "Cells_Neighbors_NumberOfNeighbors_5";
H5T_IEEE_F32LE "Cells_Neighbors_PercentTouching_5";
H5T_IEEE_F32LE "Cells_Neighbors_SecondClosestDistance_5";
H5T_STD_U8LE "Cells_Neighbors_SecondClosestObjectNumber_5";
H5T_STD_U8LE "Cells_Parent_Nuclei";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_ER_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_ER_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_ER_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_ER_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Mito_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Mito_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Mito_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Mito_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Ph_golgi_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Ph_golgi_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Ph_golgi_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Ph_golgi_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Syto_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Syto_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Syto_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_FracAtD_Syto_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_ER_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_ER_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_ER_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_ER_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Mito_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Mito_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Mito_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Mito_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Ph_golgi_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Ph_golgi_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Ph_golgi_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Ph_golgi_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Syto_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Syto_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Syto_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_MeanFrac_Syto_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_ER_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_ER_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_ER_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_ER_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Mito_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Mito_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Mito_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Mito_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Ph_golgi_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Ph_golgi_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Ph_golgi_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Ph_golgi_4of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Syto_1of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Syto_2of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Syto_3of4";
H5T_IEEE_F32LE "Cells_RadialDistribution_RadialCV_Syto_4of4";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_ER_3";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_ER_5";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_AngularSecondMoment_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_Contrast_ER_3";
H5T_IEEE_F32LE "Cells_Texture_Contrast_ER_5";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_Contrast_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_Correlation_ER_3";
H5T_IEEE_F32LE "Cells_Texture_Correlation_ER_5";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_Correlation_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_ER_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_ER_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceEntropy_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_ER_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_ER_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_DifferenceVariance_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_Entropy_ER_3";
H5T_IEEE_F32LE "Cells_Texture_Entropy_ER_5";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_Entropy_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_Gabor_ER_3";
H5T_IEEE_F32LE "Cells_Texture_Gabor_ER_5";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_Gabor_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_ER_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_ER_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas1_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_ER_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_ER_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_InfoMeas2_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_ER_3";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_ER_5";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_InverseDifferenceMoment_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_ER_3";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_ER_5";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_SumAverage_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_ER_3";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_ER_5";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_SumEntropy_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_ER_3";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_ER_5";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_SumVariance_Syto_5";
H5T_IEEE_F32LE "Cells_Texture_Variance_ER_3";
H5T_IEEE_F32LE "Cells_Texture_Variance_ER_5";
H5T_IEEE_F32LE "Cells_Texture_Variance_Hoechst_3";
H5T_IEEE_F32LE "Cells_Texture_Variance_Hoechst_5";
H5T_IEEE_F32LE "Cells_Texture_Variance_Mito_3";
H5T_IEEE_F32LE "Cells_Texture_Variance_Mito_5";
H5T_IEEE_F32LE "Cells_Texture_Variance_Ph_golgi_3";
H5T_IEEE_F32LE "Cells_Texture_Variance_Ph_golgi_5";
H5T_IEEE_F32LE "Cells_Texture_Variance_Syto_3";
H5T_IEEE_F32LE "Cells_Texture_Variance_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Area";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Eccentricity";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_EulerNumber";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Extent";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_FormFactor";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_MajorAxisLength";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_MinorAxisLength";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Orientation";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Perimeter";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Solidity";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_0_0";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_1_1";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_2_0";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_2_2";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_3_1";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_3_3";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_4_0";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_4_2";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_4_4";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_5_1";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_5_3";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_5_5";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_6_0";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_6_2";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_6_4";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_6_6";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_7_1";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_7_3";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_7_5";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_7_7";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_8_0";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_8_2";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_8_4";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_8_6";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_8_8";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_9_1";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_9_3";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_9_5";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_9_7";
H5T_IEEE_F32LE "Cytoplasm_AreaShape_Zernike_9_9";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensityEdge_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensityEdge_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensityEdge_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_IntegratedIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_LowerQuartileIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_LowerQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_LowerQuartileIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_LowerQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_LowerQuartileIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MassDisplacement_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MassDisplacement_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MassDisplacement_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MassDisplacement_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MassDisplacement_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensityEdge_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensityEdge_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensityEdge_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MaxIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensityEdge_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensityEdge_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensityEdge_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MeanIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MedianIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MedianIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MedianIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MedianIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MedianIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensityEdge_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensityEdge_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensityEdge_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_MinIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensityEdge_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensityEdge_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensityEdge_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensityEdge_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensityEdge_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_StdIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Intensity_UpperQuartileIntensity_ER";
H5T_IEEE_F32LE "Cytoplasm_Intensity_UpperQuartileIntensity_Hoechst";
H5T_IEEE_F32LE "Cytoplasm_Intensity_UpperQuartileIntensity_Mito";
H5T_IEEE_F32LE "Cytoplasm_Intensity_UpperQuartileIntensity_Ph_golgi";
H5T_IEEE_F32LE "Cytoplasm_Intensity_UpperQuartileIntensity_Syto";
H5T_IEEE_F32LE "Cytoplasm_Location_Center_X";
H5T_IEEE_F32LE "Cytoplasm_Location_Center_Y";
H5T_STD_U8LE "Cytoplasm_Parent_Cells";
H5T_STD_U8LE "Cytoplasm_Parent_Nuclei";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_AngularSecondMoment_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Contrast_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Correlation_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceEntropy_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_DifferenceVariance_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Entropy_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Gabor_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas1_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InfoMeas2_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_InverseDifferenceMoment_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumAverage_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumEntropy_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_SumVariance_Syto_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_ER_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_ER_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Hoechst_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Hoechst_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Mito_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Mito_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Ph_golgi_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Ph_golgi_5";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Syto_3";
H5T_IEEE_F32LE "Cytoplasm_Texture_Variance_Syto_5";
}
DATASPACE SIMPLE { ( 5880380 ) / ( H5S_UNLIMITED ) }
OBJECTID { 3 }
STORAGE_LAYOUT {
CHUNKED ( 128 )
SIZE 17397348289 (1.104:1 COMPRESSION)
}
FILTERS {
COMPRESSION DEFLATE { LEVEL 4 }
}
FILLVALUE {
FILL_TIME H5D_FILL_TIME_ALLOC
VALUE H5D_FILL_VALUE_DEFAULT
}
ALLOCATION_TIME {
H5D_ALLOC_TIME_INCR
}
}
}
}
_______________________________________________
Hdf-forum is for HDF software users discussion.
[email protected]
http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org
Twitter: https://twitter.com/hdf5