CytoTable from the cloud (using cloud-based data sources)¶
Figure 1. CytoTable is capable of reading data from cloud-based locations such as AWS S3.
This notebook includes a quick demonstration of CytoTable with cloud-based data sources. For a more general overview of using CytoTable and the concepts behind the work please see: CytoTable mise en place (general overview)
import pathlib
from collections import Counter
import cytotable
import pandas as pd
import pyarrow.parquet as pq
from cloudpathlib import CloudPath, S3Client
from IPython.display import Image, display
# setup variables for use throughout the notebook
source_path = (
"s3://cellpainting-gallery/cpg0016-jump/source_4/"
"workspace/backend/2021_08_23_Batch12/BR00126114"
)
dest_path = "./cloud_example.parquet"
# setup a source cloudpath using unsigned (anonymous) requests to AWS S3
# to access publicly-available data using CytoTable
source_cloud_path = S3Client(no_sign_request=True).CloudPath(source_path)
source_cloud_path
S3Path('s3://cellpainting-gallery/cpg0016-jump/source_4/workspace/backend/2021_08_23_Batch12/BR00126114')
# remove the dest_path if it's present
if pathlib.Path(dest_path).is_file():
pathlib.Path(dest_path).unlink()
# show the files we will use as source data with CytoTable
list(source_cloud_path.glob("*"))
[S3Path('s3://cellpainting-gallery/cpg0016-jump/source_4/workspace/backend/2021_08_23_Batch12/BR00126114/BR00126114.csv'),
S3Path('s3://cellpainting-gallery/cpg0016-jump/source_4/workspace/backend/2021_08_23_Batch12/BR00126114/BR00126114.sqlite')]
%%time
# run cytotable convert
result = cytotable.convert(
source_path=source_path,
source_datatype="sqlite",
# set a chunk size for paginated
# processing of results
chunk_size=30000,
# specify the destination path
dest_path=dest_path,
# specify a destination data format type
dest_datatype="parquet",
# specify a preset which enables quick use of common input file formats
preset="cellprofiler_sqlite_cpg0016_jump",
# use unsigned (anonymous) requests to AWS S3
no_sign_request=True,
# set a local cache to avoid challenges with
# OS-specific temp disk space
local_cache_dir=f"./sqlite_s3_cache",
)
print(pathlib.Path(result).name)
cloud_example.parquet
CPU times: user 14.7 s, sys: 21.5 s, total: 36.2 s
Wall time: 4min 18s
# show the table head using pandas
pq.read_table(source=result).to_pandas().head()
Metadata_ImageNumber | Image_Metadata_Row | Image_Metadata_Site | Metadata_ObjectNumber | Metadata_ObjectNumber_1 | Metadata_ObjectNumber_2 | Metadata_Plate | Metadata_Well | Image_FileName_CellOutlines | Image_FileName_IllumAGP | ... | Nuclei_Texture_Variance_RNA_10_02_256 | Nuclei_Texture_Variance_RNA_10_03_256 | Nuclei_Texture_Variance_RNA_3_00_256 | Nuclei_Texture_Variance_RNA_3_01_256 | Nuclei_Texture_Variance_RNA_3_02_256 | Nuclei_Texture_Variance_RNA_3_03_256 | Nuclei_Texture_Variance_RNA_5_00_256 | Nuclei_Texture_Variance_RNA_5_01_256 | Nuclei_Texture_Variance_RNA_5_02_256 | Nuclei_Texture_Variance_RNA_5_03_256 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 1 | 1 | 1 | 1 | 1 | BR00126114 | A01 | A01_s1--cell_outlines.png | BR00126114_IllumAGP.npy | ... | 53.502536 | 14.538128 | 45.867869 | 47.596690 | 45.935590 | 49.269005 | 49.104928 | 47.917690 | 48.370110 | 51.246170 |
1 | 2 | 1 | 2 | 1 | 1 | 1 | BR00126114 | A01 | A01_s2--cell_outlines.png | BR00126114_IllumAGP.npy | ... | 574.174512 | 615.808569 | 558.174224 | 559.716898 | 549.661589 | 544.787305 | 560.192732 | 570.175219 | 547.001594 | 546.514278 |
2 | 3 | 1 | 3 | 1 | 1 | 1 | BR00126114 | A01 | A01_s3--cell_outlines.png | BR00126114_IllumAGP.npy | ... | 45.882420 | 40.099602 | 44.327230 | 44.319817 | 43.478899 | 45.642600 | 47.010618 | 45.654956 | 44.701783 | 49.723972 |
3 | 4 | 1 | 4 | 1 | 1 | 1 | BR00126114 | A01 | A01_s4--cell_outlines.png | BR00126114_IllumAGP.npy | ... | 6.140411 | 4.341716 | 5.275277 | 5.660133 | 4.684131 | 5.012461 | 4.679222 | 4.785857 | 4.868122 | 4.869976 |
4 | 5 | 1 | 5 | 1 | 1 | 1 | BR00126114 | A01 | A01_s5--cell_outlines.png | BR00126114_IllumAGP.npy | ... | 53.098653 | 62.138242 | 47.212694 | 48.650918 | 47.681205 | 47.835034 | 48.420070 | 50.460925 | 49.019752 | 51.124209 |
5 rows × 5946 columns
# show metadata for the result file
pq.read_metadata(result)
<pyarrow._parquet.FileMetaData object at 0x15b0f81d0>
created_by: parquet-cpp-arrow version 21.0.0
num_columns: 5946
num_rows: 74226
num_row_groups: 3
format_version: 2.6
serialized_size: 3673854
# show schema metadata which includes CytoTable information
# note: this information will travel with the file.
pq.read_schema(result).metadata
{b'data-producer': b'https://github.com/cytomining/CytoTable',
b'data-producer-version': b'1.1.0.post9.dev0+ff87521'}
# show schema column name summaries
print("Column name prefix counts:")
dict(Counter(w.split("_", 1)[0] for w in pq.read_schema(result).names))
Column name prefix counts:
{'Metadata': 6, 'Image': 21, 'Cytoplasm': 1985, 'Cells': 1998, 'Nuclei': 1936}
# show full schema details
pq.read_schema(result)
Metadata_ImageNumber: int64
Image_Metadata_Row: int64
Image_Metadata_Site: int64
Metadata_ObjectNumber: int64
Metadata_ObjectNumber_1: int64
Metadata_ObjectNumber_2: int64
Metadata_Plate: string
Metadata_Well: string
Image_FileName_CellOutlines: string
Image_FileName_IllumAGP: string
Image_FileName_IllumBrightfield: string
Image_FileName_IllumBrightfield_H: string
Image_FileName_IllumBrightfield_L: string
Image_FileName_IllumDNA: string
Image_FileName_IllumER: string
Image_FileName_IllumMito: string
Image_FileName_IllumRNA: string
Image_FileName_NucleiOutlines: string
Image_FileName_OrigAGP: string
Image_FileName_OrigBrightfield: string
Image_FileName_OrigBrightfield_H: string
Image_FileName_OrigBrightfield_L: string
Image_FileName_OrigDNA: string
Image_FileName_OrigER: string
Image_FileName_OrigMito: string
Image_FileName_OrigRNA: string
Image_TableNumber: int64
Cytoplasm_AreaShape_Area: int64
Cytoplasm_AreaShape_BoundingBoxArea: int64
Cytoplasm_AreaShape_BoundingBoxMaximum_X: int64
Cytoplasm_AreaShape_BoundingBoxMaximum_Y: int64
Cytoplasm_AreaShape_BoundingBoxMinimum_X: int64
Cytoplasm_AreaShape_BoundingBoxMinimum_Y: int64
Cytoplasm_AreaShape_Center_X: double
Cytoplasm_AreaShape_Center_Y: double
Cytoplasm_AreaShape_Compactness: double
Cytoplasm_AreaShape_Eccentricity: double
Cytoplasm_AreaShape_EquivalentDiameter: double
Cytoplasm_AreaShape_EulerNumber: int64
Cytoplasm_AreaShape_Extent: double
Cytoplasm_AreaShape_FormFactor: double
Cytoplasm_AreaShape_MajorAxisLength: double
Cytoplasm_AreaShape_MaxFeretDiameter: double
Cytoplasm_AreaShape_MaximumRadius: double
Cytoplasm_AreaShape_MeanRadius: double
Cytoplasm_AreaShape_MedianRadius: double
Cytoplasm_AreaShape_MinFeretDiameter: double
Cytoplasm_AreaShape_MinorAxisLength: double
Cytoplasm_AreaShape_Orientation: double
Cytoplasm_AreaShape_Perimeter: double
Cytoplasm_AreaShape_Solidity: double
Cytoplasm_AreaShape_Zernike_0_0: double
Cytoplasm_AreaShape_Zernike_1_1: double
Cytoplasm_AreaShape_Zernike_2_0: double
Cytoplasm_AreaShape_Zernike_2_2: double
Cytoplasm_AreaShape_Zernike_3_1: double
Cytoplasm_AreaShape_Zernike_3_3: double
Cytoplasm_AreaShape_Zernike_4_0: double
Cytoplasm_AreaShape_Zernike_4_2: double
Cytoplasm_AreaShape_Zernike_4_4: double
Cytoplasm_AreaShape_Zernike_5_1: double
Cytoplasm_AreaShape_Zernike_5_3: double
Cytoplasm_AreaShape_Zernike_5_5: double
Cytoplasm_AreaShape_Zernike_6_0: double
Cytoplasm_AreaShape_Zernike_6_2: double
Cytoplasm_AreaShape_Zernike_6_4: double
Cytoplasm_AreaShape_Zernike_6_6: double
Cytoplasm_AreaShape_Zernike_7_1: double
Cytoplasm_AreaShape_Zernike_7_3: double
Cytoplasm_AreaShape_Zernike_7_5: double
Cytoplasm_AreaShape_Zernike_7_7: double
Cytoplasm_AreaShape_Zernike_8_0: double
Cytoplasm_AreaShape_Zernike_8_2: double
Cytoplasm_AreaShape_Zernike_8_4: double
Cytoplasm_AreaShape_Zernike_8_6: double
Cytoplasm_AreaShape_Zernike_8_8: double
Cytoplasm_AreaShape_Zernike_9_1: double
Cytoplasm_AreaShape_Zernike_9_3: double
Cytoplasm_AreaShape_Zernike_9_5: double
Cytoplasm_AreaShape_Zernike_9_7: double
Cytoplasm_AreaShape_Zernike_9_9: double
Cytoplasm_Correlation_Correlation_AGP_BFHigh: double
Cytoplasm_Correlation_Correlation_AGP_BFLow: double
Cytoplasm_Correlation_Correlation_AGP_Brightfield: double
Cytoplasm_Correlation_Correlation_AGP_DNA: double
Cytoplasm_Correlation_Correlation_AGP_ER: double
Cytoplasm_Correlation_Correlation_AGP_Mito: double
Cytoplasm_Correlation_Correlation_AGP_RNA: double
Cytoplasm_Correlation_Correlation_BFHigh_BFLow: double
Cytoplasm_Correlation_Correlation_BFHigh_Brightfield: double
Cytoplasm_Correlation_Correlation_BFHigh_DNA: double
Cytoplasm_Correlation_Correlation_BFHigh_ER: double
Cytoplasm_Correlation_Correlation_BFHigh_Mito: double
Cytoplasm_Correlation_Correlation_BFHigh_RNA: double
Cytoplasm_Correlation_Correlation_BFLow_Brightfield: double
Cytoplasm_Correlation_Correlation_BFLow_DNA: double
Cytoplasm_Correlation_Correlation_BFLow_ER: double
Cytoplasm_Correlation_Correlation_BFLow_Mito: double
Cytoplasm_Correlation_Correlation_BFLow_RNA: double
Cytoplasm_Correlation_Correlation_Brightfield_DNA: double
Cytoplasm_Correlation_Correlation_Brightfield_ER: double
Cytoplasm_Correlation_Correlation_Brightfield_Mito: double
Cytoplasm_Correlation_Correlation_Brightfield_RNA: double
Cytoplasm_Correlation_Correlation_DNA_ER: double
Cytoplasm_Correlation_Correlation_DNA_Mito: double
Cytoplasm_Correlation_Correlation_DNA_RNA: double
Cytoplasm_Correlation_Correlation_ER_Mito: double
Cytoplasm_Correlation_Correlation_ER_RNA: double
Cytoplasm_Correlation_Correlation_Mito_RNA: double
Cytoplasm_Correlation_K_AGP_BFHigh: double
Cytoplasm_Correlation_K_AGP_BFLow: double
Cytoplasm_Correlation_K_AGP_Brightfield: double
Cytoplasm_Correlation_K_AGP_DNA: double
Cytoplasm_Correlation_K_AGP_ER: double
Cytoplasm_Correlation_K_AGP_Mito: double
Cytoplasm_Correlation_K_AGP_RNA: double
Cytoplasm_Correlation_K_BFHigh_AGP: double
Cytoplasm_Correlation_K_BFHigh_BFLow: double
Cytoplasm_Correlation_K_BFHigh_Brightfield: double
Cytoplasm_Correlation_K_BFHigh_DNA: double
Cytoplasm_Correlation_K_BFHigh_ER: double
Cytoplasm_Correlation_K_BFHigh_Mito: double
Cytoplasm_Correlation_K_BFHigh_RNA: double
Cytoplasm_Correlation_K_BFLow_AGP: double
Cytoplasm_Correlation_K_BFLow_BFHigh: double
Cytoplasm_Correlation_K_BFLow_Brightfield: double
Cytoplasm_Correlation_K_BFLow_DNA: double
Cytoplasm_Correlation_K_BFLow_ER: double
Cytoplasm_Correlation_K_BFLow_Mito: double
Cytoplasm_Correlation_K_BFLow_RNA: double
Cytoplasm_Correlation_K_Brightfield_AGP: double
Cytoplasm_Correlation_K_Brightfield_BFHigh: double
Cytoplasm_Correlation_K_Brightfield_BFLow: double
Cytoplasm_Correlation_K_Brightfield_DNA: double
Cytoplasm_Correlation_K_Brightfield_ER: double
Cytoplasm_Correlation_K_Brightfield_Mito: double
Cytoplasm_Correlation_K_Brightfield_RNA: double
Cytoplasm_Correlation_K_DNA_AGP: double
Cytoplasm_Correlation_K_DNA_BFHigh: double
Cytoplasm_Correlation_K_DNA_BFLow: double
Cytoplasm_Correlation_K_DNA_Brightfield: double
Cytoplasm_Correlation_K_DNA_ER: double
Cytoplasm_Correlation_K_DNA_Mito: double
Cytoplasm_Correlation_K_DNA_RNA: double
Cytoplasm_Correlation_K_ER_AGP: double
Cytoplasm_Correlation_K_ER_BFHigh: double
Cytoplasm_Correlation_K_ER_BFLow: double
Cytoplasm_Correlation_K_ER_Brightfield: double
Cytoplasm_Correlation_K_ER_DNA: double
Cytoplasm_Correlation_K_ER_Mito: double
Cytoplasm_Correlation_K_ER_RNA: double
Cytoplasm_Correlation_K_Mito_AGP: double
Cytoplasm_Correlation_K_Mito_BFHigh: double
Cytoplasm_Correlation_K_Mito_BFLow: double
Cytoplasm_Correlation_K_Mito_Brightfield: double
Cytoplasm_Correlation_K_Mito_DNA: double
Cytoplasm_Correlation_K_Mito_ER: double
Cytoplasm_Correlation_K_Mito_RNA: double
Cytoplasm_Correlation_K_RNA_AGP: double
Cytoplasm_Correlation_K_RNA_BFHigh: double
Cytoplasm_Correlation_K_RNA_BFLow: double
Cytoplasm_Correlation_K_RNA_Brightfield: double
Cytoplasm_Correlation_K_RNA_DNA: double
Cytoplasm_Correlation_K_RNA_ER: double
Cytoplasm_Correlation_K_RNA_Mito: double
Cytoplasm_Correlation_Manders_AGP_BFHigh: double
Cytoplasm_Correlation_Manders_AGP_BFLow: double
Cytoplasm_Correlation_Manders_AGP_Brightfield: double
Cytoplasm_Correlation_Manders_AGP_DNA: double
Cytoplasm_Correlation_Manders_AGP_ER: double
Cytoplasm_Correlation_Manders_AGP_Mito: double
Cytoplasm_Correlation_Manders_AGP_RNA: double
Cytoplasm_Correlation_Manders_BFHigh_AGP: double
Cytoplasm_Correlation_Manders_BFHigh_BFLow: double
Cytoplasm_Correlation_Manders_BFHigh_Brightfield: double
Cytoplasm_Correlation_Manders_BFHigh_DNA: double
Cytoplasm_Correlation_Manders_BFHigh_ER: double
Cytoplasm_Correlation_Manders_BFHigh_Mito: double
Cytoplasm_Correlation_Manders_BFHigh_RNA: double
Cytoplasm_Correlation_Manders_BFLow_AGP: double
Cytoplasm_Correlation_Manders_BFLow_BFHigh: double
Cytoplasm_Correlation_Manders_BFLow_Brightfield: double
Cytoplasm_Correlation_Manders_BFLow_DNA: double
Cytoplasm_Correlation_Manders_BFLow_ER: double
Cytoplasm_Correlation_Manders_BFLow_Mito: double
Cytoplasm_Correlation_Manders_BFLow_RNA: double
Cytoplasm_Correlation_Manders_Brightfield_AGP: double
Cytoplasm_Correlation_Manders_Brightfield_BFHigh: double
Cytoplasm_Correlation_Manders_Brightfield_BFLow: double
Cytoplasm_Correlation_Manders_Brightfield_DNA: double
Cytoplasm_Correlation_Manders_Brightfield_ER: double
Cytoplasm_Correlation_Manders_Brightfield_Mito: double
Cytoplasm_Correlation_Manders_Brightfield_RNA: double
Cytoplasm_Correlation_Manders_DNA_AGP: double
Cytoplasm_Correlation_Manders_DNA_BFHigh: double
Cytoplasm_Correlation_Manders_DNA_BFLow: double
Cytoplasm_Correlation_Manders_DNA_Brightfield: double
Cytoplasm_Correlation_Manders_DNA_ER: double
Cytoplasm_Correlation_Manders_DNA_Mito: double
Cytoplasm_Correlation_Manders_DNA_RNA: double
Cytoplasm_Correlation_Manders_ER_AGP: double
Cytoplasm_Correlation_Manders_ER_BFHigh: double
Cytoplasm_Correlation_Manders_ER_BFLow: double
Cytoplasm_Correlation_Manders_ER_Brightfield: double
Cytoplasm_Correlation_Manders_ER_DNA: double
Cytoplasm_Correlation_Manders_ER_Mito: double
Cytoplasm_Correlation_Manders_ER_RNA: double
Cytoplasm_Correlation_Manders_Mito_AGP: double
Cytoplasm_Correlation_Manders_Mito_BFHigh: double
Cytoplasm_Correlation_Manders_Mito_BFLow: double
Cytoplasm_Correlation_Manders_Mito_Brightfield: double
Cytoplasm_Correlation_Manders_Mito_DNA: double
Cytoplasm_Correlation_Manders_Mito_ER: double
Cytoplasm_Correlation_Manders_Mito_RNA: double
Cytoplasm_Correlation_Manders_RNA_AGP: double
Cytoplasm_Correlation_Manders_RNA_BFHigh: double
Cytoplasm_Correlation_Manders_RNA_BFLow: double
Cytoplasm_Correlation_Manders_RNA_Brightfield: double
Cytoplasm_Correlation_Manders_RNA_DNA: double
Cytoplasm_Correlation_Manders_RNA_ER: double
Cytoplasm_Correlation_Manders_RNA_Mito: double
Cytoplasm_Correlation_Overlap_AGP_BFHigh: double
Cytoplasm_Correlation_Overlap_AGP_BFLow: double
Cytoplasm_Correlation_Overlap_AGP_Brightfield: double
Cytoplasm_Correlation_Overlap_AGP_DNA: double
Cytoplasm_Correlation_Overlap_AGP_ER: double
Cytoplasm_Correlation_Overlap_AGP_Mito: double
Cytoplasm_Correlation_Overlap_AGP_RNA: double
Cytoplasm_Correlation_Overlap_BFHigh_BFLow: double
Cytoplasm_Correlation_Overlap_BFHigh_Brightfield: double
Cytoplasm_Correlation_Overlap_BFHigh_DNA: double
Cytoplasm_Correlation_Overlap_BFHigh_ER: double
Cytoplasm_Correlation_Overlap_BFHigh_Mito: double
Cytoplasm_Correlation_Overlap_BFHigh_RNA: double
Cytoplasm_Correlation_Overlap_BFLow_Brightfield: double
Cytoplasm_Correlation_Overlap_BFLow_DNA: double
Cytoplasm_Correlation_Overlap_BFLow_ER: double
Cytoplasm_Correlation_Overlap_BFLow_Mito: double
Cytoplasm_Correlation_Overlap_BFLow_RNA: double
Cytoplasm_Correlation_Overlap_Brightfield_DNA: double
Cytoplasm_Correlation_Overlap_Brightfield_ER: double
Cytoplasm_Correlation_Overlap_Brightfield_Mito: double
Cytoplasm_Correlation_Overlap_Brightfield_RNA: double
Cytoplasm_Correlation_Overlap_DNA_ER: double
Cytoplasm_Correlation_Overlap_DNA_Mito: double
Cytoplasm_Correlation_Overlap_DNA_RNA: double
Cytoplasm_Correlation_Overlap_ER_Mito: double
Cytoplasm_Correlation_Overlap_ER_RNA: double
Cytoplasm_Correlation_Overlap_Mito_RNA: double
Cytoplasm_Correlation_RWC_AGP_BFHigh: double
Cytoplasm_Correlation_RWC_AGP_BFLow: double
Cytoplasm_Correlation_RWC_AGP_Brightfield: double
Cytoplasm_Correlation_RWC_AGP_DNA: double
Cytoplasm_Correlation_RWC_AGP_ER: double
Cytoplasm_Correlation_RWC_AGP_Mito: double
Cytoplasm_Correlation_RWC_AGP_RNA: double
Cytoplasm_Correlation_RWC_BFHigh_AGP: double
Cytoplasm_Correlation_RWC_BFHigh_BFLow: double
Cytoplasm_Correlation_RWC_BFHigh_Brightfield: double
Cytoplasm_Correlation_RWC_BFHigh_DNA: double
Cytoplasm_Correlation_RWC_BFHigh_ER: double
Cytoplasm_Correlation_RWC_BFHigh_Mito: double
Cytoplasm_Correlation_RWC_BFHigh_RNA: double
Cytoplasm_Correlation_RWC_BFLow_AGP: double
Cytoplasm_Correlation_RWC_BFLow_BFHigh: double
Cytoplasm_Correlation_RWC_BFLow_Brightfield: double
Cytoplasm_Correlation_RWC_BFLow_DNA: double
Cytoplasm_Correlation_RWC_BFLow_ER: double
Cytoplasm_Correlation_RWC_BFLow_Mito: double
Cytoplasm_Correlation_RWC_BFLow_RNA: double
Cytoplasm_Correlation_RWC_Brightfield_AGP: double
Cytoplasm_Correlation_RWC_Brightfield_BFHigh: double
Cytoplasm_Correlation_RWC_Brightfield_BFLow: double
Cytoplasm_Correlation_RWC_Brightfield_DNA: double
Cytoplasm_Correlation_RWC_Brightfield_ER: double
Cytoplasm_Correlation_RWC_Brightfield_Mito: double
Cytoplasm_Correlation_RWC_Brightfield_RNA: double
Cytoplasm_Correlation_RWC_DNA_AGP: double
Cytoplasm_Correlation_RWC_DNA_BFHigh: double
Cytoplasm_Correlation_RWC_DNA_BFLow: double
Cytoplasm_Correlation_RWC_DNA_Brightfield: double
Cytoplasm_Correlation_RWC_DNA_ER: double
Cytoplasm_Correlation_RWC_DNA_Mito: double
Cytoplasm_Correlation_RWC_DNA_RNA: double
Cytoplasm_Correlation_RWC_ER_AGP: double
Cytoplasm_Correlation_RWC_ER_BFHigh: double
Cytoplasm_Correlation_RWC_ER_BFLow: double
Cytoplasm_Correlation_RWC_ER_Brightfield: double
Cytoplasm_Correlation_RWC_ER_DNA: double
Cytoplasm_Correlation_RWC_ER_Mito: double
Cytoplasm_Correlation_RWC_ER_RNA: double
Cytoplasm_Correlation_RWC_Mito_AGP: double
Cytoplasm_Correlation_RWC_Mito_BFHigh: double
Cytoplasm_Correlation_RWC_Mito_BFLow: double
Cytoplasm_Correlation_RWC_Mito_Brightfield: double
Cytoplasm_Correlation_RWC_Mito_DNA: double
Cytoplasm_Correlation_RWC_Mito_ER: double
Cytoplasm_Correlation_RWC_Mito_RNA: double
Cytoplasm_Correlation_RWC_RNA_AGP: double
Cytoplasm_Correlation_RWC_RNA_BFHigh: double
Cytoplasm_Correlation_RWC_RNA_BFLow: double
Cytoplasm_Correlation_RWC_RNA_Brightfield: double
Cytoplasm_Correlation_RWC_RNA_DNA: double
Cytoplasm_Correlation_RWC_RNA_ER: double
Cytoplasm_Correlation_RWC_RNA_Mito: double
Cytoplasm_Granularity_10_AGP: double
Cytoplasm_Granularity_10_BFHigh: double
Cytoplasm_Granularity_10_BFLow: double
Cytoplasm_Granularity_10_Brightfield: double
Cytoplasm_Granularity_10_DNA: double
Cytoplasm_Granularity_10_ER: double
Cytoplasm_Granularity_10_Mito: double
Cytoplasm_Granularity_10_RNA: double
Cytoplasm_Granularity_11_AGP: double
Cytoplasm_Granularity_11_BFHigh: double
Cytoplasm_Granularity_11_BFLow: double
Cytoplasm_Granularity_11_Brightfield: double
Cytoplasm_Granularity_11_DNA: double
Cytoplasm_Granularity_11_ER: double
Cytoplasm_Granularity_11_Mito: double
Cytoplasm_Granularity_11_RNA: double
Cytoplasm_Granularity_12_AGP: double
Cytoplasm_Granularity_12_BFHigh: double
Cytoplasm_Granularity_12_BFLow: double
Cytoplasm_Granularity_12_Brightfield: double
Cytoplasm_Granularity_12_DNA: double
Cytoplasm_Granularity_12_ER: double
Cytoplasm_Granularity_12_Mito: double
Cytoplasm_Granularity_12_RNA: double
Cytoplasm_Granularity_13_AGP: double
Cytoplasm_Granularity_13_BFHigh: double
Cytoplasm_Granularity_13_BFLow: double
Cytoplasm_Granularity_13_Brightfield: double
Cytoplasm_Granularity_13_DNA: double
Cytoplasm_Granularity_13_ER: double
Cytoplasm_Granularity_13_Mito: double
Cytoplasm_Granularity_13_RNA: double
Cytoplasm_Granularity_14_AGP: double
Cytoplasm_Granularity_14_BFHigh: double
Cytoplasm_Granularity_14_BFLow: double
Cytoplasm_Granularity_14_Brightfield: double
Cytoplasm_Granularity_14_DNA: double
Cytoplasm_Granularity_14_ER: double
Cytoplasm_Granularity_14_Mito: double
Cytoplasm_Granularity_14_RNA: double
Cytoplasm_Granularity_15_AGP: double
Cytoplasm_Granularity_15_BFHigh: double
Cytoplasm_Granularity_15_BFLow: double
Cytoplasm_Granularity_15_Brightfield: double
Cytoplasm_Granularity_15_DNA: double
Cytoplasm_Granularity_15_ER: double
Cytoplasm_Granularity_15_Mito: double
Cytoplasm_Granularity_15_RNA: double
Cytoplasm_Granularity_16_AGP: double
Cytoplasm_Granularity_16_BFHigh: double
Cytoplasm_Granularity_16_BFLow: double
Cytoplasm_Granularity_16_Brightfield: double
Cytoplasm_Granularity_16_DNA: double
Cytoplasm_Granularity_16_ER: double
Cytoplasm_Granularity_16_Mito: double
Cytoplasm_Granularity_16_RNA: double
Cytoplasm_Granularity_1_AGP: double
Cytoplasm_Granularity_1_BFHigh: double
Cytoplasm_Granularity_1_BFLow: double
Cytoplasm_Granularity_1_Brightfield: double
Cytoplasm_Granularity_1_DNA: double
Cytoplasm_Granularity_1_ER: double
Cytoplasm_Granularity_1_Mito: double
Cytoplasm_Granularity_1_RNA: double
Cytoplasm_Granularity_2_AGP: double
Cytoplasm_Granularity_2_BFHigh: double
Cytoplasm_Granularity_2_BFLow: double
Cytoplasm_Granularity_2_Brightfield: double
Cytoplasm_Granularity_2_DNA: double
Cytoplasm_Granularity_2_ER: double
Cytoplasm_Granularity_2_Mito: double
Cytoplasm_Granularity_2_RNA: double
Cytoplasm_Granularity_3_AGP: double
Cytoplasm_Granularity_3_BFHigh: double
Cytoplasm_Granularity_3_BFLow: double
Cytoplasm_Granularity_3_Brightfield: double
Cytoplasm_Granularity_3_DNA: double
Cytoplasm_Granularity_3_ER: double
Cytoplasm_Granularity_3_Mito: double
Cytoplasm_Granularity_3_RNA: double
Cytoplasm_Granularity_4_AGP: double
Cytoplasm_Granularity_4_BFHigh: double
Cytoplasm_Granularity_4_BFLow: double
Cytoplasm_Granularity_4_Brightfield: double
Cytoplasm_Granularity_4_DNA: double
Cytoplasm_Granularity_4_ER: double
Cytoplasm_Granularity_4_Mito: double
Cytoplasm_Granularity_4_RNA: double
Cytoplasm_Granularity_5_AGP: double
Cytoplasm_Granularity_5_BFHigh: double
Cytoplasm_Granularity_5_BFLow: double
Cytoplasm_Granularity_5_Brightfield: double
Cytoplasm_Granularity_5_DNA: double
Cytoplasm_Granularity_5_ER: double
Cytoplasm_Granularity_5_Mito: double
Cytoplasm_Granularity_5_RNA: double
Cytoplasm_Granularity_6_AGP: double
Cytoplasm_Granularity_6_BFHigh: double
Cytoplasm_Granularity_6_BFLow: double
Cytoplasm_Granularity_6_Brightfield: double
Cytoplasm_Granularity_6_DNA: double
Cytoplasm_Granularity_6_ER: double
Cytoplasm_Granularity_6_Mito: double
Cytoplasm_Granularity_6_RNA: double
Cytoplasm_Granularity_7_AGP: double
Cytoplasm_Granularity_7_BFHigh: double
Cytoplasm_Granularity_7_BFLow: double
Cytoplasm_Granularity_7_Brightfield: double
Cytoplasm_Granularity_7_DNA: double
Cytoplasm_Granularity_7_ER: double
Cytoplasm_Granularity_7_Mito: double
Cytoplasm_Granularity_7_RNA: double
Cytoplasm_Granularity_8_AGP: double
Cytoplasm_Granularity_8_BFHigh: double
Cytoplasm_Granularity_8_BFLow: double
Cytoplasm_Granularity_8_Brightfield: double
Cytoplasm_Granularity_8_DNA: double
Cytoplasm_Granularity_8_ER: double
Cytoplasm_Granularity_8_Mito: double
Cytoplasm_Granularity_8_RNA: double
Cytoplasm_Granularity_9_AGP: double
Cytoplasm_Granularity_9_BFHigh: double
Cytoplasm_Granularity_9_BFLow: double
Cytoplasm_Granularity_9_Brightfield: double
Cytoplasm_Granularity_9_DNA: double
Cytoplasm_Granularity_9_ER: double
Cytoplasm_Granularity_9_Mito: double
Cytoplasm_Granularity_9_RNA: double
Cytoplasm_Intensity_IntegratedIntensityEdge_AGP: double
Cytoplasm_Intensity_IntegratedIntensityEdge_BFHigh: double
Cytoplasm_Intensity_IntegratedIntensityEdge_BFLow: double
Cytoplasm_Intensity_IntegratedIntensityEdge_Brightfield: double
Cytoplasm_Intensity_IntegratedIntensityEdge_DNA: double
Cytoplasm_Intensity_IntegratedIntensityEdge_ER: double
Cytoplasm_Intensity_IntegratedIntensityEdge_Mito: double
Cytoplasm_Intensity_IntegratedIntensityEdge_RNA: double
Cytoplasm_Intensity_IntegratedIntensity_AGP: double
Cytoplasm_Intensity_IntegratedIntensity_BFHigh: double
Cytoplasm_Intensity_IntegratedIntensity_BFLow: double
Cytoplasm_Intensity_IntegratedIntensity_Brightfield: double
Cytoplasm_Intensity_IntegratedIntensity_DNA: double
Cytoplasm_Intensity_IntegratedIntensity_ER: double
Cytoplasm_Intensity_IntegratedIntensity_Mito: double
Cytoplasm_Intensity_IntegratedIntensity_RNA: double
Cytoplasm_Intensity_LowerQuartileIntensity_AGP: double
Cytoplasm_Intensity_LowerQuartileIntensity_BFHigh: double
Cytoplasm_Intensity_LowerQuartileIntensity_BFLow: double
Cytoplasm_Intensity_LowerQuartileIntensity_Brightfield: double
Cytoplasm_Intensity_LowerQuartileIntensity_DNA: double
Cytoplasm_Intensity_LowerQuartileIntensity_ER: double
Cytoplasm_Intensity_LowerQuartileIntensity_Mito: double
Cytoplasm_Intensity_LowerQuartileIntensity_RNA: double
Cytoplasm_Intensity_MADIntensity_AGP: double
Cytoplasm_Intensity_MADIntensity_BFHigh: double
Cytoplasm_Intensity_MADIntensity_BFLow: double
Cytoplasm_Intensity_MADIntensity_Brightfield: double
Cytoplasm_Intensity_MADIntensity_DNA: double
Cytoplasm_Intensity_MADIntensity_ER: double
Cytoplasm_Intensity_MADIntensity_Mito: double
Cytoplasm_Intensity_MADIntensity_RNA: double
Cytoplasm_Intensity_MassDisplacement_AGP: double
Cytoplasm_Intensity_MassDisplacement_BFHigh: double
Cytoplasm_Intensity_MassDisplacement_BFLow: double
Cytoplasm_Intensity_MassDisplacement_Brightfield: double
Cytoplasm_Intensity_MassDisplacement_DNA: double
Cytoplasm_Intensity_MassDisplacement_ER: double
Cytoplasm_Intensity_MassDisplacement_Mito: double
Cytoplasm_Intensity_MassDisplacement_RNA: double
Cytoplasm_Intensity_MaxIntensityEdge_AGP: double
Cytoplasm_Intensity_MaxIntensityEdge_BFHigh: double
Cytoplasm_Intensity_MaxIntensityEdge_BFLow: double
Cytoplasm_Intensity_MaxIntensityEdge_Brightfield: double
Cytoplasm_Intensity_MaxIntensityEdge_DNA: double
Cytoplasm_Intensity_MaxIntensityEdge_ER: double
Cytoplasm_Intensity_MaxIntensityEdge_Mito: double
Cytoplasm_Intensity_MaxIntensityEdge_RNA: double
Cytoplasm_Intensity_MaxIntensity_AGP: double
Cytoplasm_Intensity_MaxIntensity_BFHigh: double
Cytoplasm_Intensity_MaxIntensity_BFLow: double
Cytoplasm_Intensity_MaxIntensity_Brightfield: double
Cytoplasm_Intensity_MaxIntensity_DNA: double
Cytoplasm_Intensity_MaxIntensity_ER: double
Cytoplasm_Intensity_MaxIntensity_Mito: double
Cytoplasm_Intensity_MaxIntensity_RNA: double
Cytoplasm_Intensity_MeanIntensityEdge_AGP: double
Cytoplasm_Intensity_MeanIntensityEdge_BFHigh: double
Cytoplasm_Intensity_MeanIntensityEdge_BFLow: double
Cytoplasm_Intensity_MeanIntensityEdge_Brightfield: double
Cytoplasm_Intensity_MeanIntensityEdge_DNA: double
Cytoplasm_Intensity_MeanIntensityEdge_ER: double
Cytoplasm_Intensity_MeanIntensityEdge_Mito: double
Cytoplasm_Intensity_MeanIntensityEdge_RNA: double
Cytoplasm_Intensity_MeanIntensity_AGP: double
Cytoplasm_Intensity_MeanIntensity_BFHigh: double
Cytoplasm_Intensity_MeanIntensity_BFLow: double
Cytoplasm_Intensity_MeanIntensity_Brightfield: double
Cytoplasm_Intensity_MeanIntensity_DNA: double
Cytoplasm_Intensity_MeanIntensity_ER: double
Cytoplasm_Intensity_MeanIntensity_Mito: double
Cytoplasm_Intensity_MeanIntensity_RNA: double
Cytoplasm_Intensity_MedianIntensity_AGP: double
Cytoplasm_Intensity_MedianIntensity_BFHigh: double
Cytoplasm_Intensity_MedianIntensity_BFLow: double
Cytoplasm_Intensity_MedianIntensity_Brightfield: double
Cytoplasm_Intensity_MedianIntensity_DNA: double
Cytoplasm_Intensity_MedianIntensity_ER: double
Cytoplasm_Intensity_MedianIntensity_Mito: double
Cytoplasm_Intensity_MedianIntensity_RNA: double
Cytoplasm_Intensity_MinIntensityEdge_AGP: double
Cytoplasm_Intensity_MinIntensityEdge_BFHigh: double
Cytoplasm_Intensity_MinIntensityEdge_BFLow: double
Cytoplasm_Intensity_MinIntensityEdge_Brightfield: double
Cytoplasm_Intensity_MinIntensityEdge_DNA: double
Cytoplasm_Intensity_MinIntensityEdge_ER: double
Cytoplasm_Intensity_MinIntensityEdge_Mito: double
Cytoplasm_Intensity_MinIntensityEdge_RNA: double
Cytoplasm_Intensity_MinIntensity_AGP: double
Cytoplasm_Intensity_MinIntensity_BFHigh: double
Cytoplasm_Intensity_MinIntensity_BFLow: double
Cytoplasm_Intensity_MinIntensity_Brightfield: double
Cytoplasm_Intensity_MinIntensity_DNA: double
Cytoplasm_Intensity_MinIntensity_ER: double
Cytoplasm_Intensity_MinIntensity_Mito: double
Cytoplasm_Intensity_MinIntensity_RNA: double
Cytoplasm_Intensity_StdIntensityEdge_AGP: double
Cytoplasm_Intensity_StdIntensityEdge_BFHigh: double
Cytoplasm_Intensity_StdIntensityEdge_BFLow: double
Cytoplasm_Intensity_StdIntensityEdge_Brightfield: double
Cytoplasm_Intensity_StdIntensityEdge_DNA: double
Cytoplasm_Intensity_StdIntensityEdge_ER: double
Cytoplasm_Intensity_StdIntensityEdge_Mito: double
Cytoplasm_Intensity_StdIntensityEdge_RNA: double
Cytoplasm_Intensity_StdIntensity_AGP: double
Cytoplasm_Intensity_StdIntensity_BFHigh: double
Cytoplasm_Intensity_StdIntensity_BFLow: double
Cytoplasm_Intensity_StdIntensity_Brightfield: double
Cytoplasm_Intensity_StdIntensity_DNA: double
Cytoplasm_Intensity_StdIntensity_ER: double
Cytoplasm_Intensity_StdIntensity_Mito: double
Cytoplasm_Intensity_StdIntensity_RNA: double
Cytoplasm_Intensity_UpperQuartileIntensity_AGP: double
Cytoplasm_Intensity_UpperQuartileIntensity_BFHigh: double
Cytoplasm_Intensity_UpperQuartileIntensity_BFLow: double
Cytoplasm_Intensity_UpperQuartileIntensity_Brightfield: double
Cytoplasm_Intensity_UpperQuartileIntensity_DNA: double
Cytoplasm_Intensity_UpperQuartileIntensity_ER: double
Cytoplasm_Intensity_UpperQuartileIntensity_Mito: double
Cytoplasm_Intensity_UpperQuartileIntensity_RNA: double
Cytoplasm_Number_Object_Number: int64
Cytoplasm_Parent_Cells: int64
Cytoplasm_Parent_Nuclei: int64
Cytoplasm_RadialDistribution_FracAtD_AGP_1of4: double
Cytoplasm_RadialDistribution_FracAtD_AGP_2of4: double
Cytoplasm_RadialDistribution_FracAtD_AGP_3of4: double
Cytoplasm_RadialDistribution_FracAtD_AGP_4of4: double
Cytoplasm_RadialDistribution_FracAtD_BFHigh_1of4: double
Cytoplasm_RadialDistribution_FracAtD_BFHigh_2of4: double
Cytoplasm_RadialDistribution_FracAtD_BFHigh_3of4: double
Cytoplasm_RadialDistribution_FracAtD_BFHigh_4of4: double
Cytoplasm_RadialDistribution_FracAtD_BFLow_1of4: double
Cytoplasm_RadialDistribution_FracAtD_BFLow_2of4: double
Cytoplasm_RadialDistribution_FracAtD_BFLow_3of4: double
Cytoplasm_RadialDistribution_FracAtD_BFLow_4of4: double
Cytoplasm_RadialDistribution_FracAtD_Brightfield_1of4: double
Cytoplasm_RadialDistribution_FracAtD_Brightfield_2of4: double
Cytoplasm_RadialDistribution_FracAtD_Brightfield_3of4: double
Cytoplasm_RadialDistribution_FracAtD_Brightfield_4of4: double
Cytoplasm_RadialDistribution_FracAtD_DNA_1of4: double
Cytoplasm_RadialDistribution_FracAtD_DNA_2of4: double
Cytoplasm_RadialDistribution_FracAtD_DNA_3of4: double
Cytoplasm_RadialDistribution_FracAtD_DNA_4of4: double
Cytoplasm_RadialDistribution_FracAtD_ER_1of4: double
Cytoplasm_RadialDistribution_FracAtD_ER_2of4: double
Cytoplasm_RadialDistribution_FracAtD_ER_3of4: double
Cytoplasm_RadialDistribution_FracAtD_ER_4of4: double
Cytoplasm_RadialDistribution_FracAtD_Mito_1of4: double
Cytoplasm_RadialDistribution_FracAtD_Mito_2of4: double
Cytoplasm_RadialDistribution_FracAtD_Mito_3of4: double
Cytoplasm_RadialDistribution_FracAtD_Mito_4of4: double
Cytoplasm_RadialDistribution_FracAtD_RNA_1of4: double
Cytoplasm_RadialDistribution_FracAtD_RNA_2of4: double
Cytoplasm_RadialDistribution_FracAtD_RNA_3of4: double
Cytoplasm_RadialDistribution_FracAtD_RNA_4of4: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_10of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_10of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_11of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_11of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_12of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_12of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_13of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_13of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_14of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_14of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_15of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_15of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_16of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_16of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_17of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_18of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_19of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_1of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_1of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_20of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_2of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_2of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_3of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_3of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_4of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_4of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_5of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_5of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_6of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_6of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_7of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_7of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_8of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_8of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_9of16: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_9of20: double
Cytoplasm_RadialDistribution_FracAtD_mito_tubeness_Overflow: double
Cytoplasm_RadialDistribution_MeanFrac_AGP_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_AGP_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_AGP_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_AGP_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFHigh_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFHigh_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFHigh_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFHigh_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFLow_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFLow_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFLow_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_BFLow_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_Brightfield_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_Brightfield_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_Brightfield_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_Brightfield_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_DNA_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_DNA_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_DNA_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_DNA_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_ER_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_ER_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_ER_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_ER_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_Mito_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_Mito_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_Mito_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_Mito_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_RNA_1of4: double
Cytoplasm_RadialDistribution_MeanFrac_RNA_2of4: double
Cytoplasm_RadialDistribution_MeanFrac_RNA_3of4: double
Cytoplasm_RadialDistribution_MeanFrac_RNA_4of4: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_10of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_10of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_11of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_11of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_12of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_12of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_13of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_13of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_14of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_14of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_15of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_15of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_16of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_16of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_17of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_18of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_19of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_1of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_1of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_20of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_2of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_2of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_3of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_3of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_4of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_4of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_5of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_5of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_6of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_6of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_7of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_7of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_8of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_8of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_9of16: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_9of20: double
Cytoplasm_RadialDistribution_MeanFrac_mito_tubeness_Overflow: double
Cytoplasm_RadialDistribution_RadialCV_AGP_1of4: double
Cytoplasm_RadialDistribution_RadialCV_AGP_2of4: double
Cytoplasm_RadialDistribution_RadialCV_AGP_3of4: double
Cytoplasm_RadialDistribution_RadialCV_AGP_4of4: double
Cytoplasm_RadialDistribution_RadialCV_BFHigh_1of4: double
Cytoplasm_RadialDistribution_RadialCV_BFHigh_2of4: double
Cytoplasm_RadialDistribution_RadialCV_BFHigh_3of4: double
Cytoplasm_RadialDistribution_RadialCV_BFHigh_4of4: double
Cytoplasm_RadialDistribution_RadialCV_BFLow_1of4: double
Cytoplasm_RadialDistribution_RadialCV_BFLow_2of4: double
Cytoplasm_RadialDistribution_RadialCV_BFLow_3of4: double
Cytoplasm_RadialDistribution_RadialCV_BFLow_4of4: double
Cytoplasm_RadialDistribution_RadialCV_Brightfield_1of4: double
Cytoplasm_RadialDistribution_RadialCV_Brightfield_2of4: double
Cytoplasm_RadialDistribution_RadialCV_Brightfield_3of4: double
Cytoplasm_RadialDistribution_RadialCV_Brightfield_4of4: double
Cytoplasm_RadialDistribution_RadialCV_DNA_1of4: double
Cytoplasm_RadialDistribution_RadialCV_DNA_2of4: double
Cytoplasm_RadialDistribution_RadialCV_DNA_3of4: double
Cytoplasm_RadialDistribution_RadialCV_DNA_4of4: double
Cytoplasm_RadialDistribution_RadialCV_ER_1of4: double
Cytoplasm_RadialDistribution_RadialCV_ER_2of4: double
Cytoplasm_RadialDistribution_RadialCV_ER_3of4: double
Cytoplasm_RadialDistribution_RadialCV_ER_4of4: double
Cytoplasm_RadialDistribution_RadialCV_Mito_1of4: double
Cytoplasm_RadialDistribution_RadialCV_Mito_2of4: double
Cytoplasm_RadialDistribution_RadialCV_Mito_3of4: double
Cytoplasm_RadialDistribution_RadialCV_Mito_4of4: double
Cytoplasm_RadialDistribution_RadialCV_RNA_1of4: double
Cytoplasm_RadialDistribution_RadialCV_RNA_2of4: double
Cytoplasm_RadialDistribution_RadialCV_RNA_3of4: double
Cytoplasm_RadialDistribution_RadialCV_RNA_4of4: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_10of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_10of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_11of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_11of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_12of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_12of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_13of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_13of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_14of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_14of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_15of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_15of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_16of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_16of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_17of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_18of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_19of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_1of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_1of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_20of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_2of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_2of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_3of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_3of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_4of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_4of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_5of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_5of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_6of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_6of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_7of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_7of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_8of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_8of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_9of16: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_9of20: double
Cytoplasm_RadialDistribution_RadialCV_mito_tubeness_Overflow: double
Cytoplasm_TableNumber: int64
Cytoplasm_Texture_AngularSecondMoment_AGP_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_AGP_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFHigh_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_BFLow_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Brightfield_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_DNA_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_ER_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_Mito_5_03_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_10_00_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_10_01_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_10_02_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_10_03_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_3_00_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_3_01_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_3_02_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_3_03_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_5_00_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_5_01_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_5_02_256: double
Cytoplasm_Texture_AngularSecondMoment_RNA_5_03_256: double
Cytoplasm_Texture_Contrast_AGP_10_00_256: double
Cytoplasm_Texture_Contrast_AGP_10_01_256: double
Cytoplasm_Texture_Contrast_AGP_10_02_256: double
Cytoplasm_Texture_Contrast_AGP_10_03_256: double
Cytoplasm_Texture_Contrast_AGP_3_00_256: double
Cytoplasm_Texture_Contrast_AGP_3_01_256: double
Cytoplasm_Texture_Contrast_AGP_3_02_256: double
Cytoplasm_Texture_Contrast_AGP_3_03_256: double
Cytoplasm_Texture_Contrast_AGP_5_00_256: double
Cytoplasm_Texture_Contrast_AGP_5_01_256: double
Cytoplasm_Texture_Contrast_AGP_5_02_256: double
Cytoplasm_Texture_Contrast_AGP_5_03_256: double
Cytoplasm_Texture_Contrast_BFHigh_10_00_256: double
Cytoplasm_Texture_Contrast_BFHigh_10_01_256: double
Cytoplasm_Texture_Contrast_BFHigh_10_02_256: double
Cytoplasm_Texture_Contrast_BFHigh_10_03_256: double
Cytoplasm_Texture_Contrast_BFHigh_3_00_256: double
Cytoplasm_Texture_Contrast_BFHigh_3_01_256: double
Cytoplasm_Texture_Contrast_BFHigh_3_02_256: double
Cytoplasm_Texture_Contrast_BFHigh_3_03_256: double
Cytoplasm_Texture_Contrast_BFHigh_5_00_256: double
Cytoplasm_Texture_Contrast_BFHigh_5_01_256: double
Cytoplasm_Texture_Contrast_BFHigh_5_02_256: double
Cytoplasm_Texture_Contrast_BFHigh_5_03_256: double
Cytoplasm_Texture_Contrast_BFLow_10_00_256: double
Cytoplasm_Texture_Contrast_BFLow_10_01_256: double
Cytoplasm_Texture_Contrast_BFLow_10_02_256: double
Cytoplasm_Texture_Contrast_BFLow_10_03_256: double
Cytoplasm_Texture_Contrast_BFLow_3_00_256: double
Cytoplasm_Texture_Contrast_BFLow_3_01_256: double
Cytoplasm_Texture_Contrast_BFLow_3_02_256: double
Cytoplasm_Texture_Contrast_BFLow_3_03_256: double
Cytoplasm_Texture_Contrast_BFLow_5_00_256: double
Cytoplasm_Texture_Contrast_BFLow_5_01_256: double
Cytoplasm_Texture_Contrast_BFLow_5_02_256: double
Cytoplasm_Texture_Contrast_BFLow_5_03_256: double
Cytoplasm_Texture_Contrast_Brightfield_10_00_256: double
Cytoplasm_Texture_Contrast_Brightfield_10_01_256: double
Cytoplasm_Texture_Contrast_Brightfield_10_02_256: double
Cytoplasm_Texture_Contrast_Brightfield_10_03_256: double
Cytoplasm_Texture_Contrast_Brightfield_3_00_256: double
Cytoplasm_Texture_Contrast_Brightfield_3_01_256: double
Cytoplasm_Texture_Contrast_Brightfield_3_02_256: double
Cytoplasm_Texture_Contrast_Brightfield_3_03_256: double
Cytoplasm_Texture_Contrast_Brightfield_5_00_256: double
Cytoplasm_Texture_Contrast_Brightfield_5_01_256: double
Cytoplasm_Texture_Contrast_Brightfield_5_02_256: double
Cytoplasm_Texture_Contrast_Brightfield_5_03_256: double
Cytoplasm_Texture_Contrast_DNA_10_00_256: double
Cytoplasm_Texture_Contrast_DNA_10_01_256: double
Cytoplasm_Texture_Contrast_DNA_10_02_256: double
Cytoplasm_Texture_Contrast_DNA_10_03_256: double
Cytoplasm_Texture_Contrast_DNA_3_00_256: double
Cytoplasm_Texture_Contrast_DNA_3_01_256: double
Cytoplasm_Texture_Contrast_DNA_3_02_256: double
Cytoplasm_Texture_Contrast_DNA_3_03_256: double
Cytoplasm_Texture_Contrast_DNA_5_00_256: double
Cytoplasm_Texture_Contrast_DNA_5_01_256: double
Cytoplasm_Texture_Contrast_DNA_5_02_256: double
Cytoplasm_Texture_Contrast_DNA_5_03_256: double
Cytoplasm_Texture_Contrast_ER_10_00_256: double
Cytoplasm_Texture_Contrast_ER_10_01_256: double
Cytoplasm_Texture_Contrast_ER_10_02_256: double
Cytoplasm_Texture_Contrast_ER_10_03_256: double
Cytoplasm_Texture_Contrast_ER_3_00_256: double
Cytoplasm_Texture_Contrast_ER_3_01_256: double
Cytoplasm_Texture_Contrast_ER_3_02_256: double
Cytoplasm_Texture_Contrast_ER_3_03_256: double
Cytoplasm_Texture_Contrast_ER_5_00_256: double
Cytoplasm_Texture_Contrast_ER_5_01_256: double
Cytoplasm_Texture_Contrast_ER_5_02_256: double
Cytoplasm_Texture_Contrast_ER_5_03_256: double
Cytoplasm_Texture_Contrast_Mito_10_00_256: double
Cytoplasm_Texture_Contrast_Mito_10_01_256: double
Cytoplasm_Texture_Contrast_Mito_10_02_256: double
Cytoplasm_Texture_Contrast_Mito_10_03_256: double
Cytoplasm_Texture_Contrast_Mito_3_00_256: double
Cytoplasm_Texture_Contrast_Mito_3_01_256: double
Cytoplasm_Texture_Contrast_Mito_3_02_256: double
Cytoplasm_Texture_Contrast_Mito_3_03_256: double
Cytoplasm_Texture_Contrast_Mito_5_00_256: double
Cytoplasm_Texture_Contrast_Mito_5_01_256: double
Cytoplasm_Texture_Contrast_Mito_5_02_256: double
Cytoplasm_Texture_Contrast_Mito_5_03_256: double
Cytoplasm_Texture_Contrast_RNA_10_00_256: double
Cytoplasm_Texture_Contrast_RNA_10_01_256: double
Cytoplasm_Texture_Contrast_RNA_10_02_256: double
Cytoplasm_Texture_Contrast_RNA_10_03_256: double
Cytoplasm_Texture_Contrast_RNA_3_00_256: double
Cytoplasm_Texture_Contrast_RNA_3_01_256: double
Cytoplasm_Texture_Contrast_RNA_3_02_256: double
Cytoplasm_Texture_Contrast_RNA_3_03_256: double
Cytoplasm_Texture_Contrast_RNA_5_00_256: double
Cytoplasm_Texture_Contrast_RNA_5_01_256: double
Cytoplasm_Texture_Contrast_RNA_5_02_256: double
Cytoplasm_Texture_Contrast_RNA_5_03_256: double
Cytoplasm_Texture_Correlation_AGP_10_00_256: double
Cytoplasm_Texture_Correlation_AGP_10_01_256: double
Cytoplasm_Texture_Correlation_AGP_10_02_256: double
Cytoplasm_Texture_Correlation_AGP_10_03_256: double
Cytoplasm_Texture_Correlation_AGP_3_00_256: double
Cytoplasm_Texture_Correlation_AGP_3_01_256: double
Cytoplasm_Texture_Correlation_AGP_3_02_256: double
Cytoplasm_Texture_Correlation_AGP_3_03_256: double
Cytoplasm_Texture_Correlation_AGP_5_00_256: double
Cytoplasm_Texture_Correlation_AGP_5_01_256: double
Cytoplasm_Texture_Correlation_AGP_5_02_256: double
Cytoplasm_Texture_Correlation_AGP_5_03_256: double
Cytoplasm_Texture_Correlation_BFHigh_10_00_256: double
Cytoplasm_Texture_Correlation_BFHigh_10_01_256: double
Cytoplasm_Texture_Correlation_BFHigh_10_02_256: double
Cytoplasm_Texture_Correlation_BFHigh_10_03_256: double
Cytoplasm_Texture_Correlation_BFHigh_3_00_256: double
Cytoplasm_Texture_Correlation_BFHigh_3_01_256: double
Cytoplasm_Texture_Correlation_BFHigh_3_02_256: double
Cytoplasm_Texture_Correlation_BFHigh_3_03_256: double
Cytoplasm_Texture_Correlation_BFHigh_5_00_256: double
Cytoplasm_Texture_Correlation_BFHigh_5_01_256: double
Cytoplasm_Texture_Correlation_BFHigh_5_02_256: double
Cytoplasm_Texture_Correlation_BFHigh_5_03_256: double
Cytoplasm_Texture_Correlation_BFLow_10_00_256: double
Cytoplasm_Texture_Correlation_BFLow_10_01_256: double
Cytoplasm_Texture_Correlation_BFLow_10_02_256: double
Cytoplasm_Texture_Correlation_BFLow_10_03_256: double
Cytoplasm_Texture_Correlation_BFLow_3_00_256: double
Cytoplasm_Texture_Correlation_BFLow_3_01_256: double
Cytoplasm_Texture_Correlation_BFLow_3_02_256: double
Cytoplasm_Texture_Correlation_BFLow_3_03_256: double
Cytoplasm_Texture_Correlation_BFLow_5_00_256: double
Cytoplasm_Texture_Correlation_BFLow_5_01_256: double
Cytoplasm_Texture_Correlation_BFLow_5_02_256: double
Cytoplasm_Texture_Correlation_BFLow_5_03_256: double
Cytoplasm_Texture_Correlation_Brightfield_10_00_256: double
Cytoplasm_Texture_Correlation_Brightfield_10_01_256: double
Cytoplasm_Texture_Correlation_Brightfield_10_02_256: double
Cytoplasm_Texture_Correlation_Brightfield_10_03_256: double
Cytoplasm_Texture_Correlation_Brightfield_3_00_256: double
Cytoplasm_Texture_Correlation_Brightfield_3_01_256: double
Cytoplasm_Texture_Correlation_Brightfield_3_02_256: double
Cytoplasm_Texture_Correlation_Brightfield_3_03_256: double
Cytoplasm_Texture_Correlation_Brightfield_5_00_256: double
Cytoplasm_Texture_Correlation_Brightfield_5_01_256: double
Cytoplasm_Texture_Correlation_Brightfield_5_02_256: double
Cytoplasm_Texture_Correlation_Brightfield_5_03_256: double
Cytoplasm_Texture_Correlation_DNA_10_00_256: double
Cytoplasm_Texture_Correlation_DNA_10_01_256: double
Cytoplasm_Texture_Correlation_DNA_10_02_256: double
Cytoplasm_Texture_Correlation_DNA_10_03_256: double
Cytoplasm_Texture_Correlation_DNA_3_00_256: double
Cytoplasm_Texture_Correlation_DNA_3_01_256: double
Cytoplasm_Texture_Correlation_DNA_3_02_256: double
Cytoplasm_Texture_Correlation_DNA_3_03_256: double
Cytoplasm_Texture_Correlation_DNA_5_00_256: double
Cytoplasm_Texture_Correlation_DNA_5_01_256: double
Cytoplasm_Texture_Correlation_DNA_5_02_256: double
Cytoplasm_Texture_Correlation_DNA_5_03_256: double
Cytoplasm_Texture_Correlation_ER_10_00_256: double
Cytoplasm_Texture_Correlation_ER_10_01_256: double
Cytoplasm_Texture_Correlation_ER_10_02_256: double
Cytoplasm_Texture_Correlation_ER_10_03_256: double
Cytoplasm_Texture_Correlation_ER_3_00_256: double
Cytoplasm_Texture_Correlation_ER_3_01_256: double
Cytoplasm_Texture_Correlation_ER_3_02_256: double
Cytoplasm_Texture_Correlation_ER_3_03_256: double
Cytoplasm_Texture_Correlation_ER_5_00_256: double
Cytoplasm_Texture_Correlation_ER_5_01_256: double
Cytoplasm_Texture_Correlation_ER_5_02_256: double
Cytoplasm_Texture_Correlation_ER_5_03_256: double
Cytoplasm_Texture_Correlation_Mito_10_00_256: double
Cytoplasm_Texture_Correlation_Mito_10_01_256: double
Cytoplasm_Texture_Correlation_Mito_10_02_256: double
Cytoplasm_Texture_Correlation_Mito_10_03_256: double
Cytoplasm_Texture_Correlation_Mito_3_00_256: double
Cytoplasm_Texture_Correlation_Mito_3_01_256: double
Cytoplasm_Texture_Correlation_Mito_3_02_256: double
Cytoplasm_Texture_Correlation_Mito_3_03_256: double
Cytoplasm_Texture_Correlation_Mito_5_00_256: double
Cytoplasm_Texture_Correlation_Mito_5_01_256: double
Cytoplasm_Texture_Correlation_Mito_5_02_256: double
Cytoplasm_Texture_Correlation_Mito_5_03_256: double
Cytoplasm_Texture_Correlation_RNA_10_00_256: double
Cytoplasm_Texture_Correlation_RNA_10_01_256: double
Cytoplasm_Texture_Correlation_RNA_10_02_256: double
Cytoplasm_Texture_Correlation_RNA_10_03_256: double
Cytoplasm_Texture_Correlation_RNA_3_00_256: double
Cytoplasm_Texture_Correlation_RNA_3_01_256: double
Cytoplasm_Texture_Correlation_RNA_3_02_256: double
Cytoplasm_Texture_Correlation_RNA_3_03_256: double
Cytoplasm_Texture_Correlation_RNA_5_00_256: double
Cytoplasm_Texture_Correlation_RNA_5_01_256: double
Cytoplasm_Texture_Correlation_RNA_5_02_256: double
Cytoplasm_Texture_Correlation_RNA_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_AGP_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFHigh_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_BFLow_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Brightfield_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_DNA_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_ER_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_Mito_5_03_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_10_00_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_10_01_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_10_02_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_10_03_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_3_00_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_3_01_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_3_02_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_3_03_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_5_00_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_5_01_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_5_02_256: double
Cytoplasm_Texture_DifferenceEntropy_RNA_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_AGP_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFHigh_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_BFLow_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_Brightfield_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_DNA_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_ER_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_ER_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_ER_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_ER_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_ER_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_ER_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_ER_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_ER_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_ER_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_ER_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_ER_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_ER_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_Mito_5_03_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_10_00_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_10_01_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_10_02_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_10_03_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_3_00_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_3_01_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_3_02_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_3_03_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_5_00_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_5_01_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_5_02_256: double
Cytoplasm_Texture_DifferenceVariance_RNA_5_03_256: double
Cytoplasm_Texture_Entropy_AGP_10_00_256: double
Cytoplasm_Texture_Entropy_AGP_10_01_256: double
Cytoplasm_Texture_Entropy_AGP_10_02_256: double
Cytoplasm_Texture_Entropy_AGP_10_03_256: double
Cytoplasm_Texture_Entropy_AGP_3_00_256: double
Cytoplasm_Texture_Entropy_AGP_3_01_256: double
Cytoplasm_Texture_Entropy_AGP_3_02_256: double
Cytoplasm_Texture_Entropy_AGP_3_03_256: double
Cytoplasm_Texture_Entropy_AGP_5_00_256: double
Cytoplasm_Texture_Entropy_AGP_5_01_256: double
Cytoplasm_Texture_Entropy_AGP_5_02_256: double
Cytoplasm_Texture_Entropy_AGP_5_03_256: double
Cytoplasm_Texture_Entropy_BFHigh_10_00_256: double
Cytoplasm_Texture_Entropy_BFHigh_10_01_256: double
Cytoplasm_Texture_Entropy_BFHigh_10_02_256: double
Cytoplasm_Texture_Entropy_BFHigh_10_03_256: double
Cytoplasm_Texture_Entropy_BFHigh_3_00_256: double
Cytoplasm_Texture_Entropy_BFHigh_3_01_256: double
Cytoplasm_Texture_Entropy_BFHigh_3_02_256: double
Cytoplasm_Texture_Entropy_BFHigh_3_03_256: double
Cytoplasm_Texture_Entropy_BFHigh_5_00_256: double
Cytoplasm_Texture_Entropy_BFHigh_5_01_256: double
Cytoplasm_Texture_Entropy_BFHigh_5_02_256: double
Cytoplasm_Texture_Entropy_BFHigh_5_03_256: double
Cytoplasm_Texture_Entropy_BFLow_10_00_256: double
Cytoplasm_Texture_Entropy_BFLow_10_01_256: double
Cytoplasm_Texture_Entropy_BFLow_10_02_256: double
Cytoplasm_Texture_Entropy_BFLow_10_03_256: double
Cytoplasm_Texture_Entropy_BFLow_3_00_256: double
Cytoplasm_Texture_Entropy_BFLow_3_01_256: double
Cytoplasm_Texture_Entropy_BFLow_3_02_256: double
Cytoplasm_Texture_Entropy_BFLow_3_03_256: double
Cytoplasm_Texture_Entropy_BFLow_5_00_256: double
Cytoplasm_Texture_Entropy_BFLow_5_01_256: double
Cytoplasm_Texture_Entropy_BFLow_5_02_256: double
Cytoplasm_Texture_Entropy_BFLow_5_03_256: double
Cytoplasm_Texture_Entropy_Brightfield_10_00_256: double
Cytoplasm_Texture_Entropy_Brightfield_10_01_256: double
Cytoplasm_Texture_Entropy_Brightfield_10_02_256: double
Cytoplasm_Texture_Entropy_Brightfield_10_03_256: double
Cytoplasm_Texture_Entropy_Brightfield_3_00_256: double
Cytoplasm_Texture_Entropy_Brightfield_3_01_256: double
Cytoplasm_Texture_Entropy_Brightfield_3_02_256: double
Cytoplasm_Texture_Entropy_Brightfield_3_03_256: double
Cytoplasm_Texture_Entropy_Brightfield_5_00_256: double
Cytoplasm_Texture_Entropy_Brightfield_5_01_256: double
Cytoplasm_Texture_Entropy_Brightfield_5_02_256: double
Cytoplasm_Texture_Entropy_Brightfield_5_03_256: double
Cytoplasm_Texture_Entropy_DNA_10_00_256: double
Cytoplasm_Texture_Entropy_DNA_10_01_256: double
Cytoplasm_Texture_Entropy_DNA_10_02_256: double
Cytoplasm_Texture_Entropy_DNA_10_03_256: double
Cytoplasm_Texture_Entropy_DNA_3_00_256: double
Cytoplasm_Texture_Entropy_DNA_3_01_256: double
Cytoplasm_Texture_Entropy_DNA_3_02_256: double
Cytoplasm_Texture_Entropy_DNA_3_03_256: double
Cytoplasm_Texture_Entropy_DNA_5_00_256: double
Cytoplasm_Texture_Entropy_DNA_5_01_256: double
Cytoplasm_Texture_Entropy_DNA_5_02_256: double
Cytoplasm_Texture_Entropy_DNA_5_03_256: double
Cytoplasm_Texture_Entropy_ER_10_00_256: double
Cytoplasm_Texture_Entropy_ER_10_01_256: double
Cytoplasm_Texture_Entropy_ER_10_02_256: double
Cytoplasm_Texture_Entropy_ER_10_03_256: double
Cytoplasm_Texture_Entropy_ER_3_00_256: double
Cytoplasm_Texture_Entropy_ER_3_01_256: double
Cytoplasm_Texture_Entropy_ER_3_02_256: double
Cytoplasm_Texture_Entropy_ER_3_03_256: double
Cytoplasm_Texture_Entropy_ER_5_00_256: double
Cytoplasm_Texture_Entropy_ER_5_01_256: double
Cytoplasm_Texture_Entropy_ER_5_02_256: double
Cytoplasm_Texture_Entropy_ER_5_03_256: double
Cytoplasm_Texture_Entropy_Mito_10_00_256: double
Cytoplasm_Texture_Entropy_Mito_10_01_256: double
Cytoplasm_Texture_Entropy_Mito_10_02_256: double
Cytoplasm_Texture_Entropy_Mito_10_03_256: double
Cytoplasm_Texture_Entropy_Mito_3_00_256: double
Cytoplasm_Texture_Entropy_Mito_3_01_256: double
Cytoplasm_Texture_Entropy_Mito_3_02_256: double
Cytoplasm_Texture_Entropy_Mito_3_03_256: double
Cytoplasm_Texture_Entropy_Mito_5_00_256: double
Cytoplasm_Texture_Entropy_Mito_5_01_256: double
Cytoplasm_Texture_Entropy_Mito_5_02_256: double
Cytoplasm_Texture_Entropy_Mito_5_03_256: double
Cytoplasm_Texture_Entropy_RNA_10_00_256: double
Cytoplasm_Texture_Entropy_RNA_10_01_256: double
Cytoplasm_Texture_Entropy_RNA_10_02_256: double
Cytoplasm_Texture_Entropy_RNA_10_03_256: double
Cytoplasm_Texture_Entropy_RNA_3_00_256: double
Cytoplasm_Texture_Entropy_RNA_3_01_256: double
Cytoplasm_Texture_Entropy_RNA_3_02_256: double
Cytoplasm_Texture_Entropy_RNA_3_03_256: double
Cytoplasm_Texture_Entropy_RNA_5_00_256: double
Cytoplasm_Texture_Entropy_RNA_5_01_256: double
Cytoplasm_Texture_Entropy_RNA_5_02_256: double
Cytoplasm_Texture_Entropy_RNA_5_03_256: double
Cytoplasm_Texture_InfoMeas1_AGP_10_00_256: double
Cytoplasm_Texture_InfoMeas1_AGP_10_01_256: double
Cytoplasm_Texture_InfoMeas1_AGP_10_02_256: double
Cytoplasm_Texture_InfoMeas1_AGP_10_03_256: double
Cytoplasm_Texture_InfoMeas1_AGP_3_00_256: double
Cytoplasm_Texture_InfoMeas1_AGP_3_01_256: double
Cytoplasm_Texture_InfoMeas1_AGP_3_02_256: double
Cytoplasm_Texture_InfoMeas1_AGP_3_03_256: double
Cytoplasm_Texture_InfoMeas1_AGP_5_00_256: double
Cytoplasm_Texture_InfoMeas1_AGP_5_01_256: double
Cytoplasm_Texture_InfoMeas1_AGP_5_02_256: double
Cytoplasm_Texture_InfoMeas1_AGP_5_03_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_10_00_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_10_01_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_10_02_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_10_03_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_3_00_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_3_01_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_3_02_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_3_03_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_5_00_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_5_01_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_5_02_256: double
Cytoplasm_Texture_InfoMeas1_BFHigh_5_03_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_10_00_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_10_01_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_10_02_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_10_03_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_3_00_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_3_01_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_3_02_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_3_03_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_5_00_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_5_01_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_5_02_256: double
Cytoplasm_Texture_InfoMeas1_BFLow_5_03_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_10_00_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_10_01_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_10_02_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_10_03_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_3_00_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_3_01_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_3_02_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_3_03_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_5_00_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_5_01_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_5_02_256: double
Cytoplasm_Texture_InfoMeas1_Brightfield_5_03_256: double
Cytoplasm_Texture_InfoMeas1_DNA_10_00_256: double
Cytoplasm_Texture_InfoMeas1_DNA_10_01_256: double
Cytoplasm_Texture_InfoMeas1_DNA_10_02_256: double
Cytoplasm_Texture_InfoMeas1_DNA_10_03_256: double
Cytoplasm_Texture_InfoMeas1_DNA_3_00_256: double
Cytoplasm_Texture_InfoMeas1_DNA_3_01_256: double
Cytoplasm_Texture_InfoMeas1_DNA_3_02_256: double
Cytoplasm_Texture_InfoMeas1_DNA_3_03_256: double
Cytoplasm_Texture_InfoMeas1_DNA_5_00_256: double
Cytoplasm_Texture_InfoMeas1_DNA_5_01_256: double
Cytoplasm_Texture_InfoMeas1_DNA_5_02_256: double
Cytoplasm_Texture_InfoMeas1_DNA_5_03_256: double
Cytoplasm_Texture_InfoMeas1_ER_10_00_256: double
Cytoplasm_Texture_InfoMeas1_ER_10_01_256: double
Cytoplasm_Texture_InfoMeas1_ER_10_02_256: double
Cytoplasm_Texture_InfoMeas1_ER_10_03_256: double
Cytoplasm_Texture_InfoMeas1_ER_3_00_256: double
Cytoplasm_Texture_InfoMeas1_ER_3_01_256: double
Cytoplasm_Texture_InfoMeas1_ER_3_02_256: double
Cytoplasm_Texture_InfoMeas1_ER_3_03_256: double
Cytoplasm_Texture_InfoMeas1_ER_5_00_256: double
Cytoplasm_Texture_InfoMeas1_ER_5_01_256: double
Cytoplasm_Texture_InfoMeas1_ER_5_02_256: double
Cytoplasm_Texture_InfoMeas1_ER_5_03_256: double
Cytoplasm_Texture_InfoMeas1_Mito_10_00_256: double
Cytoplasm_Texture_InfoMeas1_Mito_10_01_256: double
Cytoplasm_Texture_InfoMeas1_Mito_10_02_256: double
Cytoplasm_Texture_InfoMeas1_Mito_10_03_256: double
Cytoplasm_Texture_InfoMeas1_Mito_3_00_256: double
Cytoplasm_Texture_InfoMeas1_Mito_3_01_256: double
Cytoplasm_Texture_InfoMeas1_Mito_3_02_256: double
Cytoplasm_Texture_InfoMeas1_Mito_3_03_256: double
Cytoplasm_Texture_InfoMeas1_Mito_5_00_256: double
Cytoplasm_Texture_InfoMeas1_Mito_5_01_256: double
Cytoplasm_Texture_InfoMeas1_Mito_5_02_256: double
Cytoplasm_Texture_InfoMeas1_Mito_5_03_256: double
Cytoplasm_Texture_InfoMeas1_RNA_10_00_256: double
Cytoplasm_Texture_InfoMeas1_RNA_10_01_256: double
Cytoplasm_Texture_InfoMeas1_RNA_10_02_256: double
Cytoplasm_Texture_InfoMeas1_RNA_10_03_256: double
Cytoplasm_Texture_InfoMeas1_RNA_3_00_256: double
Cytoplasm_Texture_InfoMeas1_RNA_3_01_256: double
Cytoplasm_Texture_InfoMeas1_RNA_3_02_256: double
Cytoplasm_Texture_InfoMeas1_RNA_3_03_256: double
Cytoplasm_Texture_InfoMeas1_RNA_5_00_256: double
Cytoplasm_Texture_InfoMeas1_RNA_5_01_256: double
Cytoplasm_Texture_InfoMeas1_RNA_5_02_256: double
Cytoplasm_Texture_InfoMeas1_RNA_5_03_256: double
Cytoplasm_Texture_InfoMeas2_AGP_10_00_256: double
Cytoplasm_Texture_InfoMeas2_AGP_10_01_256: double
Cytoplasm_Texture_InfoMeas2_AGP_10_02_256: double
Cytoplasm_Texture_InfoMeas2_AGP_10_03_256: double
Cytoplasm_Texture_InfoMeas2_AGP_3_00_256: double
Cytoplasm_Texture_InfoMeas2_AGP_3_01_256: double
Cytoplasm_Texture_InfoMeas2_AGP_3_02_256: double
Cytoplasm_Texture_InfoMeas2_AGP_3_03_256: double
Cytoplasm_Texture_InfoMeas2_AGP_5_00_256: double
Cytoplasm_Texture_InfoMeas2_AGP_5_01_256: double
Cytoplasm_Texture_InfoMeas2_AGP_5_02_256: double
Cytoplasm_Texture_InfoMeas2_AGP_5_03_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_10_00_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_10_01_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_10_02_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_10_03_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_3_00_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_3_01_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_3_02_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_3_03_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_5_00_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_5_01_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_5_02_256: double
Cytoplasm_Texture_InfoMeas2_BFHigh_5_03_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_10_00_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_10_01_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_10_02_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_10_03_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_3_00_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_3_01_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_3_02_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_3_03_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_5_00_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_5_01_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_5_02_256: double
Cytoplasm_Texture_InfoMeas2_BFLow_5_03_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_10_00_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_10_01_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_10_02_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_10_03_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_3_00_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_3_01_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_3_02_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_3_03_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_5_00_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_5_01_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_5_02_256: double
Cytoplasm_Texture_InfoMeas2_Brightfield_5_03_256: double
Cytoplasm_Texture_InfoMeas2_DNA_10_00_256: double
Cytoplasm_Texture_InfoMeas2_DNA_10_01_256: double
Cytoplasm_Texture_InfoMeas2_DNA_10_02_256: double
Cytoplasm_Texture_InfoMeas2_DNA_10_03_256: double
Cytoplasm_Texture_InfoMeas2_DNA_3_00_256: double
Cytoplasm_Texture_InfoMeas2_DNA_3_01_256: double
Cytoplasm_Texture_InfoMeas2_DNA_3_02_256: double
Cytoplasm_Texture_InfoMeas2_DNA_3_03_256: double
Cytoplasm_Texture_InfoMeas2_DNA_5_00_256: double
Cytoplasm_Texture_InfoMeas2_DNA_5_01_256: double
Cytoplasm_Texture_InfoMeas2_DNA_5_02_256: double
Cytoplasm_Texture_InfoMeas2_DNA_5_03_256: double
Cytoplasm_Texture_InfoMeas2_ER_10_00_256: double
Cytoplasm_Texture_InfoMeas2_ER_10_01_256: double
Cytoplasm_Texture_InfoMeas2_ER_10_02_256: double
Cytoplasm_Texture_InfoMeas2_ER_10_03_256: double
Cytoplasm_Texture_InfoMeas2_ER_3_00_256: double
Cytoplasm_Texture_InfoMeas2_ER_3_01_256: double
Cytoplasm_Texture_InfoMeas2_ER_3_02_256: double
Cytoplasm_Texture_InfoMeas2_ER_3_03_256: double
Cytoplasm_Texture_InfoMeas2_ER_5_00_256: double
Cytoplasm_Texture_InfoMeas2_ER_5_01_256: double
Cytoplasm_Texture_InfoMeas2_ER_5_02_256: double
Cytoplasm_Texture_InfoMeas2_ER_5_03_256: double
Cytoplasm_Texture_InfoMeas2_Mito_10_00_256: double
Cytoplasm_Texture_InfoMeas2_Mito_10_01_256: double
Cytoplasm_Texture_InfoMeas2_Mito_10_02_256: double
Cytoplasm_Texture_InfoMeas2_Mito_10_03_256: double
Cytoplasm_Texture_InfoMeas2_Mito_3_00_256: double
Cytoplasm_Texture_InfoMeas2_Mito_3_01_256: double
Cytoplasm_Texture_InfoMeas2_Mito_3_02_256: double
Cytoplasm_Texture_InfoMeas2_Mito_3_03_256: double
Cytoplasm_Texture_InfoMeas2_Mito_5_00_256: double
Cytoplasm_Texture_InfoMeas2_Mito_5_01_256: double
Cytoplasm_Texture_InfoMeas2_Mito_5_02_256: double
Cytoplasm_Texture_InfoMeas2_Mito_5_03_256: double
Cytoplasm_Texture_InfoMeas2_RNA_10_00_256: double
Cytoplasm_Texture_InfoMeas2_RNA_10_01_256: double
Cytoplasm_Texture_InfoMeas2_RNA_10_02_256: double
Cytoplasm_Texture_InfoMeas2_RNA_10_03_256: double
Cytoplasm_Texture_InfoMeas2_RNA_3_00_256: double
Cytoplasm_Texture_InfoMeas2_RNA_3_01_256: double
Cytoplasm_Texture_InfoMeas2_RNA_3_02_256: double
Cytoplasm_Texture_InfoMeas2_RNA_3_03_256: double
Cytoplasm_Texture_InfoMeas2_RNA_5_00_256: double
Cytoplasm_Texture_InfoMeas2_RNA_5_01_256: double
Cytoplasm_Texture_InfoMeas2_RNA_5_02_256: double
Cytoplasm_Texture_InfoMeas2_RNA_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_AGP_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFHigh_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_BFLow_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Brightfield_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_DNA_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_ER_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_Mito_5_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_10_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_10_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_10_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_10_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_3_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_3_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_3_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_3_03_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_5_00_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_5_01_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_5_02_256: double
Cytoplasm_Texture_InverseDifferenceMoment_RNA_5_03_256: double
Cytoplasm_Texture_SumAverage_AGP_10_00_256: double
Cytoplasm_Texture_SumAverage_AGP_10_01_256: double
Cytoplasm_Texture_SumAverage_AGP_10_02_256: double
Cytoplasm_Texture_SumAverage_AGP_10_03_256: double
Cytoplasm_Texture_SumAverage_AGP_3_00_256: double
Cytoplasm_Texture_SumAverage_AGP_3_01_256: double
Cytoplasm_Texture_SumAverage_AGP_3_02_256: double
Cytoplasm_Texture_SumAverage_AGP_3_03_256: double
Cytoplasm_Texture_SumAverage_AGP_5_00_256: double
Cytoplasm_Texture_SumAverage_AGP_5_01_256: double
Cytoplasm_Texture_SumAverage_AGP_5_02_256: double
Cytoplasm_Texture_SumAverage_AGP_5_03_256: double
Cytoplasm_Texture_SumAverage_BFHigh_10_00_256: double
Cytoplasm_Texture_SumAverage_BFHigh_10_01_256: double
Cytoplasm_Texture_SumAverage_BFHigh_10_02_256: double
Cytoplasm_Texture_SumAverage_BFHigh_10_03_256: double
Cytoplasm_Texture_SumAverage_BFHigh_3_00_256: double
Cytoplasm_Texture_SumAverage_BFHigh_3_01_256: double
Cytoplasm_Texture_SumAverage_BFHigh_3_02_256: double
Cytoplasm_Texture_SumAverage_BFHigh_3_03_256: double
Cytoplasm_Texture_SumAverage_BFHigh_5_00_256: double
Cytoplasm_Texture_SumAverage_BFHigh_5_01_256: double
Cytoplasm_Texture_SumAverage_BFHigh_5_02_256: double
Cytoplasm_Texture_SumAverage_BFHigh_5_03_256: double
Cytoplasm_Texture_SumAverage_BFLow_10_00_256: double
Cytoplasm_Texture_SumAverage_BFLow_10_01_256: double
Cytoplasm_Texture_SumAverage_BFLow_10_02_256: double
Cytoplasm_Texture_SumAverage_BFLow_10_03_256: double
Cytoplasm_Texture_SumAverage_BFLow_3_00_256: double
Cytoplasm_Texture_SumAverage_BFLow_3_01_256: double
Cytoplasm_Texture_SumAverage_BFLow_3_02_256: double
Cytoplasm_Texture_SumAverage_BFLow_3_03_256: double
Cytoplasm_Texture_SumAverage_BFLow_5_00_256: double
Cytoplasm_Texture_SumAverage_BFLow_5_01_256: double
Cytoplasm_Texture_SumAverage_BFLow_5_02_256: double
Cytoplasm_Texture_SumAverage_BFLow_5_03_256: double
Cytoplasm_Texture_SumAverage_Brightfield_10_00_256: double
Cytoplasm_Texture_SumAverage_Brightfield_10_01_256: double
Cytoplasm_Texture_SumAverage_Brightfield_10_02_256: double
Cytoplasm_Texture_SumAverage_Brightfield_10_03_256: double
Cytoplasm_Texture_SumAverage_Brightfield_3_00_256: double
Cytoplasm_Texture_SumAverage_Brightfield_3_01_256: double
Cytoplasm_Texture_SumAverage_Brightfield_3_02_256: double
Cytoplasm_Texture_SumAverage_Brightfield_3_03_256: double
Cytoplasm_Texture_SumAverage_Brightfield_5_00_256: double
Cytoplasm_Texture_SumAverage_Brightfield_5_01_256: double
Cytoplasm_Texture_SumAverage_Brightfield_5_02_256: double
Cytoplasm_Texture_SumAverage_Brightfield_5_03_256: double
Cytoplasm_Texture_SumAverage_DNA_10_00_256: double
Cytoplasm_Texture_SumAverage_DNA_10_01_256: double
Cytoplasm_Texture_SumAverage_DNA_10_02_256: double
Cytoplasm_Texture_SumAverage_DNA_10_03_256: double
Cytoplasm_Texture_SumAverage_DNA_3_00_256: double
Cytoplasm_Texture_SumAverage_DNA_3_01_256: double
Cytoplasm_Texture_SumAverage_DNA_3_02_256: double
Cytoplasm_Texture_SumAverage_DNA_3_03_256: double
Cytoplasm_Texture_SumAverage_DNA_5_00_256: double
Cytoplasm_Texture_SumAverage_DNA_5_01_256: double
Cytoplasm_Texture_SumAverage_DNA_5_02_256: double
Cytoplasm_Texture_SumAverage_DNA_5_03_256: double
Cytoplasm_Texture_SumAverage_ER_10_00_256: double
Cytoplasm_Texture_SumAverage_ER_10_01_256: double
Cytoplasm_Texture_SumAverage_ER_10_02_256: double
Cytoplasm_Texture_SumAverage_ER_10_03_256: double
Cytoplasm_Texture_SumAverage_ER_3_00_256: double
Cytoplasm_Texture_SumAverage_ER_3_01_256: double
Cytoplasm_Texture_SumAverage_ER_3_02_256: double
Cytoplasm_Texture_SumAverage_ER_3_03_256: double
Cytoplasm_Texture_SumAverage_ER_5_00_256: double
Cytoplasm_Texture_SumAverage_ER_5_01_256: double
Cytoplasm_Texture_SumAverage_ER_5_02_256: double
Cytoplasm_Texture_SumAverage_ER_5_03_256: double
Cytoplasm_Texture_SumAverage_Mito_10_00_256: double
Cytoplasm_Texture_SumAverage_Mito_10_01_256: double
Cytoplasm_Texture_SumAverage_Mito_10_02_256: double
Cytoplasm_Texture_SumAverage_Mito_10_03_256: double
Cytoplasm_Texture_SumAverage_Mito_3_00_256: double
Cytoplasm_Texture_SumAverage_Mito_3_01_256: double
Cytoplasm_Texture_SumAverage_Mito_3_02_256: double
Cytoplasm_Texture_SumAverage_Mito_3_03_256: double
Cytoplasm_Texture_SumAverage_Mito_5_00_256: double
Cytoplasm_Texture_SumAverage_Mito_5_01_256: double
Cytoplasm_Texture_SumAverage_Mito_5_02_256: double
Cytoplasm_Texture_SumAverage_Mito_5_03_256: double
Cytoplasm_Texture_SumAverage_RNA_10_00_256: double
Cytoplasm_Texture_SumAverage_RNA_10_01_256: double
Cytoplasm_Texture_SumAverage_RNA_10_02_256: double
Cytoplasm_Texture_SumAverage_RNA_10_03_256: double
Cytoplasm_Texture_SumAverage_RNA_3_00_256: double
Cytoplasm_Texture_SumAverage_RNA_3_01_256: double
Cytoplasm_Texture_SumAverage_RNA_3_02_256: double
Cytoplasm_Texture_SumAverage_RNA_3_03_256: double
Cytoplasm_Texture_SumAverage_RNA_5_00_256: double
Cytoplasm_Texture_SumAverage_RNA_5_01_256: double
Cytoplasm_Texture_SumAverage_RNA_5_02_256: double
Cytoplasm_Texture_SumAverage_RNA_5_03_256: double
Cytoplasm_Texture_SumEntropy_AGP_10_00_256: double
Cytoplasm_Texture_SumEntropy_AGP_10_01_256: double
Cytoplasm_Texture_SumEntropy_AGP_10_02_256: double
Cytoplasm_Texture_SumEntropy_AGP_10_03_256: double
Cytoplasm_Texture_SumEntropy_AGP_3_00_256: double
Cytoplasm_Texture_SumEntropy_AGP_3_01_256: double
Cytoplasm_Texture_SumEntropy_AGP_3_02_256: double
Cytoplasm_Texture_SumEntropy_AGP_3_03_256: double
Cytoplasm_Texture_SumEntropy_AGP_5_00_256: double
Cytoplasm_Texture_SumEntropy_AGP_5_01_256: double
Cytoplasm_Texture_SumEntropy_AGP_5_02_256: double
Cytoplasm_Texture_SumEntropy_AGP_5_03_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_10_00_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_10_01_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_10_02_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_10_03_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_3_00_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_3_01_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_3_02_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_3_03_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_5_00_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_5_01_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_5_02_256: double
Cytoplasm_Texture_SumEntropy_BFHigh_5_03_256: double
Cytoplasm_Texture_SumEntropy_BFLow_10_00_256: double
Cytoplasm_Texture_SumEntropy_BFLow_10_01_256: double
Cytoplasm_Texture_SumEntropy_BFLow_10_02_256: double
Cytoplasm_Texture_SumEntropy_BFLow_10_03_256: double
Cytoplasm_Texture_SumEntropy_BFLow_3_00_256: double
Cytoplasm_Texture_SumEntropy_BFLow_3_01_256: double
Cytoplasm_Texture_SumEntropy_BFLow_3_02_256: double
Cytoplasm_Texture_SumEntropy_BFLow_3_03_256: double
Cytoplasm_Texture_SumEntropy_BFLow_5_00_256: double
Cytoplasm_Texture_SumEntropy_BFLow_5_01_256: double
Cytoplasm_Texture_SumEntropy_BFLow_5_02_256: double
Cytoplasm_Texture_SumEntropy_BFLow_5_03_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_10_00_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_10_01_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_10_02_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_10_03_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_3_00_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_3_01_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_3_02_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_3_03_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_5_00_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_5_01_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_5_02_256: double
Cytoplasm_Texture_SumEntropy_Brightfield_5_03_256: double
Cytoplasm_Texture_SumEntropy_DNA_10_00_256: double
Cytoplasm_Texture_SumEntropy_DNA_10_01_256: double
Cytoplasm_Texture_SumEntropy_DNA_10_02_256: double
Cytoplasm_Texture_SumEntropy_DNA_10_03_256: double
Cytoplasm_Texture_SumEntropy_DNA_3_00_256: double
Cytoplasm_Texture_SumEntropy_DNA_3_01_256: double
Cytoplasm_Texture_SumEntropy_DNA_3_02_256: double
Cytoplasm_Texture_SumEntropy_DNA_3_03_256: double
Cytoplasm_Texture_SumEntropy_DNA_5_00_256: double
Cytoplasm_Texture_SumEntropy_DNA_5_01_256: double
Cytoplasm_Texture_SumEntropy_DNA_5_02_256: double
Cytoplasm_Texture_SumEntropy_DNA_5_03_256: double
Cytoplasm_Texture_SumEntropy_ER_10_00_256: double
Cytoplasm_Texture_SumEntropy_ER_10_01_256: double
Cytoplasm_Texture_SumEntropy_ER_10_02_256: double
Cytoplasm_Texture_SumEntropy_ER_10_03_256: double
Cytoplasm_Texture_SumEntropy_ER_3_00_256: double
Cytoplasm_Texture_SumEntropy_ER_3_01_256: double
Cytoplasm_Texture_SumEntropy_ER_3_02_256: double
Cytoplasm_Texture_SumEntropy_ER_3_03_256: double
Cytoplasm_Texture_SumEntropy_ER_5_00_256: double
Cytoplasm_Texture_SumEntropy_ER_5_01_256: double
Cytoplasm_Texture_SumEntropy_ER_5_02_256: double
Cytoplasm_Texture_SumEntropy_ER_5_03_256: double
Cytoplasm_Texture_SumEntropy_Mito_10_00_256: double
Cytoplasm_Texture_SumEntropy_Mito_10_01_256: double
Cytoplasm_Texture_SumEntropy_Mito_10_02_256: double
Cytoplasm_Texture_SumEntropy_Mito_10_03_256: double
Cytoplasm_Texture_SumEntropy_Mito_3_00_256: double
Cytoplasm_Texture_SumEntropy_Mito_3_01_256: double
Cytoplasm_Texture_SumEntropy_Mito_3_02_256: double
Cytoplasm_Texture_SumEntropy_Mito_3_03_256: double
Cytoplasm_Texture_SumEntropy_Mito_5_00_256: double
Cytoplasm_Texture_SumEntropy_Mito_5_01_256: double
Cytoplasm_Texture_SumEntropy_Mito_5_02_256: double
Cytoplasm_Texture_SumEntropy_Mito_5_03_256: double
Cytoplasm_Texture_SumEntropy_RNA_10_00_256: double
Cytoplasm_Texture_SumEntropy_RNA_10_01_256: double
Cytoplasm_Texture_SumEntropy_RNA_10_02_256: double
Cytoplasm_Texture_SumEntropy_RNA_10_03_256: double
Cytoplasm_Texture_SumEntropy_RNA_3_00_256: double
Cytoplasm_Texture_SumEntropy_RNA_3_01_256: double
Cytoplasm_Texture_SumEntropy_RNA_3_02_256: double
Cytoplasm_Texture_SumEntropy_RNA_3_03_256: double
Cytoplasm_Texture_SumEntropy_RNA_5_00_256: double
Cytoplasm_Texture_SumEntropy_RNA_5_01_256: double
Cytoplasm_Texture_SumEntropy_RNA_5_02_256: double
Cytoplasm_Texture_SumEntropy_RNA_5_03_256: double
Cytoplasm_Texture_SumVariance_AGP_10_00_256: double
Cytoplasm_Texture_SumVariance_AGP_10_01_256: double
Cytoplasm_Texture_SumVariance_AGP_10_02_256: double
Cytoplasm_Texture_SumVariance_AGP_10_03_256: double
Cytoplasm_Texture_SumVariance_AGP_3_00_256: double
Cytoplasm_Texture_SumVariance_AGP_3_01_256: double
Cytoplasm_Texture_SumVariance_AGP_3_02_256: double
Cytoplasm_Texture_SumVariance_AGP_3_03_256: double
Cytoplasm_Texture_SumVariance_AGP_5_00_256: double
Cytoplasm_Texture_SumVariance_AGP_5_01_256: double
Cytoplasm_Texture_SumVariance_AGP_5_02_256: double
Cytoplasm_Texture_SumVariance_AGP_5_03_256: double
Cytoplasm_Texture_SumVariance_BFHigh_10_00_256: double
Cytoplasm_Texture_SumVariance_BFHigh_10_01_256: double
Cytoplasm_Texture_SumVariance_BFHigh_10_02_256: double
Cytoplasm_Texture_SumVariance_BFHigh_10_03_256: double
Cytoplasm_Texture_SumVariance_BFHigh_3_00_256: double
Cytoplasm_Texture_SumVariance_BFHigh_3_01_256: double
Cytoplasm_Texture_SumVariance_BFHigh_3_02_256: double
Cytoplasm_Texture_SumVariance_BFHigh_3_03_256: double
Cytoplasm_Texture_SumVariance_BFHigh_5_00_256: double
Cytoplasm_Texture_SumVariance_BFHigh_5_01_256: double
Cytoplasm_Texture_SumVariance_BFHigh_5_02_256: double
Cytoplasm_Texture_SumVariance_BFHigh_5_03_256: double
Cytoplasm_Texture_SumVariance_BFLow_10_00_256: double
Cytoplasm_Texture_SumVariance_BFLow_10_01_256: double
Cytoplasm_Texture_SumVariance_BFLow_10_02_256: double
Cytoplasm_Texture_SumVariance_BFLow_10_03_256: double
Cytoplasm_Texture_SumVariance_BFLow_3_00_256: double
Cytoplasm_Texture_SumVariance_BFLow_3_01_256: double
Cytoplasm_Texture_SumVariance_BFLow_3_02_256: double
Cytoplasm_Texture_SumVariance_BFLow_3_03_256: double
Cytoplasm_Texture_SumVariance_BFLow_5_00_256: double
Cytoplasm_Texture_SumVariance_BFLow_5_01_256: double
Cytoplasm_Texture_SumVariance_BFLow_5_02_256: double
Cytoplasm_Texture_SumVariance_BFLow_5_03_256: double
Cytoplasm_Texture_SumVariance_Brightfield_10_00_256: double
Cytoplasm_Texture_SumVariance_Brightfield_10_01_256: double
Cytoplasm_Texture_SumVariance_Brightfield_10_02_256: double
Cytoplasm_Texture_SumVariance_Brightfield_10_03_256: double
Cytoplasm_Texture_SumVariance_Brightfield_3_00_256: double
Cytoplasm_Texture_SumVariance_Brightfield_3_01_256: double
Cytoplasm_Texture_SumVariance_Brightfield_3_02_256: double
Cytoplasm_Texture_SumVariance_Brightfield_3_03_256: double
Cytoplasm_Texture_SumVariance_Brightfield_5_00_256: double
Cytoplasm_Texture_SumVariance_Brightfield_5_01_256: double
Cytoplasm_Texture_SumVariance_Brightfield_5_02_256: double
Cytoplasm_Texture_SumVariance_Brightfield_5_03_256: double
Cytoplasm_Texture_SumVariance_DNA_10_00_256: double
Cytoplasm_Texture_SumVariance_DNA_10_01_256: double
Cytoplasm_Texture_SumVariance_DNA_10_02_256: double
Cytoplasm_Texture_SumVariance_DNA_10_03_256: double
Cytoplasm_Texture_SumVariance_DNA_3_00_256: double
Cytoplasm_Texture_SumVariance_DNA_3_01_256: double
Cytoplasm_Texture_SumVariance_DNA_3_02_256: double
Cytoplasm_Texture_SumVariance_DNA_3_03_256: double
Cytoplasm_Texture_SumVariance_DNA_5_00_256: double
Cytoplasm_Texture_SumVariance_DNA_5_01_256: double
Cytoplasm_Texture_SumVariance_DNA_5_02_256: double
Cytoplasm_Texture_SumVariance_DNA_5_03_256: double
Cytoplasm_Texture_SumVariance_ER_10_00_256: double
Cytoplasm_Texture_SumVariance_ER_10_01_256: double
Cytoplasm_Texture_SumVariance_ER_10_02_256: double
Cytoplasm_Texture_SumVariance_ER_10_03_256: double
Cytoplasm_Texture_SumVariance_ER_3_00_256: double
Cytoplasm_Texture_SumVariance_ER_3_01_256: double
Cytoplasm_Texture_SumVariance_ER_3_02_256: double
Cytoplasm_Texture_SumVariance_ER_3_03_256: double
Cytoplasm_Texture_SumVariance_ER_5_00_256: double
Cytoplasm_Texture_SumVariance_ER_5_01_256: double
Cytoplasm_Texture_SumVariance_ER_5_02_256: double
Cytoplasm_Texture_SumVariance_ER_5_03_256: double
Cytoplasm_Texture_SumVariance_Mito_10_00_256: double
Cytoplasm_Texture_SumVariance_Mito_10_01_256: double
Cytoplasm_Texture_SumVariance_Mito_10_02_256: double
Cytoplasm_Texture_SumVariance_Mito_10_03_256: double
Cytoplasm_Texture_SumVariance_Mito_3_00_256: double
Cytoplasm_Texture_SumVariance_Mito_3_01_256: double
Cytoplasm_Texture_SumVariance_Mito_3_02_256: double
Cytoplasm_Texture_SumVariance_Mito_3_03_256: double
Cytoplasm_Texture_SumVariance_Mito_5_00_256: double
Cytoplasm_Texture_SumVariance_Mito_5_01_256: double
Cytoplasm_Texture_SumVariance_Mito_5_02_256: double
Cytoplasm_Texture_SumVariance_Mito_5_03_256: double
Cytoplasm_Texture_SumVariance_RNA_10_00_256: double
Cytoplasm_Texture_SumVariance_RNA_10_01_256: double
Cytoplasm_Texture_SumVariance_RNA_10_02_256: double
Cytoplasm_Texture_SumVariance_RNA_10_03_256: double
Cytoplasm_Texture_SumVariance_RNA_3_00_256: double
Cytoplasm_Texture_SumVariance_RNA_3_01_256: double
Cytoplasm_Texture_SumVariance_RNA_3_02_256: double
Cytoplasm_Texture_SumVariance_RNA_3_03_256: double
Cytoplasm_Texture_SumVariance_RNA_5_00_256: double
Cytoplasm_Texture_SumVariance_RNA_5_01_256: double
Cytoplasm_Texture_SumVariance_RNA_5_02_256: double
Cytoplasm_Texture_SumVariance_RNA_5_03_256: double
Cytoplasm_Texture_Variance_AGP_10_00_256: double
Cytoplasm_Texture_Variance_AGP_10_01_256: double
Cytoplasm_Texture_Variance_AGP_10_02_256: double
Cytoplasm_Texture_Variance_AGP_10_03_256: double
Cytoplasm_Texture_Variance_AGP_3_00_256: double
Cytoplasm_Texture_Variance_AGP_3_01_256: double
Cytoplasm_Texture_Variance_AGP_3_02_256: double
Cytoplasm_Texture_Variance_AGP_3_03_256: double
Cytoplasm_Texture_Variance_AGP_5_00_256: double
Cytoplasm_Texture_Variance_AGP_5_01_256: double
Cytoplasm_Texture_Variance_AGP_5_02_256: double
Cytoplasm_Texture_Variance_AGP_5_03_256: double
Cytoplasm_Texture_Variance_BFHigh_10_00_256: double
Cytoplasm_Texture_Variance_BFHigh_10_01_256: double
Cytoplasm_Texture_Variance_BFHigh_10_02_256: double
Cytoplasm_Texture_Variance_BFHigh_10_03_256: double
Cytoplasm_Texture_Variance_BFHigh_3_00_256: double
Cytoplasm_Texture_Variance_BFHigh_3_01_256: double
Cytoplasm_Texture_Variance_BFHigh_3_02_256: double
Cytoplasm_Texture_Variance_BFHigh_3_03_256: double
Cytoplasm_Texture_Variance_BFHigh_5_00_256: double
Cytoplasm_Texture_Variance_BFHigh_5_01_256: double
Cytoplasm_Texture_Variance_BFHigh_5_02_256: double
Cytoplasm_Texture_Variance_BFHigh_5_03_256: double
Cytoplasm_Texture_Variance_BFLow_10_00_256: double
Cytoplasm_Texture_Variance_BFLow_10_01_256: double
Cytoplasm_Texture_Variance_BFLow_10_02_256: double
Cytoplasm_Texture_Variance_BFLow_10_03_256: double
Cytoplasm_Texture_Variance_BFLow_3_00_256: double
Cytoplasm_Texture_Variance_BFLow_3_01_256: double
Cytoplasm_Texture_Variance_BFLow_3_02_256: double
Cytoplasm_Texture_Variance_BFLow_3_03_256: double
Cytoplasm_Texture_Variance_BFLow_5_00_256: double
Cytoplasm_Texture_Variance_BFLow_5_01_256: double
Cytoplasm_Texture_Variance_BFLow_5_02_256: double
Cytoplasm_Texture_Variance_BFLow_5_03_256: double
Cytoplasm_Texture_Variance_Brightfield_10_00_256: double
Cytoplasm_Texture_Variance_Brightfield_10_01_256: double
Cytoplasm_Texture_Variance_Brightfield_10_02_256: double
Cytoplasm_Texture_Variance_Brightfield_10_03_256: double
Cytoplasm_Texture_Variance_Brightfield_3_00_256: double
Cytoplasm_Texture_Variance_Brightfield_3_01_256: double
Cytoplasm_Texture_Variance_Brightfield_3_02_256: double
Cytoplasm_Texture_Variance_Brightfield_3_03_256: double
Cytoplasm_Texture_Variance_Brightfield_5_00_256: double
Cytoplasm_Texture_Variance_Brightfield_5_01_256: double
Cytoplasm_Texture_Variance_Brightfield_5_02_256: double
Cytoplasm_Texture_Variance_Brightfield_5_03_256: double
Cytoplasm_Texture_Variance_DNA_10_00_256: double
Cytoplasm_Texture_Variance_DNA_10_01_256: double
Cytoplasm_Texture_Variance_DNA_10_02_256: double
Cytoplasm_Texture_Variance_DNA_10_03_256: double
Cytoplasm_Texture_Variance_DNA_3_00_256: double
Cytoplasm_Texture_Variance_DNA_3_01_256: double
Cytoplasm_Texture_Variance_DNA_3_02_256: double
Cytoplasm_Texture_Variance_DNA_3_03_256: double
Cytoplasm_Texture_Variance_DNA_5_00_256: double
Cytoplasm_Texture_Variance_DNA_5_01_256: double
Cytoplasm_Texture_Variance_DNA_5_02_256: double
Cytoplasm_Texture_Variance_DNA_5_03_256: double
Cytoplasm_Texture_Variance_ER_10_00_256: double
Cytoplasm_Texture_Variance_ER_10_01_256: double
Cytoplasm_Texture_Variance_ER_10_02_256: double
Cytoplasm_Texture_Variance_ER_10_03_256: double
Cytoplasm_Texture_Variance_ER_3_00_256: double
Cytoplasm_Texture_Variance_ER_3_01_256: double
Cytoplasm_Texture_Variance_ER_3_02_256: double
Cytoplasm_Texture_Variance_ER_3_03_256: double
Cytoplasm_Texture_Variance_ER_5_00_256: double
Cytoplasm_Texture_Variance_ER_5_01_256: double
Cytoplasm_Texture_Variance_ER_5_02_256: double
Cytoplasm_Texture_Variance_ER_5_03_256: double
Cytoplasm_Texture_Variance_Mito_10_00_256: double
Cytoplasm_Texture_Variance_Mito_10_01_256: double
Cytoplasm_Texture_Variance_Mito_10_02_256: double
Cytoplasm_Texture_Variance_Mito_10_03_256: double
Cytoplasm_Texture_Variance_Mito_3_00_256: double
Cytoplasm_Texture_Variance_Mito_3_01_256: double
Cytoplasm_Texture_Variance_Mito_3_02_256: double
Cytoplasm_Texture_Variance_Mito_3_03_256: double
Cytoplasm_Texture_Variance_Mito_5_00_256: double
Cytoplasm_Texture_Variance_Mito_5_01_256: double
Cytoplasm_Texture_Variance_Mito_5_02_256: double
Cytoplasm_Texture_Variance_Mito_5_03_256: double
Cytoplasm_Texture_Variance_RNA_10_00_256: double
Cytoplasm_Texture_Variance_RNA_10_01_256: double
Cytoplasm_Texture_Variance_RNA_10_02_256: double
Cytoplasm_Texture_Variance_RNA_10_03_256: double
Cytoplasm_Texture_Variance_RNA_3_00_256: double
Cytoplasm_Texture_Variance_RNA_3_01_256: double
Cytoplasm_Texture_Variance_RNA_3_02_256: double
Cytoplasm_Texture_Variance_RNA_3_03_256: double
Cytoplasm_Texture_Variance_RNA_5_00_256: double
Cytoplasm_Texture_Variance_RNA_5_01_256: double
Cytoplasm_Texture_Variance_RNA_5_02_256: double
Cytoplasm_Texture_Variance_RNA_5_03_256: double
Cells_AreaShape_Area: int64
Cells_AreaShape_BoundingBoxArea: int64
Cells_AreaShape_BoundingBoxMaximum_X: int64
Cells_AreaShape_BoundingBoxMaximum_Y: int64
Cells_AreaShape_BoundingBoxMinimum_X: int64
Cells_AreaShape_BoundingBoxMinimum_Y: int64
Cells_AreaShape_Center_X: double
Cells_AreaShape_Center_Y: double
Cells_AreaShape_Compactness: double
Cells_AreaShape_Eccentricity: double
Cells_AreaShape_EquivalentDiameter: double
Cells_AreaShape_EulerNumber: int64
Cells_AreaShape_Extent: double
Cells_AreaShape_FormFactor: double
Cells_AreaShape_MajorAxisLength: double
Cells_AreaShape_MaxFeretDiameter: double
Cells_AreaShape_MaximumRadius: double
Cells_AreaShape_MeanRadius: double
Cells_AreaShape_MedianRadius: double
Cells_AreaShape_MinFeretDiameter: double
Cells_AreaShape_MinorAxisLength: double
Cells_AreaShape_Orientation: double
Cells_AreaShape_Perimeter: double
Cells_AreaShape_Solidity: double
Cells_AreaShape_Zernike_0_0: double
Cells_AreaShape_Zernike_1_1: double
Cells_AreaShape_Zernike_2_0: double
Cells_AreaShape_Zernike_2_2: double
Cells_AreaShape_Zernike_3_1: double
Cells_AreaShape_Zernike_3_3: double
Cells_AreaShape_Zernike_4_0: double
Cells_AreaShape_Zernike_4_2: double
Cells_AreaShape_Zernike_4_4: double
Cells_AreaShape_Zernike_5_1: double
Cells_AreaShape_Zernike_5_3: double
Cells_AreaShape_Zernike_5_5: double
Cells_AreaShape_Zernike_6_0: double
Cells_AreaShape_Zernike_6_2: double
Cells_AreaShape_Zernike_6_4: double
Cells_AreaShape_Zernike_6_6: double
Cells_AreaShape_Zernike_7_1: double
Cells_AreaShape_Zernike_7_3: double
Cells_AreaShape_Zernike_7_5: double
Cells_AreaShape_Zernike_7_7: double
Cells_AreaShape_Zernike_8_0: double
Cells_AreaShape_Zernike_8_2: double
Cells_AreaShape_Zernike_8_4: double
Cells_AreaShape_Zernike_8_6: double
Cells_AreaShape_Zernike_8_8: double
Cells_AreaShape_Zernike_9_1: double
Cells_AreaShape_Zernike_9_3: double
Cells_AreaShape_Zernike_9_5: double
Cells_AreaShape_Zernike_9_7: double
Cells_AreaShape_Zernike_9_9: double
Cells_Children_Cytoplasm_Count: int64
Cells_Correlation_Correlation_AGP_BFHigh: double
Cells_Correlation_Correlation_AGP_BFLow: double
Cells_Correlation_Correlation_AGP_Brightfield: double
Cells_Correlation_Correlation_AGP_DNA: double
Cells_Correlation_Correlation_AGP_ER: double
Cells_Correlation_Correlation_AGP_Mito: double
Cells_Correlation_Correlation_AGP_RNA: double
Cells_Correlation_Correlation_BFHigh_BFLow: double
Cells_Correlation_Correlation_BFHigh_Brightfield: double
Cells_Correlation_Correlation_BFHigh_DNA: double
Cells_Correlation_Correlation_BFHigh_ER: double
Cells_Correlation_Correlation_BFHigh_Mito: double
Cells_Correlation_Correlation_BFHigh_RNA: double
Cells_Correlation_Correlation_BFLow_Brightfield: double
Cells_Correlation_Correlation_BFLow_DNA: double
Cells_Correlation_Correlation_BFLow_ER: double
Cells_Correlation_Correlation_BFLow_Mito: double
Cells_Correlation_Correlation_BFLow_RNA: double
Cells_Correlation_Correlation_Brightfield_DNA: double
Cells_Correlation_Correlation_Brightfield_ER: double
Cells_Correlation_Correlation_Brightfield_Mito: double
Cells_Correlation_Correlation_Brightfield_RNA: double
Cells_Correlation_Correlation_DNA_ER: double
Cells_Correlation_Correlation_DNA_Mito: double
Cells_Correlation_Correlation_DNA_RNA: double
Cells_Correlation_Correlation_ER_Mito: double
Cells_Correlation_Correlation_ER_RNA: double
Cells_Correlation_Correlation_Mito_RNA: double
Cells_Correlation_K_AGP_BFHigh: double
Cells_Correlation_K_AGP_BFLow: double
Cells_Correlation_K_AGP_Brightfield: double
Cells_Correlation_K_AGP_DNA: double
Cells_Correlation_K_AGP_ER: double
Cells_Correlation_K_AGP_Mito: double
Cells_Correlation_K_AGP_RNA: double
Cells_Correlation_K_BFHigh_AGP: double
Cells_Correlation_K_BFHigh_BFLow: double
Cells_Correlation_K_BFHigh_Brightfield: double
Cells_Correlation_K_BFHigh_DNA: double
Cells_Correlation_K_BFHigh_ER: double
Cells_Correlation_K_BFHigh_Mito: double
Cells_Correlation_K_BFHigh_RNA: double
Cells_Correlation_K_BFLow_AGP: double
Cells_Correlation_K_BFLow_BFHigh: double
Cells_Correlation_K_BFLow_Brightfield: double
Cells_Correlation_K_BFLow_DNA: double
Cells_Correlation_K_BFLow_ER: double
Cells_Correlation_K_BFLow_Mito: double
Cells_Correlation_K_BFLow_RNA: double
Cells_Correlation_K_Brightfield_AGP: double
Cells_Correlation_K_Brightfield_BFHigh: double
Cells_Correlation_K_Brightfield_BFLow: double
Cells_Correlation_K_Brightfield_DNA: double
Cells_Correlation_K_Brightfield_ER: double
Cells_Correlation_K_Brightfield_Mito: double
Cells_Correlation_K_Brightfield_RNA: double
Cells_Correlation_K_DNA_AGP: double
Cells_Correlation_K_DNA_BFHigh: double
Cells_Correlation_K_DNA_BFLow: double
Cells_Correlation_K_DNA_Brightfield: double
Cells_Correlation_K_DNA_ER: double
Cells_Correlation_K_DNA_Mito: double
Cells_Correlation_K_DNA_RNA: double
Cells_Correlation_K_ER_AGP: double
Cells_Correlation_K_ER_BFHigh: double
Cells_Correlation_K_ER_BFLow: double
Cells_Correlation_K_ER_Brightfield: double
Cells_Correlation_K_ER_DNA: double
Cells_Correlation_K_ER_Mito: double
Cells_Correlation_K_ER_RNA: double
Cells_Correlation_K_Mito_AGP: double
Cells_Correlation_K_Mito_BFHigh: double
Cells_Correlation_K_Mito_BFLow: double
Cells_Correlation_K_Mito_Brightfield: double
Cells_Correlation_K_Mito_DNA: double
Cells_Correlation_K_Mito_ER: double
Cells_Correlation_K_Mito_RNA: double
Cells_Correlation_K_RNA_AGP: double
Cells_Correlation_K_RNA_BFHigh: double
Cells_Correlation_K_RNA_BFLow: double
Cells_Correlation_K_RNA_Brightfield: double
Cells_Correlation_K_RNA_DNA: double
Cells_Correlation_K_RNA_ER: double
Cells_Correlation_K_RNA_Mito: double
Cells_Correlation_Manders_AGP_BFHigh: double
Cells_Correlation_Manders_AGP_BFLow: double
Cells_Correlation_Manders_AGP_Brightfield: double
Cells_Correlation_Manders_AGP_DNA: double
Cells_Correlation_Manders_AGP_ER: double
Cells_Correlation_Manders_AGP_Mito: double
Cells_Correlation_Manders_AGP_RNA: double
Cells_Correlation_Manders_BFHigh_AGP: double
Cells_Correlation_Manders_BFHigh_BFLow: double
Cells_Correlation_Manders_BFHigh_Brightfield: double
Cells_Correlation_Manders_BFHigh_DNA: double
Cells_Correlation_Manders_BFHigh_ER: double
Cells_Correlation_Manders_BFHigh_Mito: double
Cells_Correlation_Manders_BFHigh_RNA: double
Cells_Correlation_Manders_BFLow_AGP: double
Cells_Correlation_Manders_BFLow_BFHigh: double
Cells_Correlation_Manders_BFLow_Brightfield: double
Cells_Correlation_Manders_BFLow_DNA: double
Cells_Correlation_Manders_BFLow_ER: double
Cells_Correlation_Manders_BFLow_Mito: double
Cells_Correlation_Manders_BFLow_RNA: double
Cells_Correlation_Manders_Brightfield_AGP: double
Cells_Correlation_Manders_Brightfield_BFHigh: double
Cells_Correlation_Manders_Brightfield_BFLow: double
Cells_Correlation_Manders_Brightfield_DNA: double
Cells_Correlation_Manders_Brightfield_ER: double
Cells_Correlation_Manders_Brightfield_Mito: double
Cells_Correlation_Manders_Brightfield_RNA: double
Cells_Correlation_Manders_DNA_AGP: double
Cells_Correlation_Manders_DNA_BFHigh: double
Cells_Correlation_Manders_DNA_BFLow: double
Cells_Correlation_Manders_DNA_Brightfield: double
Cells_Correlation_Manders_DNA_ER: double
Cells_Correlation_Manders_DNA_Mito: double
Cells_Correlation_Manders_DNA_RNA: double
Cells_Correlation_Manders_ER_AGP: double
Cells_Correlation_Manders_ER_BFHigh: double
Cells_Correlation_Manders_ER_BFLow: double
Cells_Correlation_Manders_ER_Brightfield: double
Cells_Correlation_Manders_ER_DNA: double
Cells_Correlation_Manders_ER_Mito: double
Cells_Correlation_Manders_ER_RNA: double
Cells_Correlation_Manders_Mito_AGP: double
Cells_Correlation_Manders_Mito_BFHigh: double
Cells_Correlation_Manders_Mito_BFLow: double
Cells_Correlation_Manders_Mito_Brightfield: double
Cells_Correlation_Manders_Mito_DNA: double
Cells_Correlation_Manders_Mito_ER: double
Cells_Correlation_Manders_Mito_RNA: double
Cells_Correlation_Manders_RNA_AGP: double
Cells_Correlation_Manders_RNA_BFHigh: double
Cells_Correlation_Manders_RNA_BFLow: double
Cells_Correlation_Manders_RNA_Brightfield: double
Cells_Correlation_Manders_RNA_DNA: double
Cells_Correlation_Manders_RNA_ER: double
Cells_Correlation_Manders_RNA_Mito: double
Cells_Correlation_Overlap_AGP_BFHigh: double
Cells_Correlation_Overlap_AGP_BFLow: double
Cells_Correlation_Overlap_AGP_Brightfield: double
Cells_Correlation_Overlap_AGP_DNA: double
Cells_Correlation_Overlap_AGP_ER: double
Cells_Correlation_Overlap_AGP_Mito: double
Cells_Correlation_Overlap_AGP_RNA: double
Cells_Correlation_Overlap_BFHigh_BFLow: double
Cells_Correlation_Overlap_BFHigh_Brightfield: double
Cells_Correlation_Overlap_BFHigh_DNA: double
Cells_Correlation_Overlap_BFHigh_ER: double
Cells_Correlation_Overlap_BFHigh_Mito: double
Cells_Correlation_Overlap_BFHigh_RNA: double
Cells_Correlation_Overlap_BFLow_Brightfield: double
Cells_Correlation_Overlap_BFLow_DNA: double
Cells_Correlation_Overlap_BFLow_ER: double
Cells_Correlation_Overlap_BFLow_Mito: double
Cells_Correlation_Overlap_BFLow_RNA: double
Cells_Correlation_Overlap_Brightfield_DNA: double
Cells_Correlation_Overlap_Brightfield_ER: double
Cells_Correlation_Overlap_Brightfield_Mito: double
Cells_Correlation_Overlap_Brightfield_RNA: double
Cells_Correlation_Overlap_DNA_ER: double
Cells_Correlation_Overlap_DNA_Mito: double
Cells_Correlation_Overlap_DNA_RNA: double
Cells_Correlation_Overlap_ER_Mito: double
Cells_Correlation_Overlap_ER_RNA: double
Cells_Correlation_Overlap_Mito_RNA: double
Cells_Correlation_RWC_AGP_BFHigh: double
Cells_Correlation_RWC_AGP_BFLow: double
Cells_Correlation_RWC_AGP_Brightfield: double
Cells_Correlation_RWC_AGP_DNA: double
Cells_Correlation_RWC_AGP_ER: double
Cells_Correlation_RWC_AGP_Mito: double
Cells_Correlation_RWC_AGP_RNA: double
Cells_Correlation_RWC_BFHigh_AGP: double
Cells_Correlation_RWC_BFHigh_BFLow: double
Cells_Correlation_RWC_BFHigh_Brightfield: double
Cells_Correlation_RWC_BFHigh_DNA: double
Cells_Correlation_RWC_BFHigh_ER: double
Cells_Correlation_RWC_BFHigh_Mito: double
Cells_Correlation_RWC_BFHigh_RNA: double
Cells_Correlation_RWC_BFLow_AGP: double
Cells_Correlation_RWC_BFLow_BFHigh: double
Cells_Correlation_RWC_BFLow_Brightfield: double
Cells_Correlation_RWC_BFLow_DNA: double
Cells_Correlation_RWC_BFLow_ER: double
Cells_Correlation_RWC_BFLow_Mito: double
Cells_Correlation_RWC_BFLow_RNA: double
Cells_Correlation_RWC_Brightfield_AGP: double
Cells_Correlation_RWC_Brightfield_BFHigh: double
Cells_Correlation_RWC_Brightfield_BFLow: double
Cells_Correlation_RWC_Brightfield_DNA: double
Cells_Correlation_RWC_Brightfield_ER: double
Cells_Correlation_RWC_Brightfield_Mito: double
Cells_Correlation_RWC_Brightfield_RNA: double
Cells_Correlation_RWC_DNA_AGP: double
Cells_Correlation_RWC_DNA_BFHigh: double
Cells_Correlation_RWC_DNA_BFLow: double
Cells_Correlation_RWC_DNA_Brightfield: double
Cells_Correlation_RWC_DNA_ER: double
Cells_Correlation_RWC_DNA_Mito: double
Cells_Correlation_RWC_DNA_RNA: double
Cells_Correlation_RWC_ER_AGP: double
Cells_Correlation_RWC_ER_BFHigh: double
Cells_Correlation_RWC_ER_BFLow: double
Cells_Correlation_RWC_ER_Brightfield: double
Cells_Correlation_RWC_ER_DNA: double
Cells_Correlation_RWC_ER_Mito: double
Cells_Correlation_RWC_ER_RNA: double
Cells_Correlation_RWC_Mito_AGP: double
Cells_Correlation_RWC_Mito_BFHigh: double
Cells_Correlation_RWC_Mito_BFLow: double
Cells_Correlation_RWC_Mito_Brightfield: double
Cells_Correlation_RWC_Mito_DNA: double
Cells_Correlation_RWC_Mito_ER: double
Cells_Correlation_RWC_Mito_RNA: double
Cells_Correlation_RWC_RNA_AGP: double
Cells_Correlation_RWC_RNA_BFHigh: double
Cells_Correlation_RWC_RNA_BFLow: double
Cells_Correlation_RWC_RNA_Brightfield: double
Cells_Correlation_RWC_RNA_DNA: double
Cells_Correlation_RWC_RNA_ER: double
Cells_Correlation_RWC_RNA_Mito: double
Cells_Granularity_10_AGP: double
Cells_Granularity_10_BFHigh: double
Cells_Granularity_10_BFLow: double
Cells_Granularity_10_Brightfield: double
Cells_Granularity_10_DNA: double
Cells_Granularity_10_ER: double
Cells_Granularity_10_Mito: double
Cells_Granularity_10_RNA: double
Cells_Granularity_11_AGP: double
Cells_Granularity_11_BFHigh: double
Cells_Granularity_11_BFLow: double
Cells_Granularity_11_Brightfield: double
Cells_Granularity_11_DNA: double
Cells_Granularity_11_ER: double
Cells_Granularity_11_Mito: double
Cells_Granularity_11_RNA: double
Cells_Granularity_12_AGP: double
Cells_Granularity_12_BFHigh: double
Cells_Granularity_12_BFLow: double
Cells_Granularity_12_Brightfield: double
Cells_Granularity_12_DNA: double
Cells_Granularity_12_ER: double
Cells_Granularity_12_Mito: double
Cells_Granularity_12_RNA: double
Cells_Granularity_13_AGP: double
Cells_Granularity_13_BFHigh: double
Cells_Granularity_13_BFLow: double
Cells_Granularity_13_Brightfield: double
Cells_Granularity_13_DNA: double
Cells_Granularity_13_ER: double
Cells_Granularity_13_Mito: double
Cells_Granularity_13_RNA: double
Cells_Granularity_14_AGP: double
Cells_Granularity_14_BFHigh: double
Cells_Granularity_14_BFLow: double
Cells_Granularity_14_Brightfield: double
Cells_Granularity_14_DNA: double
Cells_Granularity_14_ER: double
Cells_Granularity_14_Mito: double
Cells_Granularity_14_RNA: double
Cells_Granularity_15_AGP: double
Cells_Granularity_15_BFHigh: double
Cells_Granularity_15_BFLow: double
Cells_Granularity_15_Brightfield: double
Cells_Granularity_15_DNA: double
Cells_Granularity_15_ER: double
Cells_Granularity_15_Mito: double
Cells_Granularity_15_RNA: double
Cells_Granularity_16_AGP: double
Cells_Granularity_16_BFHigh: double
Cells_Granularity_16_BFLow: double
Cells_Granularity_16_Brightfield: double
Cells_Granularity_16_DNA: double
Cells_Granularity_16_ER: double
Cells_Granularity_16_Mito: double
Cells_Granularity_16_RNA: double
Cells_Granularity_1_AGP: double
Cells_Granularity_1_BFHigh: double
Cells_Granularity_1_BFLow: double
Cells_Granularity_1_Brightfield: double
Cells_Granularity_1_DNA: double
Cells_Granularity_1_ER: double
Cells_Granularity_1_Mito: double
Cells_Granularity_1_RNA: double
Cells_Granularity_2_AGP: double
Cells_Granularity_2_BFHigh: double
Cells_Granularity_2_BFLow: double
Cells_Granularity_2_Brightfield: double
Cells_Granularity_2_DNA: double
Cells_Granularity_2_ER: double
Cells_Granularity_2_Mito: double
Cells_Granularity_2_RNA: double
Cells_Granularity_3_AGP: double
Cells_Granularity_3_BFHigh: double
Cells_Granularity_3_BFLow: double
Cells_Granularity_3_Brightfield: double
Cells_Granularity_3_DNA: double
Cells_Granularity_3_ER: double
Cells_Granularity_3_Mito: double
Cells_Granularity_3_RNA: double
Cells_Granularity_4_AGP: double
Cells_Granularity_4_BFHigh: double
Cells_Granularity_4_BFLow: double
Cells_Granularity_4_Brightfield: double
Cells_Granularity_4_DNA: double
Cells_Granularity_4_ER: double
Cells_Granularity_4_Mito: double
Cells_Granularity_4_RNA: double
Cells_Granularity_5_AGP: double
Cells_Granularity_5_BFHigh: double
Cells_Granularity_5_BFLow: double
Cells_Granularity_5_Brightfield: double
Cells_Granularity_5_DNA: double
Cells_Granularity_5_ER: double
Cells_Granularity_5_Mito: double
Cells_Granularity_5_RNA: double
Cells_Granularity_6_AGP: double
Cells_Granularity_6_BFHigh: double
Cells_Granularity_6_BFLow: double
Cells_Granularity_6_Brightfield: double
Cells_Granularity_6_DNA: double
Cells_Granularity_6_ER: double
Cells_Granularity_6_Mito: double
Cells_Granularity_6_RNA: double
Cells_Granularity_7_AGP: double
Cells_Granularity_7_BFHigh: double
Cells_Granularity_7_BFLow: double
Cells_Granularity_7_Brightfield: double
Cells_Granularity_7_DNA: double
Cells_Granularity_7_ER: double
Cells_Granularity_7_Mito: double
Cells_Granularity_7_RNA: double
Cells_Granularity_8_AGP: double
Cells_Granularity_8_BFHigh: double
Cells_Granularity_8_BFLow: double
Cells_Granularity_8_Brightfield: double
Cells_Granularity_8_DNA: double
Cells_Granularity_8_ER: double
Cells_Granularity_8_Mito: double
Cells_Granularity_8_RNA: double
Cells_Granularity_9_AGP: double
Cells_Granularity_9_BFHigh: double
Cells_Granularity_9_BFLow: double
Cells_Granularity_9_Brightfield: double
Cells_Granularity_9_DNA: double
Cells_Granularity_9_ER: double
Cells_Granularity_9_Mito: double
Cells_Granularity_9_RNA: double
Cells_Intensity_IntegratedIntensityEdge_AGP: double
Cells_Intensity_IntegratedIntensityEdge_BFHigh: double
Cells_Intensity_IntegratedIntensityEdge_BFLow: double
Cells_Intensity_IntegratedIntensityEdge_Brightfield: double
Cells_Intensity_IntegratedIntensityEdge_DNA: double
Cells_Intensity_IntegratedIntensityEdge_ER: double
Cells_Intensity_IntegratedIntensityEdge_Mito: double
Cells_Intensity_IntegratedIntensityEdge_RNA: double
Cells_Intensity_IntegratedIntensity_AGP: double
Cells_Intensity_IntegratedIntensity_BFHigh: double
Cells_Intensity_IntegratedIntensity_BFLow: double
Cells_Intensity_IntegratedIntensity_Brightfield: double
Cells_Intensity_IntegratedIntensity_DNA: double
Cells_Intensity_IntegratedIntensity_ER: double
Cells_Intensity_IntegratedIntensity_Mito: double
Cells_Intensity_IntegratedIntensity_RNA: double
Cells_Intensity_LowerQuartileIntensity_AGP: double
Cells_Intensity_LowerQuartileIntensity_BFHigh: double
Cells_Intensity_LowerQuartileIntensity_BFLow: double
Cells_Intensity_LowerQuartileIntensity_Brightfield: double
Cells_Intensity_LowerQuartileIntensity_DNA: double
Cells_Intensity_LowerQuartileIntensity_ER: double
Cells_Intensity_LowerQuartileIntensity_Mito: double
Cells_Intensity_LowerQuartileIntensity_RNA: double
Cells_Intensity_MADIntensity_AGP: double
Cells_Intensity_MADIntensity_BFHigh: double
Cells_Intensity_MADIntensity_BFLow: double
Cells_Intensity_MADIntensity_Brightfield: double
Cells_Intensity_MADIntensity_DNA: double
Cells_Intensity_MADIntensity_ER: double
Cells_Intensity_MADIntensity_Mito: double
Cells_Intensity_MADIntensity_RNA: double
Cells_Intensity_MassDisplacement_AGP: double
Cells_Intensity_MassDisplacement_BFHigh: double
Cells_Intensity_MassDisplacement_BFLow: double
Cells_Intensity_MassDisplacement_Brightfield: double
Cells_Intensity_MassDisplacement_DNA: double
Cells_Intensity_MassDisplacement_ER: double
Cells_Intensity_MassDisplacement_Mito: double
Cells_Intensity_MassDisplacement_RNA: double
Cells_Intensity_MaxIntensityEdge_AGP: double
Cells_Intensity_MaxIntensityEdge_BFHigh: double
Cells_Intensity_MaxIntensityEdge_BFLow: double
Cells_Intensity_MaxIntensityEdge_Brightfield: double
Cells_Intensity_MaxIntensityEdge_DNA: double
Cells_Intensity_MaxIntensityEdge_ER: double
Cells_Intensity_MaxIntensityEdge_Mito: double
Cells_Intensity_MaxIntensityEdge_RNA: double
Cells_Intensity_MaxIntensity_AGP: double
Cells_Intensity_MaxIntensity_BFHigh: double
Cells_Intensity_MaxIntensity_BFLow: double
Cells_Intensity_MaxIntensity_Brightfield: double
Cells_Intensity_MaxIntensity_DNA: double
Cells_Intensity_MaxIntensity_ER: double
Cells_Intensity_MaxIntensity_Mito: double
Cells_Intensity_MaxIntensity_RNA: double
Cells_Intensity_MeanIntensityEdge_AGP: double
Cells_Intensity_MeanIntensityEdge_BFHigh: double
Cells_Intensity_MeanIntensityEdge_BFLow: double
Cells_Intensity_MeanIntensityEdge_Brightfield: double
Cells_Intensity_MeanIntensityEdge_DNA: double
Cells_Intensity_MeanIntensityEdge_ER: double
Cells_Intensity_MeanIntensityEdge_Mito: double
Cells_Intensity_MeanIntensityEdge_RNA: double
Cells_Intensity_MeanIntensity_AGP: double
Cells_Intensity_MeanIntensity_BFHigh: double
Cells_Intensity_MeanIntensity_BFLow: double
Cells_Intensity_MeanIntensity_Brightfield: double
Cells_Intensity_MeanIntensity_DNA: double
Cells_Intensity_MeanIntensity_ER: double
Cells_Intensity_MeanIntensity_Mito: double
Cells_Intensity_MeanIntensity_RNA: double
Cells_Intensity_MedianIntensity_AGP: double
Cells_Intensity_MedianIntensity_BFHigh: double
Cells_Intensity_MedianIntensity_BFLow: double
Cells_Intensity_MedianIntensity_Brightfield: double
Cells_Intensity_MedianIntensity_DNA: double
Cells_Intensity_MedianIntensity_ER: double
Cells_Intensity_MedianIntensity_Mito: double
Cells_Intensity_MedianIntensity_RNA: double
Cells_Intensity_MinIntensityEdge_AGP: double
Cells_Intensity_MinIntensityEdge_BFHigh: double
Cells_Intensity_MinIntensityEdge_BFLow: double
Cells_Intensity_MinIntensityEdge_Brightfield: double
Cells_Intensity_MinIntensityEdge_DNA: double
Cells_Intensity_MinIntensityEdge_ER: double
Cells_Intensity_MinIntensityEdge_Mito: double
Cells_Intensity_MinIntensityEdge_RNA: double
Cells_Intensity_MinIntensity_AGP: double
Cells_Intensity_MinIntensity_BFHigh: double
Cells_Intensity_MinIntensity_BFLow: double
Cells_Intensity_MinIntensity_Brightfield: double
Cells_Intensity_MinIntensity_DNA: double
Cells_Intensity_MinIntensity_ER: double
Cells_Intensity_MinIntensity_Mito: double
Cells_Intensity_MinIntensity_RNA: double
Cells_Intensity_StdIntensityEdge_AGP: double
Cells_Intensity_StdIntensityEdge_BFHigh: double
Cells_Intensity_StdIntensityEdge_BFLow: double
Cells_Intensity_StdIntensityEdge_Brightfield: double
Cells_Intensity_StdIntensityEdge_DNA: double
Cells_Intensity_StdIntensityEdge_ER: double
Cells_Intensity_StdIntensityEdge_Mito: double
Cells_Intensity_StdIntensityEdge_RNA: double
Cells_Intensity_StdIntensity_AGP: double
Cells_Intensity_StdIntensity_BFHigh: double
Cells_Intensity_StdIntensity_BFLow: double
Cells_Intensity_StdIntensity_Brightfield: double
Cells_Intensity_StdIntensity_DNA: double
Cells_Intensity_StdIntensity_ER: double
Cells_Intensity_StdIntensity_Mito: double
Cells_Intensity_StdIntensity_RNA: double
Cells_Intensity_UpperQuartileIntensity_AGP: double
Cells_Intensity_UpperQuartileIntensity_BFHigh: double
Cells_Intensity_UpperQuartileIntensity_BFLow: double
Cells_Intensity_UpperQuartileIntensity_Brightfield: double
Cells_Intensity_UpperQuartileIntensity_DNA: double
Cells_Intensity_UpperQuartileIntensity_ER: double
Cells_Intensity_UpperQuartileIntensity_Mito: double
Cells_Intensity_UpperQuartileIntensity_RNA: double
Cells_Neighbors_AngleBetweenNeighbors_5: double
Cells_Neighbors_AngleBetweenNeighbors_Adjacent: double
Cells_Neighbors_FirstClosestDistance_5: double
Cells_Neighbors_FirstClosestDistance_Adjacent: double
Cells_Neighbors_FirstClosestObjectNumber_5: int64
Cells_Neighbors_FirstClosestObjectNumber_Adjacent: int64
Cells_Neighbors_NumberOfNeighbors_5: double
Cells_Neighbors_NumberOfNeighbors_Adjacent: double
Cells_Neighbors_PercentTouching_5: double
Cells_Neighbors_PercentTouching_Adjacent: double
Cells_Neighbors_SecondClosestDistance_5: double
Cells_Neighbors_SecondClosestDistance_Adjacent: double
Cells_Neighbors_SecondClosestObjectNumber_5: int64
Cells_Neighbors_SecondClosestObjectNumber_Adjacent: int64
Cells_Parent_CellsIncludingEdges: int64
Cells_RadialDistribution_FracAtD_AGP_1of4: double
Cells_RadialDistribution_FracAtD_AGP_2of4: double
Cells_RadialDistribution_FracAtD_AGP_3of4: double
Cells_RadialDistribution_FracAtD_AGP_4of4: double
Cells_RadialDistribution_FracAtD_BFHigh_1of4: double
Cells_RadialDistribution_FracAtD_BFHigh_2of4: double
Cells_RadialDistribution_FracAtD_BFHigh_3of4: double
Cells_RadialDistribution_FracAtD_BFHigh_4of4: double
Cells_RadialDistribution_FracAtD_BFLow_1of4: double
Cells_RadialDistribution_FracAtD_BFLow_2of4: double
Cells_RadialDistribution_FracAtD_BFLow_3of4: double
Cells_RadialDistribution_FracAtD_BFLow_4of4: double
Cells_RadialDistribution_FracAtD_Brightfield_1of4: double
Cells_RadialDistribution_FracAtD_Brightfield_2of4: double
Cells_RadialDistribution_FracAtD_Brightfield_3of4: double
Cells_RadialDistribution_FracAtD_Brightfield_4of4: double
Cells_RadialDistribution_FracAtD_DNA_1of4: double
Cells_RadialDistribution_FracAtD_DNA_2of4: double
Cells_RadialDistribution_FracAtD_DNA_3of4: double
Cells_RadialDistribution_FracAtD_DNA_4of4: double
Cells_RadialDistribution_FracAtD_ER_1of4: double
Cells_RadialDistribution_FracAtD_ER_2of4: double
Cells_RadialDistribution_FracAtD_ER_3of4: double
Cells_RadialDistribution_FracAtD_ER_4of4: double
Cells_RadialDistribution_FracAtD_Mito_1of4: double
Cells_RadialDistribution_FracAtD_Mito_2of4: double
Cells_RadialDistribution_FracAtD_Mito_3of4: double
Cells_RadialDistribution_FracAtD_Mito_4of4: double
Cells_RadialDistribution_FracAtD_RNA_1of4: double
Cells_RadialDistribution_FracAtD_RNA_2of4: double
Cells_RadialDistribution_FracAtD_RNA_3of4: double
Cells_RadialDistribution_FracAtD_RNA_4of4: double
Cells_RadialDistribution_FracAtD_mito_tubeness_10of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_10of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_11of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_11of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_12of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_12of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_13of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_13of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_14of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_14of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_15of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_15of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_16of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_16of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_17of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_18of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_19of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_1of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_1of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_20of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_2of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_2of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_3of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_3of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_4of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_4of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_5of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_5of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_6of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_6of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_7of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_7of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_8of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_8of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_9of16: double
Cells_RadialDistribution_FracAtD_mito_tubeness_9of20: double
Cells_RadialDistribution_FracAtD_mito_tubeness_Overflow: double
Cells_RadialDistribution_MeanFrac_AGP_1of4: double
Cells_RadialDistribution_MeanFrac_AGP_2of4: double
Cells_RadialDistribution_MeanFrac_AGP_3of4: double
Cells_RadialDistribution_MeanFrac_AGP_4of4: double
Cells_RadialDistribution_MeanFrac_BFHigh_1of4: double
Cells_RadialDistribution_MeanFrac_BFHigh_2of4: double
Cells_RadialDistribution_MeanFrac_BFHigh_3of4: double
Cells_RadialDistribution_MeanFrac_BFHigh_4of4: double
Cells_RadialDistribution_MeanFrac_BFLow_1of4: double
Cells_RadialDistribution_MeanFrac_BFLow_2of4: double
Cells_RadialDistribution_MeanFrac_BFLow_3of4: double
Cells_RadialDistribution_MeanFrac_BFLow_4of4: double
Cells_RadialDistribution_MeanFrac_Brightfield_1of4: double
Cells_RadialDistribution_MeanFrac_Brightfield_2of4: double
Cells_RadialDistribution_MeanFrac_Brightfield_3of4: double
Cells_RadialDistribution_MeanFrac_Brightfield_4of4: double
Cells_RadialDistribution_MeanFrac_DNA_1of4: double
Cells_RadialDistribution_MeanFrac_DNA_2of4: double
Cells_RadialDistribution_MeanFrac_DNA_3of4: double
Cells_RadialDistribution_MeanFrac_DNA_4of4: double
Cells_RadialDistribution_MeanFrac_ER_1of4: double
Cells_RadialDistribution_MeanFrac_ER_2of4: double
Cells_RadialDistribution_MeanFrac_ER_3of4: double
Cells_RadialDistribution_MeanFrac_ER_4of4: double
Cells_RadialDistribution_MeanFrac_Mito_1of4: double
Cells_RadialDistribution_MeanFrac_Mito_2of4: double
Cells_RadialDistribution_MeanFrac_Mito_3of4: double
Cells_RadialDistribution_MeanFrac_Mito_4of4: double
Cells_RadialDistribution_MeanFrac_RNA_1of4: double
Cells_RadialDistribution_MeanFrac_RNA_2of4: double
Cells_RadialDistribution_MeanFrac_RNA_3of4: double
Cells_RadialDistribution_MeanFrac_RNA_4of4: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_10of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_10of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_11of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_11of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_12of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_12of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_13of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_13of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_14of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_14of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_15of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_15of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_16of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_16of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_17of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_18of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_19of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_1of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_1of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_20of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_2of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_2of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_3of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_3of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_4of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_4of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_5of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_5of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_6of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_6of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_7of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_7of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_8of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_8of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_9of16: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_9of20: double
Cells_RadialDistribution_MeanFrac_mito_tubeness_Overflow: double
Cells_RadialDistribution_RadialCV_AGP_1of4: double
Cells_RadialDistribution_RadialCV_AGP_2of4: double
Cells_RadialDistribution_RadialCV_AGP_3of4: double
Cells_RadialDistribution_RadialCV_AGP_4of4: double
Cells_RadialDistribution_RadialCV_BFHigh_1of4: double
Cells_RadialDistribution_RadialCV_BFHigh_2of4: double
Cells_RadialDistribution_RadialCV_BFHigh_3of4: double
Cells_RadialDistribution_RadialCV_BFHigh_4of4: double
Cells_RadialDistribution_RadialCV_BFLow_1of4: double
Cells_RadialDistribution_RadialCV_BFLow_2of4: double
Cells_RadialDistribution_RadialCV_BFLow_3of4: double
Cells_RadialDistribution_RadialCV_BFLow_4of4: double
Cells_RadialDistribution_RadialCV_Brightfield_1of4: double
Cells_RadialDistribution_RadialCV_Brightfield_2of4: double
Cells_RadialDistribution_RadialCV_Brightfield_3of4: double
Cells_RadialDistribution_RadialCV_Brightfield_4of4: double
Cells_RadialDistribution_RadialCV_DNA_1of4: double
Cells_RadialDistribution_RadialCV_DNA_2of4: double
Cells_RadialDistribution_RadialCV_DNA_3of4: double
Cells_RadialDistribution_RadialCV_DNA_4of4: double
Cells_RadialDistribution_RadialCV_ER_1of4: double
Cells_RadialDistribution_RadialCV_ER_2of4: double
Cells_RadialDistribution_RadialCV_ER_3of4: double
Cells_RadialDistribution_RadialCV_ER_4of4: double
Cells_RadialDistribution_RadialCV_Mito_1of4: double
Cells_RadialDistribution_RadialCV_Mito_2of4: double
Cells_RadialDistribution_RadialCV_Mito_3of4: double
Cells_RadialDistribution_RadialCV_Mito_4of4: double
Cells_RadialDistribution_RadialCV_RNA_1of4: double
Cells_RadialDistribution_RadialCV_RNA_2of4: double
Cells_RadialDistribution_RadialCV_RNA_3of4: double
Cells_RadialDistribution_RadialCV_RNA_4of4: double
Cells_RadialDistribution_RadialCV_mito_tubeness_10of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_10of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_11of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_11of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_12of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_12of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_13of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_13of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_14of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_14of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_15of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_15of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_16of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_16of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_17of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_18of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_19of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_1of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_1of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_20of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_2of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_2of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_3of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_3of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_4of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_4of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_5of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_5of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_6of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_6of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_7of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_7of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_8of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_8of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_9of16: double
Cells_RadialDistribution_RadialCV_mito_tubeness_9of20: double
Cells_RadialDistribution_RadialCV_mito_tubeness_Overflow: double
Cells_TableNumber: int64
Cells_Texture_AngularSecondMoment_AGP_10_00_256: double
Cells_Texture_AngularSecondMoment_AGP_10_01_256: double
Cells_Texture_AngularSecondMoment_AGP_10_02_256: double
Cells_Texture_AngularSecondMoment_AGP_10_03_256: double
Cells_Texture_AngularSecondMoment_AGP_3_00_256: double
Cells_Texture_AngularSecondMoment_AGP_3_01_256: double
Cells_Texture_AngularSecondMoment_AGP_3_02_256: double
Cells_Texture_AngularSecondMoment_AGP_3_03_256: double
Cells_Texture_AngularSecondMoment_AGP_5_00_256: double
Cells_Texture_AngularSecondMoment_AGP_5_01_256: double
Cells_Texture_AngularSecondMoment_AGP_5_02_256: double
Cells_Texture_AngularSecondMoment_AGP_5_03_256: double
Cells_Texture_AngularSecondMoment_BFHigh_10_00_256: double
Cells_Texture_AngularSecondMoment_BFHigh_10_01_256: double
Cells_Texture_AngularSecondMoment_BFHigh_10_02_256: double
Cells_Texture_AngularSecondMoment_BFHigh_10_03_256: double
Cells_Texture_AngularSecondMoment_BFHigh_3_00_256: double
Cells_Texture_AngularSecondMoment_BFHigh_3_01_256: double
Cells_Texture_AngularSecondMoment_BFHigh_3_02_256: double
Cells_Texture_AngularSecondMoment_BFHigh_3_03_256: double
Cells_Texture_AngularSecondMoment_BFHigh_5_00_256: double
Cells_Texture_AngularSecondMoment_BFHigh_5_01_256: double
Cells_Texture_AngularSecondMoment_BFHigh_5_02_256: double
Cells_Texture_AngularSecondMoment_BFHigh_5_03_256: double
Cells_Texture_AngularSecondMoment_BFLow_10_00_256: double
Cells_Texture_AngularSecondMoment_BFLow_10_01_256: double
Cells_Texture_AngularSecondMoment_BFLow_10_02_256: double
Cells_Texture_AngularSecondMoment_BFLow_10_03_256: double
Cells_Texture_AngularSecondMoment_BFLow_3_00_256: double
Cells_Texture_AngularSecondMoment_BFLow_3_01_256: double
Cells_Texture_AngularSecondMoment_BFLow_3_02_256: double
Cells_Texture_AngularSecondMoment_BFLow_3_03_256: double
Cells_Texture_AngularSecondMoment_BFLow_5_00_256: double
Cells_Texture_AngularSecondMoment_BFLow_5_01_256: double
Cells_Texture_AngularSecondMoment_BFLow_5_02_256: double
Cells_Texture_AngularSecondMoment_BFLow_5_03_256: double
Cells_Texture_AngularSecondMoment_Brightfield_10_00_256: double
Cells_Texture_AngularSecondMoment_Brightfield_10_01_256: double
Cells_Texture_AngularSecondMoment_Brightfield_10_02_256: double
Cells_Texture_AngularSecondMoment_Brightfield_10_03_256: double
Cells_Texture_AngularSecondMoment_Brightfield_3_00_256: double
Cells_Texture_AngularSecondMoment_Brightfield_3_01_256: double
Cells_Texture_AngularSecondMoment_Brightfield_3_02_256: double
Cells_Texture_AngularSecondMoment_Brightfield_3_03_256: double
Cells_Texture_AngularSecondMoment_Brightfield_5_00_256: double
Cells_Texture_AngularSecondMoment_Brightfield_5_01_256: double
Cells_Texture_AngularSecondMoment_Brightfield_5_02_256: double
Cells_Texture_AngularSecondMoment_Brightfield_5_03_256: double
Cells_Texture_AngularSecondMoment_DNA_10_00_256: double
Cells_Texture_AngularSecondMoment_DNA_10_01_256: double
Cells_Texture_AngularSecondMoment_DNA_10_02_256: double
Cells_Texture_AngularSecondMoment_DNA_10_03_256: double
Cells_Texture_AngularSecondMoment_DNA_3_00_256: double
Cells_Texture_AngularSecondMoment_DNA_3_01_256: double
Cells_Texture_AngularSecondMoment_DNA_3_02_256: double
Cells_Texture_AngularSecondMoment_DNA_3_03_256: double
Cells_Texture_AngularSecondMoment_DNA_5_00_256: double
Cells_Texture_AngularSecondMoment_DNA_5_01_256: double
Cells_Texture_AngularSecondMoment_DNA_5_02_256: double
Cells_Texture_AngularSecondMoment_DNA_5_03_256: double
Cells_Texture_AngularSecondMoment_ER_10_00_256: double
Cells_Texture_AngularSecondMoment_ER_10_01_256: double
Cells_Texture_AngularSecondMoment_ER_10_02_256: double
Cells_Texture_AngularSecondMoment_ER_10_03_256: double
Cells_Texture_AngularSecondMoment_ER_3_00_256: double
Cells_Texture_AngularSecondMoment_ER_3_01_256: double
Cells_Texture_AngularSecondMoment_ER_3_02_256: double
Cells_Texture_AngularSecondMoment_ER_3_03_256: double
Cells_Texture_AngularSecondMoment_ER_5_00_256: double
Cells_Texture_AngularSecondMoment_ER_5_01_256: double
Cells_Texture_AngularSecondMoment_ER_5_02_256: double
Cells_Texture_AngularSecondMoment_ER_5_03_256: double
Cells_Texture_AngularSecondMoment_Mito_10_00_256: double
Cells_Texture_AngularSecondMoment_Mito_10_01_256: double
Cells_Texture_AngularSecondMoment_Mito_10_02_256: double
Cells_Texture_AngularSecondMoment_Mito_10_03_256: double
Cells_Texture_AngularSecondMoment_Mito_3_00_256: double
Cells_Texture_AngularSecondMoment_Mito_3_01_256: double
Cells_Texture_AngularSecondMoment_Mito_3_02_256: double
Cells_Texture_AngularSecondMoment_Mito_3_03_256: double
Cells_Texture_AngularSecondMoment_Mito_5_00_256: double
Cells_Texture_AngularSecondMoment_Mito_5_01_256: double
Cells_Texture_AngularSecondMoment_Mito_5_02_256: double
Cells_Texture_AngularSecondMoment_Mito_5_03_256: double
Cells_Texture_AngularSecondMoment_RNA_10_00_256: double
Cells_Texture_AngularSecondMoment_RNA_10_01_256: double
Cells_Texture_AngularSecondMoment_RNA_10_02_256: double
Cells_Texture_AngularSecondMoment_RNA_10_03_256: double
Cells_Texture_AngularSecondMoment_RNA_3_00_256: double
Cells_Texture_AngularSecondMoment_RNA_3_01_256: double
Cells_Texture_AngularSecondMoment_RNA_3_02_256: double
Cells_Texture_AngularSecondMoment_RNA_3_03_256: double
Cells_Texture_AngularSecondMoment_RNA_5_00_256: double
Cells_Texture_AngularSecondMoment_RNA_5_01_256: double
Cells_Texture_AngularSecondMoment_RNA_5_02_256: double
Cells_Texture_AngularSecondMoment_RNA_5_03_256: double
Cells_Texture_Contrast_AGP_10_00_256: double
Cells_Texture_Contrast_AGP_10_01_256: double
Cells_Texture_Contrast_AGP_10_02_256: double
Cells_Texture_Contrast_AGP_10_03_256: double
Cells_Texture_Contrast_AGP_3_00_256: double
Cells_Texture_Contrast_AGP_3_01_256: double
Cells_Texture_Contrast_AGP_3_02_256: double
Cells_Texture_Contrast_AGP_3_03_256: double
Cells_Texture_Contrast_AGP_5_00_256: double
Cells_Texture_Contrast_AGP_5_01_256: double
Cells_Texture_Contrast_AGP_5_02_256: double
Cells_Texture_Contrast_AGP_5_03_256: double
Cells_Texture_Contrast_BFHigh_10_00_256: double
Cells_Texture_Contrast_BFHigh_10_01_256: double
Cells_Texture_Contrast_BFHigh_10_02_256: double
Cells_Texture_Contrast_BFHigh_10_03_256: double
Cells_Texture_Contrast_BFHigh_3_00_256: double
Cells_Texture_Contrast_BFHigh_3_01_256: double
Cells_Texture_Contrast_BFHigh_3_02_256: double
Cells_Texture_Contrast_BFHigh_3_03_256: double
Cells_Texture_Contrast_BFHigh_5_00_256: double
Cells_Texture_Contrast_BFHigh_5_01_256: double
Cells_Texture_Contrast_BFHigh_5_02_256: double
Cells_Texture_Contrast_BFHigh_5_03_256: double
Cells_Texture_Contrast_BFLow_10_00_256: double
Cells_Texture_Contrast_BFLow_10_01_256: double
Cells_Texture_Contrast_BFLow_10_02_256: double
Cells_Texture_Contrast_BFLow_10_03_256: double
Cells_Texture_Contrast_BFLow_3_00_256: double
Cells_Texture_Contrast_BFLow_3_01_256: double
Cells_Texture_Contrast_BFLow_3_02_256: double
Cells_Texture_Contrast_BFLow_3_03_256: double
Cells_Texture_Contrast_BFLow_5_00_256: double
Cells_Texture_Contrast_BFLow_5_01_256: double
Cells_Texture_Contrast_BFLow_5_02_256: double
Cells_Texture_Contrast_BFLow_5_03_256: double
Cells_Texture_Contrast_Brightfield_10_00_256: double
Cells_Texture_Contrast_Brightfield_10_01_256: double
Cells_Texture_Contrast_Brightfield_10_02_256: double
Cells_Texture_Contrast_Brightfield_10_03_256: double
Cells_Texture_Contrast_Brightfield_3_00_256: double
Cells_Texture_Contrast_Brightfield_3_01_256: double
Cells_Texture_Contrast_Brightfield_3_02_256: double
Cells_Texture_Contrast_Brightfield_3_03_256: double
Cells_Texture_Contrast_Brightfield_5_00_256: double
Cells_Texture_Contrast_Brightfield_5_01_256: double
Cells_Texture_Contrast_Brightfield_5_02_256: double
Cells_Texture_Contrast_Brightfield_5_03_256: double
Cells_Texture_Contrast_DNA_10_00_256: double
Cells_Texture_Contrast_DNA_10_01_256: double
Cells_Texture_Contrast_DNA_10_02_256: double
Cells_Texture_Contrast_DNA_10_03_256: double
Cells_Texture_Contrast_DNA_3_00_256: double
Cells_Texture_Contrast_DNA_3_01_256: double
Cells_Texture_Contrast_DNA_3_02_256: double
Cells_Texture_Contrast_DNA_3_03_256: double
Cells_Texture_Contrast_DNA_5_00_256: double
Cells_Texture_Contrast_DNA_5_01_256: double
Cells_Texture_Contrast_DNA_5_02_256: double
Cells_Texture_Contrast_DNA_5_03_256: double
Cells_Texture_Contrast_ER_10_00_256: double
Cells_Texture_Contrast_ER_10_01_256: double
Cells_Texture_Contrast_ER_10_02_256: double
Cells_Texture_Contrast_ER_10_03_256: double
Cells_Texture_Contrast_ER_3_00_256: double
Cells_Texture_Contrast_ER_3_01_256: double
Cells_Texture_Contrast_ER_3_02_256: double
Cells_Texture_Contrast_ER_3_03_256: double
Cells_Texture_Contrast_ER_5_00_256: double
Cells_Texture_Contrast_ER_5_01_256: double
Cells_Texture_Contrast_ER_5_02_256: double
Cells_Texture_Contrast_ER_5_03_256: double
Cells_Texture_Contrast_Mito_10_00_256: double
Cells_Texture_Contrast_Mito_10_01_256: double
Cells_Texture_Contrast_Mito_10_02_256: double
Cells_Texture_Contrast_Mito_10_03_256: double
Cells_Texture_Contrast_Mito_3_00_256: double
Cells_Texture_Contrast_Mito_3_01_256: double
Cells_Texture_Contrast_Mito_3_02_256: double
Cells_Texture_Contrast_Mito_3_03_256: double
Cells_Texture_Contrast_Mito_5_00_256: double
Cells_Texture_Contrast_Mito_5_01_256: double
Cells_Texture_Contrast_Mito_5_02_256: double
Cells_Texture_Contrast_Mito_5_03_256: double
Cells_Texture_Contrast_RNA_10_00_256: double
Cells_Texture_Contrast_RNA_10_01_256: double
Cells_Texture_Contrast_RNA_10_02_256: double
Cells_Texture_Contrast_RNA_10_03_256: double
Cells_Texture_Contrast_RNA_3_00_256: double
Cells_Texture_Contrast_RNA_3_01_256: double
Cells_Texture_Contrast_RNA_3_02_256: double
Cells_Texture_Contrast_RNA_3_03_256: double
Cells_Texture_Contrast_RNA_5_00_256: double
Cells_Texture_Contrast_RNA_5_01_256: double
Cells_Texture_Contrast_RNA_5_02_256: double
Cells_Texture_Contrast_RNA_5_03_256: double
Cells_Texture_Correlation_AGP_10_00_256: double
Cells_Texture_Correlation_AGP_10_01_256: double
Cells_Texture_Correlation_AGP_10_02_256: double
Cells_Texture_Correlation_AGP_10_03_256: double
Cells_Texture_Correlation_AGP_3_00_256: double
Cells_Texture_Correlation_AGP_3_01_256: double
Cells_Texture_Correlation_AGP_3_02_256: double
Cells_Texture_Correlation_AGP_3_03_256: double
Cells_Texture_Correlation_AGP_5_00_256: double
Cells_Texture_Correlation_AGP_5_01_256: double
Cells_Texture_Correlation_AGP_5_02_256: double
Cells_Texture_Correlation_AGP_5_03_256: double
Cells_Texture_Correlation_BFHigh_10_00_256: double
Cells_Texture_Correlation_BFHigh_10_01_256: double
Cells_Texture_Correlation_BFHigh_10_02_256: double
Cells_Texture_Correlation_BFHigh_10_03_256: double
Cells_Texture_Correlation_BFHigh_3_00_256: double
Cells_Texture_Correlation_BFHigh_3_01_256: double
Cells_Texture_Correlation_BFHigh_3_02_256: double
Cells_Texture_Correlation_BFHigh_3_03_256: double
Cells_Texture_Correlation_BFHigh_5_00_256: double
Cells_Texture_Correlation_BFHigh_5_01_256: double
Cells_Texture_Correlation_BFHigh_5_02_256: double
Cells_Texture_Correlation_BFHigh_5_03_256: double
Cells_Texture_Correlation_BFLow_10_00_256: double
Cells_Texture_Correlation_BFLow_10_01_256: double
Cells_Texture_Correlation_BFLow_10_02_256: double
Cells_Texture_Correlation_BFLow_10_03_256: double
Cells_Texture_Correlation_BFLow_3_00_256: double
Cells_Texture_Correlation_BFLow_3_01_256: double
Cells_Texture_Correlation_BFLow_3_02_256: double
Cells_Texture_Correlation_BFLow_3_03_256: double
Cells_Texture_Correlation_BFLow_5_00_256: double
Cells_Texture_Correlation_BFLow_5_01_256: double
Cells_Texture_Correlation_BFLow_5_02_256: double
Cells_Texture_Correlation_BFLow_5_03_256: double
Cells_Texture_Correlation_Brightfield_10_00_256: double
Cells_Texture_Correlation_Brightfield_10_01_256: double
Cells_Texture_Correlation_Brightfield_10_02_256: double
Cells_Texture_Correlation_Brightfield_10_03_256: double
Cells_Texture_Correlation_Brightfield_3_00_256: double
Cells_Texture_Correlation_Brightfield_3_01_256: double
Cells_Texture_Correlation_Brightfield_3_02_256: double
Cells_Texture_Correlation_Brightfield_3_03_256: double
Cells_Texture_Correlation_Brightfield_5_00_256: double
Cells_Texture_Correlation_Brightfield_5_01_256: double
Cells_Texture_Correlation_Brightfield_5_02_256: double
Cells_Texture_Correlation_Brightfield_5_03_256: double
Cells_Texture_Correlation_DNA_10_00_256: double
Cells_Texture_Correlation_DNA_10_01_256: double
Cells_Texture_Correlation_DNA_10_02_256: double
Cells_Texture_Correlation_DNA_10_03_256: double
Cells_Texture_Correlation_DNA_3_00_256: double
Cells_Texture_Correlation_DNA_3_01_256: double
Cells_Texture_Correlation_DNA_3_02_256: double
Cells_Texture_Correlation_DNA_3_03_256: double
Cells_Texture_Correlation_DNA_5_00_256: double
Cells_Texture_Correlation_DNA_5_01_256: double
Cells_Texture_Correlation_DNA_5_02_256: double
Cells_Texture_Correlation_DNA_5_03_256: double
Cells_Texture_Correlation_ER_10_00_256: double
Cells_Texture_Correlation_ER_10_01_256: double
Cells_Texture_Correlation_ER_10_02_256: double
Cells_Texture_Correlation_ER_10_03_256: double
Cells_Texture_Correlation_ER_3_00_256: double
Cells_Texture_Correlation_ER_3_01_256: double
Cells_Texture_Correlation_ER_3_02_256: double
Cells_Texture_Correlation_ER_3_03_256: double
Cells_Texture_Correlation_ER_5_00_256: double
Cells_Texture_Correlation_ER_5_01_256: double
Cells_Texture_Correlation_ER_5_02_256: double
Cells_Texture_Correlation_ER_5_03_256: double
Cells_Texture_Correlation_Mito_10_00_256: double
Cells_Texture_Correlation_Mito_10_01_256: double
Cells_Texture_Correlation_Mito_10_02_256: double
Cells_Texture_Correlation_Mito_10_03_256: double
Cells_Texture_Correlation_Mito_3_00_256: double
Cells_Texture_Correlation_Mito_3_01_256: double
Cells_Texture_Correlation_Mito_3_02_256: double
Cells_Texture_Correlation_Mito_3_03_256: double
Cells_Texture_Correlation_Mito_5_00_256: double
Cells_Texture_Correlation_Mito_5_01_256: double
Cells_Texture_Correlation_Mito_5_02_256: double
Cells_Texture_Correlation_Mito_5_03_256: double
Cells_Texture_Correlation_RNA_10_00_256: double
Cells_Texture_Correlation_RNA_10_01_256: double
Cells_Texture_Correlation_RNA_10_02_256: double
Cells_Texture_Correlation_RNA_10_03_256: double
Cells_Texture_Correlation_RNA_3_00_256: double
Cells_Texture_Correlation_RNA_3_01_256: double
Cells_Texture_Correlation_RNA_3_02_256: double
Cells_Texture_Correlation_RNA_3_03_256: double
Cells_Texture_Correlation_RNA_5_00_256: double
Cells_Texture_Correlation_RNA_5_01_256: double
Cells_Texture_Correlation_RNA_5_02_256: double
Cells_Texture_Correlation_RNA_5_03_256: double
Cells_Texture_DifferenceEntropy_AGP_10_00_256: double
Cells_Texture_DifferenceEntropy_AGP_10_01_256: double
Cells_Texture_DifferenceEntropy_AGP_10_02_256: double
Cells_Texture_DifferenceEntropy_AGP_10_03_256: double
Cells_Texture_DifferenceEntropy_AGP_3_00_256: double
Cells_Texture_DifferenceEntropy_AGP_3_01_256: double
Cells_Texture_DifferenceEntropy_AGP_3_02_256: double
Cells_Texture_DifferenceEntropy_AGP_3_03_256: double
Cells_Texture_DifferenceEntropy_AGP_5_00_256: double
Cells_Texture_DifferenceEntropy_AGP_5_01_256: double
Cells_Texture_DifferenceEntropy_AGP_5_02_256: double
Cells_Texture_DifferenceEntropy_AGP_5_03_256: double
Cells_Texture_DifferenceEntropy_BFHigh_10_00_256: double
Cells_Texture_DifferenceEntropy_BFHigh_10_01_256: double
Cells_Texture_DifferenceEntropy_BFHigh_10_02_256: double
Cells_Texture_DifferenceEntropy_BFHigh_10_03_256: double
Cells_Texture_DifferenceEntropy_BFHigh_3_00_256: double
Cells_Texture_DifferenceEntropy_BFHigh_3_01_256: double
Cells_Texture_DifferenceEntropy_BFHigh_3_02_256: double
Cells_Texture_DifferenceEntropy_BFHigh_3_03_256: double
Cells_Texture_DifferenceEntropy_BFHigh_5_00_256: double
Cells_Texture_DifferenceEntropy_BFHigh_5_01_256: double
Cells_Texture_DifferenceEntropy_BFHigh_5_02_256: double
Cells_Texture_DifferenceEntropy_BFHigh_5_03_256: double
Cells_Texture_DifferenceEntropy_BFLow_10_00_256: double
Cells_Texture_DifferenceEntropy_BFLow_10_01_256: double
Cells_Texture_DifferenceEntropy_BFLow_10_02_256: double
Cells_Texture_DifferenceEntropy_BFLow_10_03_256: double
Cells_Texture_DifferenceEntropy_BFLow_3_00_256: double
Cells_Texture_DifferenceEntropy_BFLow_3_01_256: double
Cells_Texture_DifferenceEntropy_BFLow_3_02_256: double
Cells_Texture_DifferenceEntropy_BFLow_3_03_256: double
Cells_Texture_DifferenceEntropy_BFLow_5_00_256: double
Cells_Texture_DifferenceEntropy_BFLow_5_01_256: double
Cells_Texture_DifferenceEntropy_BFLow_5_02_256: double
Cells_Texture_DifferenceEntropy_BFLow_5_03_256: double
Cells_Texture_DifferenceEntropy_Brightfield_10_00_256: double
Cells_Texture_DifferenceEntropy_Brightfield_10_01_256: double
Cells_Texture_DifferenceEntropy_Brightfield_10_02_256: double
Cells_Texture_DifferenceEntropy_Brightfield_10_03_256: double
Cells_Texture_DifferenceEntropy_Brightfield_3_00_256: double
Cells_Texture_DifferenceEntropy_Brightfield_3_01_256: double
Cells_Texture_DifferenceEntropy_Brightfield_3_02_256: double
Cells_Texture_DifferenceEntropy_Brightfield_3_03_256: double
Cells_Texture_DifferenceEntropy_Brightfield_5_00_256: double
Cells_Texture_DifferenceEntropy_Brightfield_5_01_256: double
Cells_Texture_DifferenceEntropy_Brightfield_5_02_256: double
Cells_Texture_DifferenceEntropy_Brightfield_5_03_256: double
Cells_Texture_DifferenceEntropy_DNA_10_00_256: double
Cells_Texture_DifferenceEntropy_DNA_10_01_256: double
Cells_Texture_DifferenceEntropy_DNA_10_02_256: double
Cells_Texture_DifferenceEntropy_DNA_10_03_256: double
Cells_Texture_DifferenceEntropy_DNA_3_00_256: double
Cells_Texture_DifferenceEntropy_DNA_3_01_256: double
Cells_Texture_DifferenceEntropy_DNA_3_02_256: double
Cells_Texture_DifferenceEntropy_DNA_3_03_256: double
Cells_Texture_DifferenceEntropy_DNA_5_00_256: double
Cells_Texture_DifferenceEntropy_DNA_5_01_256: double
Cells_Texture_DifferenceEntropy_DNA_5_02_256: double
Cells_Texture_DifferenceEntropy_DNA_5_03_256: double
Cells_Texture_DifferenceEntropy_ER_10_00_256: double
Cells_Texture_DifferenceEntropy_ER_10_01_256: double
Cells_Texture_DifferenceEntropy_ER_10_02_256: double
Cells_Texture_DifferenceEntropy_ER_10_03_256: double
Cells_Texture_DifferenceEntropy_ER_3_00_256: double
Cells_Texture_DifferenceEntropy_ER_3_01_256: double
Cells_Texture_DifferenceEntropy_ER_3_02_256: double
Cells_Texture_DifferenceEntropy_ER_3_03_256: double
Cells_Texture_DifferenceEntropy_ER_5_00_256: double
Cells_Texture_DifferenceEntropy_ER_5_01_256: double
Cells_Texture_DifferenceEntropy_ER_5_02_256: double
Cells_Texture_DifferenceEntropy_ER_5_03_256: double
Cells_Texture_DifferenceEntropy_Mito_10_00_256: double
Cells_Texture_DifferenceEntropy_Mito_10_01_256: double
Cells_Texture_DifferenceEntropy_Mito_10_02_256: double
Cells_Texture_DifferenceEntropy_Mito_10_03_256: double
Cells_Texture_DifferenceEntropy_Mito_3_00_256: double
Cells_Texture_DifferenceEntropy_Mito_3_01_256: double
Cells_Texture_DifferenceEntropy_Mito_3_02_256: double
Cells_Texture_DifferenceEntropy_Mito_3_03_256: double
Cells_Texture_DifferenceEntropy_Mito_5_00_256: double
Cells_Texture_DifferenceEntropy_Mito_5_01_256: double
Cells_Texture_DifferenceEntropy_Mito_5_02_256: double
Cells_Texture_DifferenceEntropy_Mito_5_03_256: double
Cells_Texture_DifferenceEntropy_RNA_10_00_256: double
Cells_Texture_DifferenceEntropy_RNA_10_01_256: double
Cells_Texture_DifferenceEntropy_RNA_10_02_256: double
Cells_Texture_DifferenceEntropy_RNA_10_03_256: double
Cells_Texture_DifferenceEntropy_RNA_3_00_256: double
Cells_Texture_DifferenceEntropy_RNA_3_01_256: double
Cells_Texture_DifferenceEntropy_RNA_3_02_256: double
Cells_Texture_DifferenceEntropy_RNA_3_03_256: double
Cells_Texture_DifferenceEntropy_RNA_5_00_256: double
Cells_Texture_DifferenceEntropy_RNA_5_01_256: double
Cells_Texture_DifferenceEntropy_RNA_5_02_256: double
Cells_Texture_DifferenceEntropy_RNA_5_03_256: double
Cells_Texture_DifferenceVariance_AGP_10_00_256: double
Cells_Texture_DifferenceVariance_AGP_10_01_256: double
Cells_Texture_DifferenceVariance_AGP_10_02_256: double
Cells_Texture_DifferenceVariance_AGP_10_03_256: double
Cells_Texture_DifferenceVariance_AGP_3_00_256: double
Cells_Texture_DifferenceVariance_AGP_3_01_256: double
Cells_Texture_DifferenceVariance_AGP_3_02_256: double
Cells_Texture_DifferenceVariance_AGP_3_03_256: double
Cells_Texture_DifferenceVariance_AGP_5_00_256: double
Cells_Texture_DifferenceVariance_AGP_5_01_256: double
Cells_Texture_DifferenceVariance_AGP_5_02_256: double
Cells_Texture_DifferenceVariance_AGP_5_03_256: double
Cells_Texture_DifferenceVariance_BFHigh_10_00_256: double
Cells_Texture_DifferenceVariance_BFHigh_10_01_256: double
Cells_Texture_DifferenceVariance_BFHigh_10_02_256: double
Cells_Texture_DifferenceVariance_BFHigh_10_03_256: double
Cells_Texture_DifferenceVariance_BFHigh_3_00_256: double
Cells_Texture_DifferenceVariance_BFHigh_3_01_256: double
Cells_Texture_DifferenceVariance_BFHigh_3_02_256: double
Cells_Texture_DifferenceVariance_BFHigh_3_03_256: double
Cells_Texture_DifferenceVariance_BFHigh_5_00_256: double
Cells_Texture_DifferenceVariance_BFHigh_5_01_256: double
Cells_Texture_DifferenceVariance_BFHigh_5_02_256: double
Cells_Texture_DifferenceVariance_BFHigh_5_03_256: double
Cells_Texture_DifferenceVariance_BFLow_10_00_256: double
Cells_Texture_DifferenceVariance_BFLow_10_01_256: double
Cells_Texture_DifferenceVariance_BFLow_10_02_256: double
Cells_Texture_DifferenceVariance_BFLow_10_03_256: double
Cells_Texture_DifferenceVariance_BFLow_3_00_256: double
Cells_Texture_DifferenceVariance_BFLow_3_01_256: double
Cells_Texture_DifferenceVariance_BFLow_3_02_256: double
Cells_Texture_DifferenceVariance_BFLow_3_03_256: double
Cells_Texture_DifferenceVariance_BFLow_5_00_256: double
Cells_Texture_DifferenceVariance_BFLow_5_01_256: double
Cells_Texture_DifferenceVariance_BFLow_5_02_256: double
Cells_Texture_DifferenceVariance_BFLow_5_03_256: double
Cells_Texture_DifferenceVariance_Brightfield_10_00_256: double
Cells_Texture_DifferenceVariance_Brightfield_10_01_256: double
Cells_Texture_DifferenceVariance_Brightfield_10_02_256: double
Cells_Texture_DifferenceVariance_Brightfield_10_03_256: double
Cells_Texture_DifferenceVariance_Brightfield_3_00_256: double
Cells_Texture_DifferenceVariance_Brightfield_3_01_256: double
Cells_Texture_DifferenceVariance_Brightfield_3_02_256: double
Cells_Texture_DifferenceVariance_Brightfield_3_03_256: double
Cells_Texture_DifferenceVariance_Brightfield_5_00_256: double
Cells_Texture_DifferenceVariance_Brightfield_5_01_256: double
Cells_Texture_DifferenceVariance_Brightfield_5_02_256: double
Cells_Texture_DifferenceVariance_Brightfield_5_03_256: double
Cells_Texture_DifferenceVariance_DNA_10_00_256: double
Cells_Texture_DifferenceVariance_DNA_10_01_256: double
Cells_Texture_DifferenceVariance_DNA_10_02_256: double
Cells_Texture_DifferenceVariance_DNA_10_03_256: double
Cells_Texture_DifferenceVariance_DNA_3_00_256: double
Cells_Texture_DifferenceVariance_DNA_3_01_256: double
Cells_Texture_DifferenceVariance_DNA_3_02_256: double
Cells_Texture_DifferenceVariance_DNA_3_03_256: double
Cells_Texture_DifferenceVariance_DNA_5_00_256: double
Cells_Texture_DifferenceVariance_DNA_5_01_256: double
Cells_Texture_DifferenceVariance_DNA_5_02_256: double
Cells_Texture_DifferenceVariance_DNA_5_03_256: double
Cells_Texture_DifferenceVariance_ER_10_00_256: double
Cells_Texture_DifferenceVariance_ER_10_01_256: double
Cells_Texture_DifferenceVariance_ER_10_02_256: double
Cells_Texture_DifferenceVariance_ER_10_03_256: double
Cells_Texture_DifferenceVariance_ER_3_00_256: double
Cells_Texture_DifferenceVariance_ER_3_01_256: double
Cells_Texture_DifferenceVariance_ER_3_02_256: double
Cells_Texture_DifferenceVariance_ER_3_03_256: double
Cells_Texture_DifferenceVariance_ER_5_00_256: double
Cells_Texture_DifferenceVariance_ER_5_01_256: double
Cells_Texture_DifferenceVariance_ER_5_02_256: double
Cells_Texture_DifferenceVariance_ER_5_03_256: double
Cells_Texture_DifferenceVariance_Mito_10_00_256: double
Cells_Texture_DifferenceVariance_Mito_10_01_256: double
Cells_Texture_DifferenceVariance_Mito_10_02_256: double
Cells_Texture_DifferenceVariance_Mito_10_03_256: double
Cells_Texture_DifferenceVariance_Mito_3_00_256: double
Cells_Texture_DifferenceVariance_Mito_3_01_256: double
Cells_Texture_DifferenceVariance_Mito_3_02_256: double
Cells_Texture_DifferenceVariance_Mito_3_03_256: double
Cells_Texture_DifferenceVariance_Mito_5_00_256: double
Cells_Texture_DifferenceVariance_Mito_5_01_256: double
Cells_Texture_DifferenceVariance_Mito_5_02_256: double
Cells_Texture_DifferenceVariance_Mito_5_03_256: double
Cells_Texture_DifferenceVariance_RNA_10_00_256: double
Cells_Texture_DifferenceVariance_RNA_10_01_256: double
Cells_Texture_DifferenceVariance_RNA_10_02_256: double
Cells_Texture_DifferenceVariance_RNA_10_03_256: double
Cells_Texture_DifferenceVariance_RNA_3_00_256: double
Cells_Texture_DifferenceVariance_RNA_3_01_256: double
Cells_Texture_DifferenceVariance_RNA_3_02_256: double
Cells_Texture_DifferenceVariance_RNA_3_03_256: double
Cells_Texture_DifferenceVariance_RNA_5_00_256: double
Cells_Texture_DifferenceVariance_RNA_5_01_256: double
Cells_Texture_DifferenceVariance_RNA_5_02_256: double
Cells_Texture_DifferenceVariance_RNA_5_03_256: double
Cells_Texture_Entropy_AGP_10_00_256: double
Cells_Texture_Entropy_AGP_10_01_256: double
Cells_Texture_Entropy_AGP_10_02_256: double
Cells_Texture_Entropy_AGP_10_03_256: double
Cells_Texture_Entropy_AGP_3_00_256: double
Cells_Texture_Entropy_AGP_3_01_256: double
Cells_Texture_Entropy_AGP_3_02_256: double
Cells_Texture_Entropy_AGP_3_03_256: double
Cells_Texture_Entropy_AGP_5_00_256: double
Cells_Texture_Entropy_AGP_5_01_256: double
Cells_Texture_Entropy_AGP_5_02_256: double
Cells_Texture_Entropy_AGP_5_03_256: double
Cells_Texture_Entropy_BFHigh_10_00_256: double
Cells_Texture_Entropy_BFHigh_10_01_256: double
Cells_Texture_Entropy_BFHigh_10_02_256: double
Cells_Texture_Entropy_BFHigh_10_03_256: double
Cells_Texture_Entropy_BFHigh_3_00_256: double
Cells_Texture_Entropy_BFHigh_3_01_256: double
Cells_Texture_Entropy_BFHigh_3_02_256: double
Cells_Texture_Entropy_BFHigh_3_03_256: double
Cells_Texture_Entropy_BFHigh_5_00_256: double
Cells_Texture_Entropy_BFHigh_5_01_256: double
Cells_Texture_Entropy_BFHigh_5_02_256: double
Cells_Texture_Entropy_BFHigh_5_03_256: double
Cells_Texture_Entropy_BFLow_10_00_256: double
Cells_Texture_Entropy_BFLow_10_01_256: double
Cells_Texture_Entropy_BFLow_10_02_256: double
Cells_Texture_Entropy_BFLow_10_03_256: double
Cells_Texture_Entropy_BFLow_3_00_256: double
Cells_Texture_Entropy_BFLow_3_01_256: double
Cells_Texture_Entropy_BFLow_3_02_256: double
Cells_Texture_Entropy_BFLow_3_03_256: double
Cells_Texture_Entropy_BFLow_5_00_256: double
Cells_Texture_Entropy_BFLow_5_01_256: double
Cells_Texture_Entropy_BFLow_5_02_256: double
Cells_Texture_Entropy_BFLow_5_03_256: double
Cells_Texture_Entropy_Brightfield_10_00_256: double
Cells_Texture_Entropy_Brightfield_10_01_256: double
Cells_Texture_Entropy_Brightfield_10_02_256: double
Cells_Texture_Entropy_Brightfield_10_03_256: double
Cells_Texture_Entropy_Brightfield_3_00_256: double
Cells_Texture_Entropy_Brightfield_3_01_256: double
Cells_Texture_Entropy_Brightfield_3_02_256: double
Cells_Texture_Entropy_Brightfield_3_03_256: double
Cells_Texture_Entropy_Brightfield_5_00_256: double
Cells_Texture_Entropy_Brightfield_5_01_256: double
Cells_Texture_Entropy_Brightfield_5_02_256: double
Cells_Texture_Entropy_Brightfield_5_03_256: double
Cells_Texture_Entropy_DNA_10_00_256: double
Cells_Texture_Entropy_DNA_10_01_256: double
Cells_Texture_Entropy_DNA_10_02_256: double
Cells_Texture_Entropy_DNA_10_03_256: double
Cells_Texture_Entropy_DNA_3_00_256: double
Cells_Texture_Entropy_DNA_3_01_256: double
Cells_Texture_Entropy_DNA_3_02_256: double
Cells_Texture_Entropy_DNA_3_03_256: double
Cells_Texture_Entropy_DNA_5_00_256: double
Cells_Texture_Entropy_DNA_5_01_256: double
Cells_Texture_Entropy_DNA_5_02_256: double
Cells_Texture_Entropy_DNA_5_03_256: double
Cells_Texture_Entropy_ER_10_00_256: double
Cells_Texture_Entropy_ER_10_01_256: double
Cells_Texture_Entropy_ER_10_02_256: double
Cells_Texture_Entropy_ER_10_03_256: double
Cells_Texture_Entropy_ER_3_00_256: double
Cells_Texture_Entropy_ER_3_01_256: double
Cells_Texture_Entropy_ER_3_02_256: double
Cells_Texture_Entropy_ER_3_03_256: double
Cells_Texture_Entropy_ER_5_00_256: double
Cells_Texture_Entropy_ER_5_01_256: double
Cells_Texture_Entropy_ER_5_02_256: double
Cells_Texture_Entropy_ER_5_03_256: double
Cells_Texture_Entropy_Mito_10_00_256: double
Cells_Texture_Entropy_Mito_10_01_256: double
Cells_Texture_Entropy_Mito_10_02_256: double
Cells_Texture_Entropy_Mito_10_03_256: double
Cells_Texture_Entropy_Mito_3_00_256: double
Cells_Texture_Entropy_Mito_3_01_256: double
Cells_Texture_Entropy_Mito_3_02_256: double
Cells_Texture_Entropy_Mito_3_03_256: double
Cells_Texture_Entropy_Mito_5_00_256: double
Cells_Texture_Entropy_Mito_5_01_256: double
Cells_Texture_Entropy_Mito_5_02_256: double
Cells_Texture_Entropy_Mito_5_03_256: double
Cells_Texture_Entropy_RNA_10_00_256: double
Cells_Texture_Entropy_RNA_10_01_256: double
Cells_Texture_Entropy_RNA_10_02_256: double
Cells_Texture_Entropy_RNA_10_03_256: double
Cells_Texture_Entropy_RNA_3_00_256: double
Cells_Texture_Entropy_RNA_3_01_256: double
Cells_Texture_Entropy_RNA_3_02_256: double
Cells_Texture_Entropy_RNA_3_03_256: double
Cells_Texture_Entropy_RNA_5_00_256: double
Cells_Texture_Entropy_RNA_5_01_256: double
Cells_Texture_Entropy_RNA_5_02_256: double
Cells_Texture_Entropy_RNA_5_03_256: double
Cells_Texture_InfoMeas1_AGP_10_00_256: double
Cells_Texture_InfoMeas1_AGP_10_01_256: double
Cells_Texture_InfoMeas1_AGP_10_02_256: double
Cells_Texture_InfoMeas1_AGP_10_03_256: double
Cells_Texture_InfoMeas1_AGP_3_00_256: double
Cells_Texture_InfoMeas1_AGP_3_01_256: double
Cells_Texture_InfoMeas1_AGP_3_02_256: double
Cells_Texture_InfoMeas1_AGP_3_03_256: double
Cells_Texture_InfoMeas1_AGP_5_00_256: double
Cells_Texture_InfoMeas1_AGP_5_01_256: double
Cells_Texture_InfoMeas1_AGP_5_02_256: double
Cells_Texture_InfoMeas1_AGP_5_03_256: double
Cells_Texture_InfoMeas1_BFHigh_10_00_256: double
Cells_Texture_InfoMeas1_BFHigh_10_01_256: double
Cells_Texture_InfoMeas1_BFHigh_10_02_256: double
Cells_Texture_InfoMeas1_BFHigh_10_03_256: double
Cells_Texture_InfoMeas1_BFHigh_3_00_256: double
Cells_Texture_InfoMeas1_BFHigh_3_01_256: double
Cells_Texture_InfoMeas1_BFHigh_3_02_256: double
Cells_Texture_InfoMeas1_BFHigh_3_03_256: double
Cells_Texture_InfoMeas1_BFHigh_5_00_256: double
Cells_Texture_InfoMeas1_BFHigh_5_01_256: double
Cells_Texture_InfoMeas1_BFHigh_5_02_256: double
Cells_Texture_InfoMeas1_BFHigh_5_03_256: double
Cells_Texture_InfoMeas1_BFLow_10_00_256: double
Cells_Texture_InfoMeas1_BFLow_10_01_256: double
Cells_Texture_InfoMeas1_BFLow_10_02_256: double
Cells_Texture_InfoMeas1_BFLow_10_03_256: double
Cells_Texture_InfoMeas1_BFLow_3_00_256: double
Cells_Texture_InfoMeas1_BFLow_3_01_256: double
Cells_Texture_InfoMeas1_BFLow_3_02_256: double
Cells_Texture_InfoMeas1_BFLow_3_03_256: double
Cells_Texture_InfoMeas1_BFLow_5_00_256: double
Cells_Texture_InfoMeas1_BFLow_5_01_256: double
Cells_Texture_InfoMeas1_BFLow_5_02_256: double
Cells_Texture_InfoMeas1_BFLow_5_03_256: double
Cells_Texture_InfoMeas1_Brightfield_10_00_256: double
Cells_Texture_InfoMeas1_Brightfield_10_01_256: double
Cells_Texture_InfoMeas1_Brightfield_10_02_256: double
Cells_Texture_InfoMeas1_Brightfield_10_03_256: double
Cells_Texture_InfoMeas1_Brightfield_3_00_256: double
Cells_Texture_InfoMeas1_Brightfield_3_01_256: double
Cells_Texture_InfoMeas1_Brightfield_3_02_256: double
Cells_Texture_InfoMeas1_Brightfield_3_03_256: double
Cells_Texture_InfoMeas1_Brightfield_5_00_256: double
Cells_Texture_InfoMeas1_Brightfield_5_01_256: double
Cells_Texture_InfoMeas1_Brightfield_5_02_256: double
Cells_Texture_InfoMeas1_Brightfield_5_03_256: double
Cells_Texture_InfoMeas1_DNA_10_00_256: double
Cells_Texture_InfoMeas1_DNA_10_01_256: double
Cells_Texture_InfoMeas1_DNA_10_02_256: double
Cells_Texture_InfoMeas1_DNA_10_03_256: double
Cells_Texture_InfoMeas1_DNA_3_00_256: double
Cells_Texture_InfoMeas1_DNA_3_01_256: double
Cells_Texture_InfoMeas1_DNA_3_02_256: double
Cells_Texture_InfoMeas1_DNA_3_03_256: double
Cells_Texture_InfoMeas1_DNA_5_00_256: double
Cells_Texture_InfoMeas1_DNA_5_01_256: double
Cells_Texture_InfoMeas1_DNA_5_02_256: double
Cells_Texture_InfoMeas1_DNA_5_03_256: double
Cells_Texture_InfoMeas1_ER_10_00_256: double
Cells_Texture_InfoMeas1_ER_10_01_256: double
Cells_Texture_InfoMeas1_ER_10_02_256: double
Cells_Texture_InfoMeas1_ER_10_03_256: double
Cells_Texture_InfoMeas1_ER_3_00_256: double
Cells_Texture_InfoMeas1_ER_3_01_256: double
Cells_Texture_InfoMeas1_ER_3_02_256: double
Cells_Texture_InfoMeas1_ER_3_03_256: double
Cells_Texture_InfoMeas1_ER_5_00_256: double
Cells_Texture_InfoMeas1_ER_5_01_256: double
Cells_Texture_InfoMeas1_ER_5_02_256: double
Cells_Texture_InfoMeas1_ER_5_03_256: double
Cells_Texture_InfoMeas1_Mito_10_00_256: double
Cells_Texture_InfoMeas1_Mito_10_01_256: double
Cells_Texture_InfoMeas1_Mito_10_02_256: double
Cells_Texture_InfoMeas1_Mito_10_03_256: double
Cells_Texture_InfoMeas1_Mito_3_00_256: double
Cells_Texture_InfoMeas1_Mito_3_01_256: double
Cells_Texture_InfoMeas1_Mito_3_02_256: double
Cells_Texture_InfoMeas1_Mito_3_03_256: double
Cells_Texture_InfoMeas1_Mito_5_00_256: double
Cells_Texture_InfoMeas1_Mito_5_01_256: double
Cells_Texture_InfoMeas1_Mito_5_02_256: double
Cells_Texture_InfoMeas1_Mito_5_03_256: double
Cells_Texture_InfoMeas1_RNA_10_00_256: double
Cells_Texture_InfoMeas1_RNA_10_01_256: double
Cells_Texture_InfoMeas1_RNA_10_02_256: double
Cells_Texture_InfoMeas1_RNA_10_03_256: double
Cells_Texture_InfoMeas1_RNA_3_00_256: double
Cells_Texture_InfoMeas1_RNA_3_01_256: double
Cells_Texture_InfoMeas1_RNA_3_02_256: double
Cells_Texture_InfoMeas1_RNA_3_03_256: double
Cells_Texture_InfoMeas1_RNA_5_00_256: double
Cells_Texture_InfoMeas1_RNA_5_01_256: double
Cells_Texture_InfoMeas1_RNA_5_02_256: double
Cells_Texture_InfoMeas1_RNA_5_03_256: double
Cells_Texture_InfoMeas2_AGP_10_00_256: double
Cells_Texture_InfoMeas2_AGP_10_01_256: double
Cells_Texture_InfoMeas2_AGP_10_02_256: double
Cells_Texture_InfoMeas2_AGP_10_03_256: double
Cells_Texture_InfoMeas2_AGP_3_00_256: double
Cells_Texture_InfoMeas2_AGP_3_01_256: double
Cells_Texture_InfoMeas2_AGP_3_02_256: double
Cells_Texture_InfoMeas2_AGP_3_03_256: double
Cells_Texture_InfoMeas2_AGP_5_00_256: double
Cells_Texture_InfoMeas2_AGP_5_01_256: double
Cells_Texture_InfoMeas2_AGP_5_02_256: double
Cells_Texture_InfoMeas2_AGP_5_03_256: double
Cells_Texture_InfoMeas2_BFHigh_10_00_256: double
Cells_Texture_InfoMeas2_BFHigh_10_01_256: double
Cells_Texture_InfoMeas2_BFHigh_10_02_256: double
Cells_Texture_InfoMeas2_BFHigh_10_03_256: double
Cells_Texture_InfoMeas2_BFHigh_3_00_256: double
Cells_Texture_InfoMeas2_BFHigh_3_01_256: double
Cells_Texture_InfoMeas2_BFHigh_3_02_256: double
Cells_Texture_InfoMeas2_BFHigh_3_03_256: double
Cells_Texture_InfoMeas2_BFHigh_5_00_256: double
Cells_Texture_InfoMeas2_BFHigh_5_01_256: double
Cells_Texture_InfoMeas2_BFHigh_5_02_256: double
Cells_Texture_InfoMeas2_BFHigh_5_03_256: double
Cells_Texture_InfoMeas2_BFLow_10_00_256: double
Cells_Texture_InfoMeas2_BFLow_10_01_256: double
Cells_Texture_InfoMeas2_BFLow_10_02_256: double
Cells_Texture_InfoMeas2_BFLow_10_03_256: double
Cells_Texture_InfoMeas2_BFLow_3_00_256: double
Cells_Texture_InfoMeas2_BFLow_3_01_256: double
Cells_Texture_InfoMeas2_BFLow_3_02_256: double
Cells_Texture_InfoMeas2_BFLow_3_03_256: double
Cells_Texture_InfoMeas2_BFLow_5_00_256: double
Cells_Texture_InfoMeas2_BFLow_5_01_256: double
Cells_Texture_InfoMeas2_BFLow_5_02_256: double
Cells_Texture_InfoMeas2_BFLow_5_03_256: double
Cells_Texture_InfoMeas2_Brightfield_10_00_256: double
Cells_Texture_InfoMeas2_Brightfield_10_01_256: double
Cells_Texture_InfoMeas2_Brightfield_10_02_256: double
Cells_Texture_InfoMeas2_Brightfield_10_03_256: double
Cells_Texture_InfoMeas2_Brightfield_3_00_256: double
Cells_Texture_InfoMeas2_Brightfield_3_01_256: double
Cells_Texture_InfoMeas2_Brightfield_3_02_256: double
Cells_Texture_InfoMeas2_Brightfield_3_03_256: double
Cells_Texture_InfoMeas2_Brightfield_5_00_256: double
Cells_Texture_InfoMeas2_Brightfield_5_01_256: double
Cells_Texture_InfoMeas2_Brightfield_5_02_256: double
Cells_Texture_InfoMeas2_Brightfield_5_03_256: double
Cells_Texture_InfoMeas2_DNA_10_00_256: double
Cells_Texture_InfoMeas2_DNA_10_01_256: double
Cells_Texture_InfoMeas2_DNA_10_02_256: double
Cells_Texture_InfoMeas2_DNA_10_03_256: double
Cells_Texture_InfoMeas2_DNA_3_00_256: double
Cells_Texture_InfoMeas2_DNA_3_01_256: double
Cells_Texture_InfoMeas2_DNA_3_02_256: double
Cells_Texture_InfoMeas2_DNA_3_03_256: double
Cells_Texture_InfoMeas2_DNA_5_00_256: double
Cells_Texture_InfoMeas2_DNA_5_01_256: double
Cells_Texture_InfoMeas2_DNA_5_02_256: double
Cells_Texture_InfoMeas2_DNA_5_03_256: double
Cells_Texture_InfoMeas2_ER_10_00_256: double
Cells_Texture_InfoMeas2_ER_10_01_256: double
Cells_Texture_InfoMeas2_ER_10_02_256: double
Cells_Texture_InfoMeas2_ER_10_03_256: double
Cells_Texture_InfoMeas2_ER_3_00_256: double
Cells_Texture_InfoMeas2_ER_3_01_256: double
Cells_Texture_InfoMeas2_ER_3_02_256: double
Cells_Texture_InfoMeas2_ER_3_03_256: double
Cells_Texture_InfoMeas2_ER_5_00_256: double
Cells_Texture_InfoMeas2_ER_5_01_256: double
Cells_Texture_InfoMeas2_ER_5_02_256: double
Cells_Texture_InfoMeas2_ER_5_03_256: double
Cells_Texture_InfoMeas2_Mito_10_00_256: double
Cells_Texture_InfoMeas2_Mito_10_01_256: double
Cells_Texture_InfoMeas2_Mito_10_02_256: double
Cells_Texture_InfoMeas2_Mito_10_03_256: double
Cells_Texture_InfoMeas2_Mito_3_00_256: double
Cells_Texture_InfoMeas2_Mito_3_01_256: double
Cells_Texture_InfoMeas2_Mito_3_02_256: double
Cells_Texture_InfoMeas2_Mito_3_03_256: double
Cells_Texture_InfoMeas2_Mito_5_00_256: double
Cells_Texture_InfoMeas2_Mito_5_01_256: double
Cells_Texture_InfoMeas2_Mito_5_02_256: double
Cells_Texture_InfoMeas2_Mito_5_03_256: double
Cells_Texture_InfoMeas2_RNA_10_00_256: double
Cells_Texture_InfoMeas2_RNA_10_01_256: double
Cells_Texture_InfoMeas2_RNA_10_02_256: double
Cells_Texture_InfoMeas2_RNA_10_03_256: double
Cells_Texture_InfoMeas2_RNA_3_00_256: double
Cells_Texture_InfoMeas2_RNA_3_01_256: double
Cells_Texture_InfoMeas2_RNA_3_02_256: double
Cells_Texture_InfoMeas2_RNA_3_03_256: double
Cells_Texture_InfoMeas2_RNA_5_00_256: double
Cells_Texture_InfoMeas2_RNA_5_01_256: double
Cells_Texture_InfoMeas2_RNA_5_02_256: double
Cells_Texture_InfoMeas2_RNA_5_03_256: double
Cells_Texture_InverseDifferenceMoment_AGP_10_00_256: double
Cells_Texture_InverseDifferenceMoment_AGP_10_01_256: double
Cells_Texture_InverseDifferenceMoment_AGP_10_02_256: double
Cells_Texture_InverseDifferenceMoment_AGP_10_03_256: double
Cells_Texture_InverseDifferenceMoment_AGP_3_00_256: double
Cells_Texture_InverseDifferenceMoment_AGP_3_01_256: double
Cells_Texture_InverseDifferenceMoment_AGP_3_02_256: double
Cells_Texture_InverseDifferenceMoment_AGP_3_03_256: double
Cells_Texture_InverseDifferenceMoment_AGP_5_00_256: double
Cells_Texture_InverseDifferenceMoment_AGP_5_01_256: double
Cells_Texture_InverseDifferenceMoment_AGP_5_02_256: double
Cells_Texture_InverseDifferenceMoment_AGP_5_03_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_10_00_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_10_01_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_10_02_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_10_03_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_3_00_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_3_01_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_3_02_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_3_03_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_5_00_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_5_01_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_5_02_256: double
Cells_Texture_InverseDifferenceMoment_BFHigh_5_03_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_10_00_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_10_01_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_10_02_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_10_03_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_3_00_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_3_01_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_3_02_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_3_03_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_5_00_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_5_01_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_5_02_256: double
Cells_Texture_InverseDifferenceMoment_BFLow_5_03_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_10_00_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_10_01_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_10_02_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_10_03_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_3_00_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_3_01_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_3_02_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_3_03_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_5_00_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_5_01_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_5_02_256: double
Cells_Texture_InverseDifferenceMoment_Brightfield_5_03_256: double
Cells_Texture_InverseDifferenceMoment_DNA_10_00_256: double
Cells_Texture_InverseDifferenceMoment_DNA_10_01_256: double
Cells_Texture_InverseDifferenceMoment_DNA_10_02_256: double
Cells_Texture_InverseDifferenceMoment_DNA_10_03_256: double
Cells_Texture_InverseDifferenceMoment_DNA_3_00_256: double
Cells_Texture_InverseDifferenceMoment_DNA_3_01_256: double
Cells_Texture_InverseDifferenceMoment_DNA_3_02_256: double
Cells_Texture_InverseDifferenceMoment_DNA_3_03_256: double
Cells_Texture_InverseDifferenceMoment_DNA_5_00_256: double
Cells_Texture_InverseDifferenceMoment_DNA_5_01_256: double
Cells_Texture_InverseDifferenceMoment_DNA_5_02_256: double
Cells_Texture_InverseDifferenceMoment_DNA_5_03_256: double
Cells_Texture_InverseDifferenceMoment_ER_10_00_256: double
Cells_Texture_InverseDifferenceMoment_ER_10_01_256: double
Cells_Texture_InverseDifferenceMoment_ER_10_02_256: double
Cells_Texture_InverseDifferenceMoment_ER_10_03_256: double
Cells_Texture_InverseDifferenceMoment_ER_3_00_256: double
Cells_Texture_InverseDifferenceMoment_ER_3_01_256: double
Cells_Texture_InverseDifferenceMoment_ER_3_02_256: double
Cells_Texture_InverseDifferenceMoment_ER_3_03_256: double
Cells_Texture_InverseDifferenceMoment_ER_5_00_256: double
Cells_Texture_InverseDifferenceMoment_ER_5_01_256: double
Cells_Texture_InverseDifferenceMoment_ER_5_02_256: double
Cells_Texture_InverseDifferenceMoment_ER_5_03_256: double
Cells_Texture_InverseDifferenceMoment_Mito_10_00_256: double
Cells_Texture_InverseDifferenceMoment_Mito_10_01_256: double
Cells_Texture_InverseDifferenceMoment_Mito_10_02_256: double
Cells_Texture_InverseDifferenceMoment_Mito_10_03_256: double
Cells_Texture_InverseDifferenceMoment_Mito_3_00_256: double
Cells_Texture_InverseDifferenceMoment_Mito_3_01_256: double
Cells_Texture_InverseDifferenceMoment_Mito_3_02_256: double
Cells_Texture_InverseDifferenceMoment_Mito_3_03_256: double
Cells_Texture_InverseDifferenceMoment_Mito_5_00_256: double
Cells_Texture_InverseDifferenceMoment_Mito_5_01_256: double
Cells_Texture_InverseDifferenceMoment_Mito_5_02_256: double
Cells_Texture_InverseDifferenceMoment_Mito_5_03_256: double
Cells_Texture_InverseDifferenceMoment_RNA_10_00_256: double
Cells_Texture_InverseDifferenceMoment_RNA_10_01_256: double
Cells_Texture_InverseDifferenceMoment_RNA_10_02_256: double
Cells_Texture_InverseDifferenceMoment_RNA_10_03_256: double
Cells_Texture_InverseDifferenceMoment_RNA_3_00_256: double
Cells_Texture_InverseDifferenceMoment_RNA_3_01_256: double
Cells_Texture_InverseDifferenceMoment_RNA_3_02_256: double
Cells_Texture_InverseDifferenceMoment_RNA_3_03_256: double
Cells_Texture_InverseDifferenceMoment_RNA_5_00_256: double
Cells_Texture_InverseDifferenceMoment_RNA_5_01_256: double
Cells_Texture_InverseDifferenceMoment_RNA_5_02_256: double
Cells_Texture_InverseDifferenceMoment_RNA_5_03_256: double
Cells_Texture_SumAverage_AGP_10_00_256: double
Cells_Texture_SumAverage_AGP_10_01_256: double
Cells_Texture_SumAverage_AGP_10_02_256: double
Cells_Texture_SumAverage_AGP_10_03_256: double
Cells_Texture_SumAverage_AGP_3_00_256: double
Cells_Texture_SumAverage_AGP_3_01_256: double
Cells_Texture_SumAverage_AGP_3_02_256: double
Cells_Texture_SumAverage_AGP_3_03_256: double
Cells_Texture_SumAverage_AGP_5_00_256: double
Cells_Texture_SumAverage_AGP_5_01_256: double
Cells_Texture_SumAverage_AGP_5_02_256: double
Cells_Texture_SumAverage_AGP_5_03_256: double
Cells_Texture_SumAverage_BFHigh_10_00_256: double
Cells_Texture_SumAverage_BFHigh_10_01_256: double
Cells_Texture_SumAverage_BFHigh_10_02_256: double
Cells_Texture_SumAverage_BFHigh_10_03_256: double
Cells_Texture_SumAverage_BFHigh_3_00_256: double
Cells_Texture_SumAverage_BFHigh_3_01_256: double
Cells_Texture_SumAverage_BFHigh_3_02_256: double
Cells_Texture_SumAverage_BFHigh_3_03_256: double
Cells_Texture_SumAverage_BFHigh_5_00_256: double
Cells_Texture_SumAverage_BFHigh_5_01_256: double
Cells_Texture_SumAverage_BFHigh_5_02_256: double
Cells_Texture_SumAverage_BFHigh_5_03_256: double
Cells_Texture_SumAverage_BFLow_10_00_256: double
Cells_Texture_SumAverage_BFLow_10_01_256: double
Cells_Texture_SumAverage_BFLow_10_02_256: double
Cells_Texture_SumAverage_BFLow_10_03_256: double
Cells_Texture_SumAverage_BFLow_3_00_256: double
Cells_Texture_SumAverage_BFLow_3_01_256: double
Cells_Texture_SumAverage_BFLow_3_02_256: double
Cells_Texture_SumAverage_BFLow_3_03_256: double
Cells_Texture_SumAverage_BFLow_5_00_256: double
Cells_Texture_SumAverage_BFLow_5_01_256: double
Cells_Texture_SumAverage_BFLow_5_02_256: double
Cells_Texture_SumAverage_BFLow_5_03_256: double
Cells_Texture_SumAverage_Brightfield_10_00_256: double
Cells_Texture_SumAverage_Brightfield_10_01_256: double
Cells_Texture_SumAverage_Brightfield_10_02_256: double
Cells_Texture_SumAverage_Brightfield_10_03_256: double
Cells_Texture_SumAverage_Brightfield_3_00_256: double
Cells_Texture_SumAverage_Brightfield_3_01_256: double
Cells_Texture_SumAverage_Brightfield_3_02_256: double
Cells_Texture_SumAverage_Brightfield_3_03_256: double
Cells_Texture_SumAverage_Brightfield_5_00_256: double
Cells_Texture_SumAverage_Brightfield_5_01_256: double
Cells_Texture_SumAverage_Brightfield_5_02_256: double
Cells_Texture_SumAverage_Brightfield_5_03_256: double
Cells_Texture_SumAverage_DNA_10_00_256: double
Cells_Texture_SumAverage_DNA_10_01_256: double
Cells_Texture_SumAverage_DNA_10_02_256: double
Cells_Texture_SumAverage_DNA_10_03_256: double
Cells_Texture_SumAverage_DNA_3_00_256: double
Cells_Texture_SumAverage_DNA_3_01_256: double
Cells_Texture_SumAverage_DNA_3_02_256: double
Cells_Texture_SumAverage_DNA_3_03_256: double
Cells_Texture_SumAverage_DNA_5_00_256: double
Cells_Texture_SumAverage_DNA_5_01_256: double
Cells_Texture_SumAverage_DNA_5_02_256: double
Cells_Texture_SumAverage_DNA_5_03_256: double
Cells_Texture_SumAverage_ER_10_00_256: double
Cells_Texture_SumAverage_ER_10_01_256: double
Cells_Texture_SumAverage_ER_10_02_256: double
Cells_Texture_SumAverage_ER_10_03_256: double
Cells_Texture_SumAverage_ER_3_00_256: double
Cells_Texture_SumAverage_ER_3_01_256: double
Cells_Texture_SumAverage_ER_3_02_256: double
Cells_Texture_SumAverage_ER_3_03_256: double
Cells_Texture_SumAverage_ER_5_00_256: double
Cells_Texture_SumAverage_ER_5_01_256: double
Cells_Texture_SumAverage_ER_5_02_256: double
Cells_Texture_SumAverage_ER_5_03_256: double
Cells_Texture_SumAverage_Mito_10_00_256: double
Cells_Texture_SumAverage_Mito_10_01_256: double
Cells_Texture_SumAverage_Mito_10_02_256: double
Cells_Texture_SumAverage_Mito_10_03_256: double
Cells_Texture_SumAverage_Mito_3_00_256: double
Cells_Texture_SumAverage_Mito_3_01_256: double
Cells_Texture_SumAverage_Mito_3_02_256: double
Cells_Texture_SumAverage_Mito_3_03_256: double
Cells_Texture_SumAverage_Mito_5_00_256: double
Cells_Texture_SumAverage_Mito_5_01_256: double
Cells_Texture_SumAverage_Mito_5_02_256: double
Cells_Texture_SumAverage_Mito_5_03_256: double
Cells_Texture_SumAverage_RNA_10_00_256: double
Cells_Texture_SumAverage_RNA_10_01_256: double
Cells_Texture_SumAverage_RNA_10_02_256: double
Cells_Texture_SumAverage_RNA_10_03_256: double
Cells_Texture_SumAverage_RNA_3_00_256: double
Cells_Texture_SumAverage_RNA_3_01_256: double
Cells_Texture_SumAverage_RNA_3_02_256: double
Cells_Texture_SumAverage_RNA_3_03_256: double
Cells_Texture_SumAverage_RNA_5_00_256: double
Cells_Texture_SumAverage_RNA_5_01_256: double
Cells_Texture_SumAverage_RNA_5_02_256: double
Cells_Texture_SumAverage_RNA_5_03_256: double
Cells_Texture_SumEntropy_AGP_10_00_256: double
Cells_Texture_SumEntropy_AGP_10_01_256: double
Cells_Texture_SumEntropy_AGP_10_02_256: double
Cells_Texture_SumEntropy_AGP_10_03_256: double
Cells_Texture_SumEntropy_AGP_3_00_256: double
Cells_Texture_SumEntropy_AGP_3_01_256: double
Cells_Texture_SumEntropy_AGP_3_02_256: double
Cells_Texture_SumEntropy_AGP_3_03_256: double
Cells_Texture_SumEntropy_AGP_5_00_256: double
Cells_Texture_SumEntropy_AGP_5_01_256: double
Cells_Texture_SumEntropy_AGP_5_02_256: double
Cells_Texture_SumEntropy_AGP_5_03_256: double
Cells_Texture_SumEntropy_BFHigh_10_00_256: double
Cells_Texture_SumEntropy_BFHigh_10_01_256: double
Cells_Texture_SumEntropy_BFHigh_10_02_256: double
Cells_Texture_SumEntropy_BFHigh_10_03_256: double
Cells_Texture_SumEntropy_BFHigh_3_00_256: double
Cells_Texture_SumEntropy_BFHigh_3_01_256: double
Cells_Texture_SumEntropy_BFHigh_3_02_256: double
Cells_Texture_SumEntropy_BFHigh_3_03_256: double
Cells_Texture_SumEntropy_BFHigh_5_00_256: double
Cells_Texture_SumEntropy_BFHigh_5_01_256: double
Cells_Texture_SumEntropy_BFHigh_5_02_256: double
Cells_Texture_SumEntropy_BFHigh_5_03_256: double
Cells_Texture_SumEntropy_BFLow_10_00_256: double
Cells_Texture_SumEntropy_BFLow_10_01_256: double
Cells_Texture_SumEntropy_BFLow_10_02_256: double
Cells_Texture_SumEntropy_BFLow_10_03_256: double
Cells_Texture_SumEntropy_BFLow_3_00_256: double
Cells_Texture_SumEntropy_BFLow_3_01_256: double
Cells_Texture_SumEntropy_BFLow_3_02_256: double
Cells_Texture_SumEntropy_BFLow_3_03_256: double
Cells_Texture_SumEntropy_BFLow_5_00_256: double
Cells_Texture_SumEntropy_BFLow_5_01_256: double
Cells_Texture_SumEntropy_BFLow_5_02_256: double
Cells_Texture_SumEntropy_BFLow_5_03_256: double
Cells_Texture_SumEntropy_Brightfield_10_00_256: double
Cells_Texture_SumEntropy_Brightfield_10_01_256: double
Cells_Texture_SumEntropy_Brightfield_10_02_256: double
Cells_Texture_SumEntropy_Brightfield_10_03_256: double
Cells_Texture_SumEntropy_Brightfield_3_00_256: double
Cells_Texture_SumEntropy_Brightfield_3_01_256: double
Cells_Texture_SumEntropy_Brightfield_3_02_256: double
Cells_Texture_SumEntropy_Brightfield_3_03_256: double
Cells_Texture_SumEntropy_Brightfield_5_00_256: double
Cells_Texture_SumEntropy_Brightfield_5_01_256: double
Cells_Texture_SumEntropy_Brightfield_5_02_256: double
Cells_Texture_SumEntropy_Brightfield_5_03_256: double
Cells_Texture_SumEntropy_DNA_10_00_256: double
Cells_Texture_SumEntropy_DNA_10_01_256: double
Cells_Texture_SumEntropy_DNA_10_02_256: double
Cells_Texture_SumEntropy_DNA_10_03_256: double
Cells_Texture_SumEntropy_DNA_3_00_256: double
Cells_Texture_SumEntropy_DNA_3_01_256: double
Cells_Texture_SumEntropy_DNA_3_02_256: double
Cells_Texture_SumEntropy_DNA_3_03_256: double
Cells_Texture_SumEntropy_DNA_5_00_256: double
Cells_Texture_SumEntropy_DNA_5_01_256: double
Cells_Texture_SumEntropy_DNA_5_02_256: double
Cells_Texture_SumEntropy_DNA_5_03_256: double
Cells_Texture_SumEntropy_ER_10_00_256: double
Cells_Texture_SumEntropy_ER_10_01_256: double
Cells_Texture_SumEntropy_ER_10_02_256: double
Cells_Texture_SumEntropy_ER_10_03_256: double
Cells_Texture_SumEntropy_ER_3_00_256: double
Cells_Texture_SumEntropy_ER_3_01_256: double
Cells_Texture_SumEntropy_ER_3_02_256: double
Cells_Texture_SumEntropy_ER_3_03_256: double
Cells_Texture_SumEntropy_ER_5_00_256: double
Cells_Texture_SumEntropy_ER_5_01_256: double
Cells_Texture_SumEntropy_ER_5_02_256: double
Cells_Texture_SumEntropy_ER_5_03_256: double
Cells_Texture_SumEntropy_Mito_10_00_256: double
Cells_Texture_SumEntropy_Mito_10_01_256: double
Cells_Texture_SumEntropy_Mito_10_02_256: double
Cells_Texture_SumEntropy_Mito_10_03_256: double
Cells_Texture_SumEntropy_Mito_3_00_256: double
Cells_Texture_SumEntropy_Mito_3_01_256: double
Cells_Texture_SumEntropy_Mito_3_02_256: double
Cells_Texture_SumEntropy_Mito_3_03_256: double
Cells_Texture_SumEntropy_Mito_5_00_256: double
Cells_Texture_SumEntropy_Mito_5_01_256: double
Cells_Texture_SumEntropy_Mito_5_02_256: double
Cells_Texture_SumEntropy_Mito_5_03_256: double
Cells_Texture_SumEntropy_RNA_10_00_256: double
Cells_Texture_SumEntropy_RNA_10_01_256: double
Cells_Texture_SumEntropy_RNA_10_02_256: double
Cells_Texture_SumEntropy_RNA_10_03_256: double
Cells_Texture_SumEntropy_RNA_3_00_256: double
Cells_Texture_SumEntropy_RNA_3_01_256: double
Cells_Texture_SumEntropy_RNA_3_02_256: double
Cells_Texture_SumEntropy_RNA_3_03_256: double
Cells_Texture_SumEntropy_RNA_5_00_256: double
Cells_Texture_SumEntropy_RNA_5_01_256: double
Cells_Texture_SumEntropy_RNA_5_02_256: double
Cells_Texture_SumEntropy_RNA_5_03_256: double
Cells_Texture_SumVariance_AGP_10_00_256: double
Cells_Texture_SumVariance_AGP_10_01_256: double
Cells_Texture_SumVariance_AGP_10_02_256: double
Cells_Texture_SumVariance_AGP_10_03_256: double
Cells_Texture_SumVariance_AGP_3_00_256: double
Cells_Texture_SumVariance_AGP_3_01_256: double
Cells_Texture_SumVariance_AGP_3_02_256: double
Cells_Texture_SumVariance_AGP_3_03_256: double
Cells_Texture_SumVariance_AGP_5_00_256: double
Cells_Texture_SumVariance_AGP_5_01_256: double
Cells_Texture_SumVariance_AGP_5_02_256: double
Cells_Texture_SumVariance_AGP_5_03_256: double
Cells_Texture_SumVariance_BFHigh_10_00_256: double
Cells_Texture_SumVariance_BFHigh_10_01_256: double
Cells_Texture_SumVariance_BFHigh_10_02_256: double
Cells_Texture_SumVariance_BFHigh_10_03_256: double
Cells_Texture_SumVariance_BFHigh_3_00_256: double
Cells_Texture_SumVariance_BFHigh_3_01_256: double
Cells_Texture_SumVariance_BFHigh_3_02_256: double
Cells_Texture_SumVariance_BFHigh_3_03_256: double
Cells_Texture_SumVariance_BFHigh_5_00_256: double
Cells_Texture_SumVariance_BFHigh_5_01_256: double
Cells_Texture_SumVariance_BFHigh_5_02_256: double
Cells_Texture_SumVariance_BFHigh_5_03_256: double
Cells_Texture_SumVariance_BFLow_10_00_256: double
Cells_Texture_SumVariance_BFLow_10_01_256: double
Cells_Texture_SumVariance_BFLow_10_02_256: double
Cells_Texture_SumVariance_BFLow_10_03_256: double
Cells_Texture_SumVariance_BFLow_3_00_256: double
Cells_Texture_SumVariance_BFLow_3_01_256: double
Cells_Texture_SumVariance_BFLow_3_02_256: double
Cells_Texture_SumVariance_BFLow_3_03_256: double
Cells_Texture_SumVariance_BFLow_5_00_256: double
Cells_Texture_SumVariance_BFLow_5_01_256: double
Cells_Texture_SumVariance_BFLow_5_02_256: double
Cells_Texture_SumVariance_BFLow_5_03_256: double
Cells_Texture_SumVariance_Brightfield_10_00_256: double
Cells_Texture_SumVariance_Brightfield_10_01_256: double
Cells_Texture_SumVariance_Brightfield_10_02_256: double
Cells_Texture_SumVariance_Brightfield_10_03_256: double
Cells_Texture_SumVariance_Brightfield_3_00_256: double
Cells_Texture_SumVariance_Brightfield_3_01_256: double
Cells_Texture_SumVariance_Brightfield_3_02_256: double
Cells_Texture_SumVariance_Brightfield_3_03_256: double
Cells_Texture_SumVariance_Brightfield_5_00_256: double
Cells_Texture_SumVariance_Brightfield_5_01_256: double
Cells_Texture_SumVariance_Brightfield_5_02_256: double
Cells_Texture_SumVariance_Brightfield_5_03_256: double
Cells_Texture_SumVariance_DNA_10_00_256: double
Cells_Texture_SumVariance_DNA_10_01_256: double
Cells_Texture_SumVariance_DNA_10_02_256: double
Cells_Texture_SumVariance_DNA_10_03_256: double
Cells_Texture_SumVariance_DNA_3_00_256: double
Cells_Texture_SumVariance_DNA_3_01_256: double
Cells_Texture_SumVariance_DNA_3_02_256: double
Cells_Texture_SumVariance_DNA_3_03_256: double
Cells_Texture_SumVariance_DNA_5_00_256: double
Cells_Texture_SumVariance_DNA_5_01_256: double
Cells_Texture_SumVariance_DNA_5_02_256: double
Cells_Texture_SumVariance_DNA_5_03_256: double
Cells_Texture_SumVariance_ER_10_00_256: double
Cells_Texture_SumVariance_ER_10_01_256: double
Cells_Texture_SumVariance_ER_10_02_256: double
Cells_Texture_SumVariance_ER_10_03_256: double
Cells_Texture_SumVariance_ER_3_00_256: double
Cells_Texture_SumVariance_ER_3_01_256: double
Cells_Texture_SumVariance_ER_3_02_256: double
Cells_Texture_SumVariance_ER_3_03_256: double
Cells_Texture_SumVariance_ER_5_00_256: double
Cells_Texture_SumVariance_ER_5_01_256: double
Cells_Texture_SumVariance_ER_5_02_256: double
Cells_Texture_SumVariance_ER_5_03_256: double
Cells_Texture_SumVariance_Mito_10_00_256: double
Cells_Texture_SumVariance_Mito_10_01_256: double
Cells_Texture_SumVariance_Mito_10_02_256: double
Cells_Texture_SumVariance_Mito_10_03_256: double
Cells_Texture_SumVariance_Mito_3_00_256: double
Cells_Texture_SumVariance_Mito_3_01_256: double
Cells_Texture_SumVariance_Mito_3_02_256: double
Cells_Texture_SumVariance_Mito_3_03_256: double
Cells_Texture_SumVariance_Mito_5_00_256: double
Cells_Texture_SumVariance_Mito_5_01_256: double
Cells_Texture_SumVariance_Mito_5_02_256: double
Cells_Texture_SumVariance_Mito_5_03_256: double
Cells_Texture_SumVariance_RNA_10_00_256: double
Cells_Texture_SumVariance_RNA_10_01_256: double
Cells_Texture_SumVariance_RNA_10_02_256: double
Cells_Texture_SumVariance_RNA_10_03_256: double
Cells_Texture_SumVariance_RNA_3_00_256: double
Cells_Texture_SumVariance_RNA_3_01_256: double
Cells_Texture_SumVariance_RNA_3_02_256: double
Cells_Texture_SumVariance_RNA_3_03_256: double
Cells_Texture_SumVariance_RNA_5_00_256: double
Cells_Texture_SumVariance_RNA_5_01_256: double
Cells_Texture_SumVariance_RNA_5_02_256: double
Cells_Texture_SumVariance_RNA_5_03_256: double
Cells_Texture_Variance_AGP_10_00_256: double
Cells_Texture_Variance_AGP_10_01_256: double
Cells_Texture_Variance_AGP_10_02_256: double
Cells_Texture_Variance_AGP_10_03_256: double
Cells_Texture_Variance_AGP_3_00_256: double
Cells_Texture_Variance_AGP_3_01_256: double
Cells_Texture_Variance_AGP_3_02_256: double
Cells_Texture_Variance_AGP_3_03_256: double
Cells_Texture_Variance_AGP_5_00_256: double
Cells_Texture_Variance_AGP_5_01_256: double
Cells_Texture_Variance_AGP_5_02_256: double
Cells_Texture_Variance_AGP_5_03_256: double
Cells_Texture_Variance_BFHigh_10_00_256: double
Cells_Texture_Variance_BFHigh_10_01_256: double
Cells_Texture_Variance_BFHigh_10_02_256: double
Cells_Texture_Variance_BFHigh_10_03_256: double
Cells_Texture_Variance_BFHigh_3_00_256: double
Cells_Texture_Variance_BFHigh_3_01_256: double
Cells_Texture_Variance_BFHigh_3_02_256: double
Cells_Texture_Variance_BFHigh_3_03_256: double
Cells_Texture_Variance_BFHigh_5_00_256: double
Cells_Texture_Variance_BFHigh_5_01_256: double
Cells_Texture_Variance_BFHigh_5_02_256: double
Cells_Texture_Variance_BFHigh_5_03_256: double
Cells_Texture_Variance_BFLow_10_00_256: double
Cells_Texture_Variance_BFLow_10_01_256: double
Cells_Texture_Variance_BFLow_10_02_256: double
Cells_Texture_Variance_BFLow_10_03_256: double
Cells_Texture_Variance_BFLow_3_00_256: double
Cells_Texture_Variance_BFLow_3_01_256: double
Cells_Texture_Variance_BFLow_3_02_256: double
Cells_Texture_Variance_BFLow_3_03_256: double
Cells_Texture_Variance_BFLow_5_00_256: double
Cells_Texture_Variance_BFLow_5_01_256: double
Cells_Texture_Variance_BFLow_5_02_256: double
Cells_Texture_Variance_BFLow_5_03_256: double
Cells_Texture_Variance_Brightfield_10_00_256: double
Cells_Texture_Variance_Brightfield_10_01_256: double
Cells_Texture_Variance_Brightfield_10_02_256: double
Cells_Texture_Variance_Brightfield_10_03_256: double
Cells_Texture_Variance_Brightfield_3_00_256: double
Cells_Texture_Variance_Brightfield_3_01_256: double
Cells_Texture_Variance_Brightfield_3_02_256: double
Cells_Texture_Variance_Brightfield_3_03_256: double
Cells_Texture_Variance_Brightfield_5_00_256: double
Cells_Texture_Variance_Brightfield_5_01_256: double
Cells_Texture_Variance_Brightfield_5_02_256: double
Cells_Texture_Variance_Brightfield_5_03_256: double
Cells_Texture_Variance_DNA_10_00_256: double
Cells_Texture_Variance_DNA_10_01_256: double
Cells_Texture_Variance_DNA_10_02_256: double
Cells_Texture_Variance_DNA_10_03_256: double
Cells_Texture_Variance_DNA_3_00_256: double
Cells_Texture_Variance_DNA_3_01_256: double
Cells_Texture_Variance_DNA_3_02_256: double
Cells_Texture_Variance_DNA_3_03_256: double
Cells_Texture_Variance_DNA_5_00_256: double
Cells_Texture_Variance_DNA_5_01_256: double
Cells_Texture_Variance_DNA_5_02_256: double
Cells_Texture_Variance_DNA_5_03_256: double
Cells_Texture_Variance_ER_10_00_256: double
Cells_Texture_Variance_ER_10_01_256: double
Cells_Texture_Variance_ER_10_02_256: double
Cells_Texture_Variance_ER_10_03_256: double
Cells_Texture_Variance_ER_3_00_256: double
Cells_Texture_Variance_ER_3_01_256: double
Cells_Texture_Variance_ER_3_02_256: double
Cells_Texture_Variance_ER_3_03_256: double
Cells_Texture_Variance_ER_5_00_256: double
Cells_Texture_Variance_ER_5_01_256: double
Cells_Texture_Variance_ER_5_02_256: double
Cells_Texture_Variance_ER_5_03_256: double
Cells_Texture_Variance_Mito_10_00_256: double
Cells_Texture_Variance_Mito_10_01_256: double
Cells_Texture_Variance_Mito_10_02_256: double
Cells_Texture_Variance_Mito_10_03_256: double
Cells_Texture_Variance_Mito_3_00_256: double
Cells_Texture_Variance_Mito_3_01_256: double
Cells_Texture_Variance_Mito_3_02_256: double
Cells_Texture_Variance_Mito_3_03_256: double
Cells_Texture_Variance_Mito_5_00_256: double
Cells_Texture_Variance_Mito_5_01_256: double
Cells_Texture_Variance_Mito_5_02_256: double
Cells_Texture_Variance_Mito_5_03_256: double
Cells_Texture_Variance_RNA_10_00_256: double
Cells_Texture_Variance_RNA_10_01_256: double
Cells_Texture_Variance_RNA_10_02_256: double
Cells_Texture_Variance_RNA_10_03_256: double
Cells_Texture_Variance_RNA_3_00_256: double
Cells_Texture_Variance_RNA_3_01_256: double
Cells_Texture_Variance_RNA_3_02_256: double
Cells_Texture_Variance_RNA_3_03_256: double
Cells_Texture_Variance_RNA_5_00_256: double
Cells_Texture_Variance_RNA_5_01_256: double
Cells_Texture_Variance_RNA_5_02_256: double
Cells_Texture_Variance_RNA_5_03_256: double
Nuclei_AreaShape_Area: int64
Nuclei_AreaShape_BoundingBoxArea: int64
Nuclei_AreaShape_BoundingBoxMaximum_X: int64
Nuclei_AreaShape_BoundingBoxMaximum_Y: int64
Nuclei_AreaShape_BoundingBoxMinimum_X: int64
Nuclei_AreaShape_BoundingBoxMinimum_Y: int64
Nuclei_AreaShape_Center_X: double
Nuclei_AreaShape_Center_Y: double
Nuclei_AreaShape_Compactness: double
Nuclei_AreaShape_Eccentricity: double
Nuclei_AreaShape_EquivalentDiameter: double
Nuclei_AreaShape_EulerNumber: int64
Nuclei_AreaShape_Extent: double
Nuclei_AreaShape_FormFactor: double
Nuclei_AreaShape_MajorAxisLength: double
Nuclei_AreaShape_MaxFeretDiameter: double
Nuclei_AreaShape_MaximumRadius: double
Nuclei_AreaShape_MeanRadius: double
Nuclei_AreaShape_MedianRadius: double
Nuclei_AreaShape_MinFeretDiameter: double
Nuclei_AreaShape_MinorAxisLength: double
Nuclei_AreaShape_Orientation: double
Nuclei_AreaShape_Perimeter: double
Nuclei_AreaShape_Solidity: double
Nuclei_AreaShape_Zernike_0_0: double
Nuclei_AreaShape_Zernike_1_1: double
Nuclei_AreaShape_Zernike_2_0: double
Nuclei_AreaShape_Zernike_2_2: double
Nuclei_AreaShape_Zernike_3_1: double
Nuclei_AreaShape_Zernike_3_3: double
Nuclei_AreaShape_Zernike_4_0: double
Nuclei_AreaShape_Zernike_4_2: double
Nuclei_AreaShape_Zernike_4_4: double
Nuclei_AreaShape_Zernike_5_1: double
Nuclei_AreaShape_Zernike_5_3: double
Nuclei_AreaShape_Zernike_5_5: double
Nuclei_AreaShape_Zernike_6_0: double
Nuclei_AreaShape_Zernike_6_2: double
Nuclei_AreaShape_Zernike_6_4: double
Nuclei_AreaShape_Zernike_6_6: double
Nuclei_AreaShape_Zernike_7_1: double
Nuclei_AreaShape_Zernike_7_3: double
Nuclei_AreaShape_Zernike_7_5: double
Nuclei_AreaShape_Zernike_7_7: double
Nuclei_AreaShape_Zernike_8_0: double
Nuclei_AreaShape_Zernike_8_2: double
Nuclei_AreaShape_Zernike_8_4: double
Nuclei_AreaShape_Zernike_8_6: double
Nuclei_AreaShape_Zernike_8_8: double
Nuclei_AreaShape_Zernike_9_1: double
Nuclei_AreaShape_Zernike_9_3: double
Nuclei_AreaShape_Zernike_9_5: double
Nuclei_AreaShape_Zernike_9_7: double
Nuclei_AreaShape_Zernike_9_9: double
Nuclei_Children_Cytoplasm_Count: int64
Nuclei_Correlation_Correlation_AGP_BFHigh: double
Nuclei_Correlation_Correlation_AGP_BFLow: double
Nuclei_Correlation_Correlation_AGP_Brightfield: double
Nuclei_Correlation_Correlation_AGP_DNA: double
Nuclei_Correlation_Correlation_AGP_ER: double
Nuclei_Correlation_Correlation_AGP_Mito: double
Nuclei_Correlation_Correlation_AGP_RNA: double
Nuclei_Correlation_Correlation_BFHigh_BFLow: double
Nuclei_Correlation_Correlation_BFHigh_Brightfield: double
Nuclei_Correlation_Correlation_BFHigh_DNA: double
Nuclei_Correlation_Correlation_BFHigh_ER: double
Nuclei_Correlation_Correlation_BFHigh_Mito: double
Nuclei_Correlation_Correlation_BFHigh_RNA: double
Nuclei_Correlation_Correlation_BFLow_Brightfield: double
Nuclei_Correlation_Correlation_BFLow_DNA: double
Nuclei_Correlation_Correlation_BFLow_ER: double
Nuclei_Correlation_Correlation_BFLow_Mito: double
Nuclei_Correlation_Correlation_BFLow_RNA: double
Nuclei_Correlation_Correlation_Brightfield_DNA: double
Nuclei_Correlation_Correlation_Brightfield_ER: double
Nuclei_Correlation_Correlation_Brightfield_Mito: double
Nuclei_Correlation_Correlation_Brightfield_RNA: double
Nuclei_Correlation_Correlation_DNA_ER: double
Nuclei_Correlation_Correlation_DNA_Mito: double
Nuclei_Correlation_Correlation_DNA_RNA: double
Nuclei_Correlation_Correlation_ER_Mito: double
Nuclei_Correlation_Correlation_ER_RNA: double
Nuclei_Correlation_Correlation_Mito_RNA: double
Nuclei_Correlation_K_AGP_BFHigh: double
Nuclei_Correlation_K_AGP_BFLow: double
Nuclei_Correlation_K_AGP_Brightfield: double
Nuclei_Correlation_K_AGP_DNA: double
Nuclei_Correlation_K_AGP_ER: double
Nuclei_Correlation_K_AGP_Mito: double
Nuclei_Correlation_K_AGP_RNA: double
Nuclei_Correlation_K_BFHigh_AGP: double
Nuclei_Correlation_K_BFHigh_BFLow: double
Nuclei_Correlation_K_BFHigh_Brightfield: double
Nuclei_Correlation_K_BFHigh_DNA: double
Nuclei_Correlation_K_BFHigh_ER: double
Nuclei_Correlation_K_BFHigh_Mito: double
Nuclei_Correlation_K_BFHigh_RNA: double
Nuclei_Correlation_K_BFLow_AGP: double
Nuclei_Correlation_K_BFLow_BFHigh: double
Nuclei_Correlation_K_BFLow_Brightfield: double
Nuclei_Correlation_K_BFLow_DNA: double
Nuclei_Correlation_K_BFLow_ER: double
Nuclei_Correlation_K_BFLow_Mito: double
Nuclei_Correlation_K_BFLow_RNA: double
Nuclei_Correlation_K_Brightfield_AGP: double
Nuclei_Correlation_K_Brightfield_BFHigh: double
Nuclei_Correlation_K_Brightfield_BFLow: double
Nuclei_Correlation_K_Brightfield_DNA: double
Nuclei_Correlation_K_Brightfield_ER: double
Nuclei_Correlation_K_Brightfield_Mito: double
Nuclei_Correlation_K_Brightfield_RNA: double
Nuclei_Correlation_K_DNA_AGP: double
Nuclei_Correlation_K_DNA_BFHigh: double
Nuclei_Correlation_K_DNA_BFLow: double
Nuclei_Correlation_K_DNA_Brightfield: double
Nuclei_Correlation_K_DNA_ER: double
Nuclei_Correlation_K_DNA_Mito: double
Nuclei_Correlation_K_DNA_RNA: double
Nuclei_Correlation_K_ER_AGP: double
Nuclei_Correlation_K_ER_BFHigh: double
Nuclei_Correlation_K_ER_BFLow: double
Nuclei_Correlation_K_ER_Brightfield: double
Nuclei_Correlation_K_ER_DNA: double
Nuclei_Correlation_K_ER_Mito: double
Nuclei_Correlation_K_ER_RNA: double
Nuclei_Correlation_K_Mito_AGP: double
Nuclei_Correlation_K_Mito_BFHigh: double
Nuclei_Correlation_K_Mito_BFLow: double
Nuclei_Correlation_K_Mito_Brightfield: double
Nuclei_Correlation_K_Mito_DNA: double
Nuclei_Correlation_K_Mito_ER: double
Nuclei_Correlation_K_Mito_RNA: double
Nuclei_Correlation_K_RNA_AGP: double
Nuclei_Correlation_K_RNA_BFHigh: double
Nuclei_Correlation_K_RNA_BFLow: double
Nuclei_Correlation_K_RNA_Brightfield: double
Nuclei_Correlation_K_RNA_DNA: double
Nuclei_Correlation_K_RNA_ER: double
Nuclei_Correlation_K_RNA_Mito: double
Nuclei_Correlation_Manders_AGP_BFHigh: double
Nuclei_Correlation_Manders_AGP_BFLow: double
Nuclei_Correlation_Manders_AGP_Brightfield: double
Nuclei_Correlation_Manders_AGP_DNA: double
Nuclei_Correlation_Manders_AGP_ER: double
Nuclei_Correlation_Manders_AGP_Mito: double
Nuclei_Correlation_Manders_AGP_RNA: double
Nuclei_Correlation_Manders_BFHigh_AGP: double
Nuclei_Correlation_Manders_BFHigh_BFLow: double
Nuclei_Correlation_Manders_BFHigh_Brightfield: double
Nuclei_Correlation_Manders_BFHigh_DNA: double
Nuclei_Correlation_Manders_BFHigh_ER: double
Nuclei_Correlation_Manders_BFHigh_Mito: double
Nuclei_Correlation_Manders_BFHigh_RNA: double
Nuclei_Correlation_Manders_BFLow_AGP: double
Nuclei_Correlation_Manders_BFLow_BFHigh: double
Nuclei_Correlation_Manders_BFLow_Brightfield: double
Nuclei_Correlation_Manders_BFLow_DNA: double
Nuclei_Correlation_Manders_BFLow_ER: double
Nuclei_Correlation_Manders_BFLow_Mito: double
Nuclei_Correlation_Manders_BFLow_RNA: double
Nuclei_Correlation_Manders_Brightfield_AGP: double
Nuclei_Correlation_Manders_Brightfield_BFHigh: double
Nuclei_Correlation_Manders_Brightfield_BFLow: double
Nuclei_Correlation_Manders_Brightfield_DNA: double
Nuclei_Correlation_Manders_Brightfield_ER: double
Nuclei_Correlation_Manders_Brightfield_Mito: double
Nuclei_Correlation_Manders_Brightfield_RNA: double
Nuclei_Correlation_Manders_DNA_AGP: double
Nuclei_Correlation_Manders_DNA_BFHigh: double
Nuclei_Correlation_Manders_DNA_BFLow: double
Nuclei_Correlation_Manders_DNA_Brightfield: double
Nuclei_Correlation_Manders_DNA_ER: double
Nuclei_Correlation_Manders_DNA_Mito: double
Nuclei_Correlation_Manders_DNA_RNA: double
Nuclei_Correlation_Manders_ER_AGP: double
Nuclei_Correlation_Manders_ER_BFHigh: double
Nuclei_Correlation_Manders_ER_BFLow: double
Nuclei_Correlation_Manders_ER_Brightfield: double
Nuclei_Correlation_Manders_ER_DNA: double
Nuclei_Correlation_Manders_ER_Mito: double
Nuclei_Correlation_Manders_ER_RNA: double
Nuclei_Correlation_Manders_Mito_AGP: double
Nuclei_Correlation_Manders_Mito_BFHigh: double
Nuclei_Correlation_Manders_Mito_BFLow: double
Nuclei_Correlation_Manders_Mito_Brightfield: double
Nuclei_Correlation_Manders_Mito_DNA: double
Nuclei_Correlation_Manders_Mito_ER: double
Nuclei_Correlation_Manders_Mito_RNA: double
Nuclei_Correlation_Manders_RNA_AGP: double
Nuclei_Correlation_Manders_RNA_BFHigh: double
Nuclei_Correlation_Manders_RNA_BFLow: double
Nuclei_Correlation_Manders_RNA_Brightfield: double
Nuclei_Correlation_Manders_RNA_DNA: double
Nuclei_Correlation_Manders_RNA_ER: double
Nuclei_Correlation_Manders_RNA_Mito: double
Nuclei_Correlation_Overlap_AGP_BFHigh: double
Nuclei_Correlation_Overlap_AGP_BFLow: double
Nuclei_Correlation_Overlap_AGP_Brightfield: double
Nuclei_Correlation_Overlap_AGP_DNA: double
Nuclei_Correlation_Overlap_AGP_ER: double
Nuclei_Correlation_Overlap_AGP_Mito: double
Nuclei_Correlation_Overlap_AGP_RNA: double
Nuclei_Correlation_Overlap_BFHigh_BFLow: double
Nuclei_Correlation_Overlap_BFHigh_Brightfield: double
Nuclei_Correlation_Overlap_BFHigh_DNA: double
Nuclei_Correlation_Overlap_BFHigh_ER: double
Nuclei_Correlation_Overlap_BFHigh_Mito: double
Nuclei_Correlation_Overlap_BFHigh_RNA: double
Nuclei_Correlation_Overlap_BFLow_Brightfield: double
Nuclei_Correlation_Overlap_BFLow_DNA: double
Nuclei_Correlation_Overlap_BFLow_ER: double
Nuclei_Correlation_Overlap_BFLow_Mito: double
Nuclei_Correlation_Overlap_BFLow_RNA: double
Nuclei_Correlation_Overlap_Brightfield_DNA: double
Nuclei_Correlation_Overlap_Brightfield_ER: double
Nuclei_Correlation_Overlap_Brightfield_Mito: double
Nuclei_Correlation_Overlap_Brightfield_RNA: double
Nuclei_Correlation_Overlap_DNA_ER: double
Nuclei_Correlation_Overlap_DNA_Mito: double
Nuclei_Correlation_Overlap_DNA_RNA: double
Nuclei_Correlation_Overlap_ER_Mito: double
Nuclei_Correlation_Overlap_ER_RNA: double
Nuclei_Correlation_Overlap_Mito_RNA: double
Nuclei_Correlation_RWC_AGP_BFHigh: double
Nuclei_Correlation_RWC_AGP_BFLow: double
Nuclei_Correlation_RWC_AGP_Brightfield: double
Nuclei_Correlation_RWC_AGP_DNA: double
Nuclei_Correlation_RWC_AGP_ER: double
Nuclei_Correlation_RWC_AGP_Mito: double
Nuclei_Correlation_RWC_AGP_RNA: double
Nuclei_Correlation_RWC_BFHigh_AGP: double
Nuclei_Correlation_RWC_BFHigh_BFLow: double
Nuclei_Correlation_RWC_BFHigh_Brightfield: double
Nuclei_Correlation_RWC_BFHigh_DNA: double
Nuclei_Correlation_RWC_BFHigh_ER: double
Nuclei_Correlation_RWC_BFHigh_Mito: double
Nuclei_Correlation_RWC_BFHigh_RNA: double
Nuclei_Correlation_RWC_BFLow_AGP: double
Nuclei_Correlation_RWC_BFLow_BFHigh: double
Nuclei_Correlation_RWC_BFLow_Brightfield: double
Nuclei_Correlation_RWC_BFLow_DNA: double
Nuclei_Correlation_RWC_BFLow_ER: double
Nuclei_Correlation_RWC_BFLow_Mito: double
Nuclei_Correlation_RWC_BFLow_RNA: double
Nuclei_Correlation_RWC_Brightfield_AGP: double
Nuclei_Correlation_RWC_Brightfield_BFHigh: double
Nuclei_Correlation_RWC_Brightfield_BFLow: double
Nuclei_Correlation_RWC_Brightfield_DNA: double
Nuclei_Correlation_RWC_Brightfield_ER: double
Nuclei_Correlation_RWC_Brightfield_Mito: double
Nuclei_Correlation_RWC_Brightfield_RNA: double
Nuclei_Correlation_RWC_DNA_AGP: double
Nuclei_Correlation_RWC_DNA_BFHigh: double
Nuclei_Correlation_RWC_DNA_BFLow: double
Nuclei_Correlation_RWC_DNA_Brightfield: double
Nuclei_Correlation_RWC_DNA_ER: double
Nuclei_Correlation_RWC_DNA_Mito: double
Nuclei_Correlation_RWC_DNA_RNA: double
Nuclei_Correlation_RWC_ER_AGP: double
Nuclei_Correlation_RWC_ER_BFHigh: double
Nuclei_Correlation_RWC_ER_BFLow: double
Nuclei_Correlation_RWC_ER_Brightfield: double
Nuclei_Correlation_RWC_ER_DNA: double
Nuclei_Correlation_RWC_ER_Mito: double
Nuclei_Correlation_RWC_ER_RNA: double
Nuclei_Correlation_RWC_Mito_AGP: double
Nuclei_Correlation_RWC_Mito_BFHigh: double
Nuclei_Correlation_RWC_Mito_BFLow: double
Nuclei_Correlation_RWC_Mito_Brightfield: double
Nuclei_Correlation_RWC_Mito_DNA: double
Nuclei_Correlation_RWC_Mito_ER: double
Nuclei_Correlation_RWC_Mito_RNA: double
Nuclei_Correlation_RWC_RNA_AGP: double
Nuclei_Correlation_RWC_RNA_BFHigh: double
Nuclei_Correlation_RWC_RNA_BFLow: double
Nuclei_Correlation_RWC_RNA_Brightfield: double
Nuclei_Correlation_RWC_RNA_DNA: double
Nuclei_Correlation_RWC_RNA_ER: double
Nuclei_Correlation_RWC_RNA_Mito: double
Nuclei_Granularity_10_AGP: double
Nuclei_Granularity_10_BFHigh: double
Nuclei_Granularity_10_BFLow: double
Nuclei_Granularity_10_Brightfield: double
Nuclei_Granularity_10_DNA: double
Nuclei_Granularity_10_ER: double
Nuclei_Granularity_10_Mito: double
Nuclei_Granularity_10_RNA: double
Nuclei_Granularity_11_AGP: double
Nuclei_Granularity_11_BFHigh: double
Nuclei_Granularity_11_BFLow: double
Nuclei_Granularity_11_Brightfield: double
Nuclei_Granularity_11_DNA: double
Nuclei_Granularity_11_ER: double
Nuclei_Granularity_11_Mito: double
Nuclei_Granularity_11_RNA: double
Nuclei_Granularity_12_AGP: double
Nuclei_Granularity_12_BFHigh: double
Nuclei_Granularity_12_BFLow: double
Nuclei_Granularity_12_Brightfield: double
Nuclei_Granularity_12_DNA: double
Nuclei_Granularity_12_ER: double
Nuclei_Granularity_12_Mito: double
Nuclei_Granularity_12_RNA: double
Nuclei_Granularity_13_AGP: double
Nuclei_Granularity_13_BFHigh: double
Nuclei_Granularity_13_BFLow: double
Nuclei_Granularity_13_Brightfield: double
Nuclei_Granularity_13_DNA: double
Nuclei_Granularity_13_ER: double
Nuclei_Granularity_13_Mito: double
Nuclei_Granularity_13_RNA: double
Nuclei_Granularity_14_AGP: double
Nuclei_Granularity_14_BFHigh: double
Nuclei_Granularity_14_BFLow: double
Nuclei_Granularity_14_Brightfield: double
Nuclei_Granularity_14_DNA: double
Nuclei_Granularity_14_ER: double
Nuclei_Granularity_14_Mito: double
Nuclei_Granularity_14_RNA: double
Nuclei_Granularity_15_AGP: double
Nuclei_Granularity_15_BFHigh: double
Nuclei_Granularity_15_BFLow: double
Nuclei_Granularity_15_Brightfield: double
Nuclei_Granularity_15_DNA: double
Nuclei_Granularity_15_ER: double
Nuclei_Granularity_15_Mito: double
Nuclei_Granularity_15_RNA: double
Nuclei_Granularity_16_AGP: double
Nuclei_Granularity_16_BFHigh: double
Nuclei_Granularity_16_BFLow: double
Nuclei_Granularity_16_Brightfield: double
Nuclei_Granularity_16_DNA: double
Nuclei_Granularity_16_ER: double
Nuclei_Granularity_16_Mito: double
Nuclei_Granularity_16_RNA: double
Nuclei_Granularity_1_AGP: double
Nuclei_Granularity_1_BFHigh: double
Nuclei_Granularity_1_BFLow: double
Nuclei_Granularity_1_Brightfield: double
Nuclei_Granularity_1_DNA: double
Nuclei_Granularity_1_ER: double
Nuclei_Granularity_1_Mito: double
Nuclei_Granularity_1_RNA: double
Nuclei_Granularity_2_AGP: double
Nuclei_Granularity_2_BFHigh: double
Nuclei_Granularity_2_BFLow: double
Nuclei_Granularity_2_Brightfield: double
Nuclei_Granularity_2_DNA: double
Nuclei_Granularity_2_ER: double
Nuclei_Granularity_2_Mito: double
Nuclei_Granularity_2_RNA: double
Nuclei_Granularity_3_AGP: double
Nuclei_Granularity_3_BFHigh: double
Nuclei_Granularity_3_BFLow: double
Nuclei_Granularity_3_Brightfield: double
Nuclei_Granularity_3_DNA: double
Nuclei_Granularity_3_ER: double
Nuclei_Granularity_3_Mito: double
Nuclei_Granularity_3_RNA: double
Nuclei_Granularity_4_AGP: double
Nuclei_Granularity_4_BFHigh: double
Nuclei_Granularity_4_BFLow: double
Nuclei_Granularity_4_Brightfield: double
Nuclei_Granularity_4_DNA: double
Nuclei_Granularity_4_ER: double
Nuclei_Granularity_4_Mito: double
Nuclei_Granularity_4_RNA: double
Nuclei_Granularity_5_AGP: double
Nuclei_Granularity_5_BFHigh: double
Nuclei_Granularity_5_BFLow: double
Nuclei_Granularity_5_Brightfield: double
Nuclei_Granularity_5_DNA: double
Nuclei_Granularity_5_ER: double
Nuclei_Granularity_5_Mito: double
Nuclei_Granularity_5_RNA: double
Nuclei_Granularity_6_AGP: double
Nuclei_Granularity_6_BFHigh: double
Nuclei_Granularity_6_BFLow: double
Nuclei_Granularity_6_Brightfield: double
Nuclei_Granularity_6_DNA: double
Nuclei_Granularity_6_ER: double
Nuclei_Granularity_6_Mito: double
Nuclei_Granularity_6_RNA: double
Nuclei_Granularity_7_AGP: double
Nuclei_Granularity_7_BFHigh: double
Nuclei_Granularity_7_BFLow: double
Nuclei_Granularity_7_Brightfield: double
Nuclei_Granularity_7_DNA: double
Nuclei_Granularity_7_ER: double
Nuclei_Granularity_7_Mito: double
Nuclei_Granularity_7_RNA: double
Nuclei_Granularity_8_AGP: double
Nuclei_Granularity_8_BFHigh: double
Nuclei_Granularity_8_BFLow: double
Nuclei_Granularity_8_Brightfield: double
Nuclei_Granularity_8_DNA: double
Nuclei_Granularity_8_ER: double
Nuclei_Granularity_8_Mito: double
Nuclei_Granularity_8_RNA: double
Nuclei_Granularity_9_AGP: double
Nuclei_Granularity_9_BFHigh: double
Nuclei_Granularity_9_BFLow: double
Nuclei_Granularity_9_Brightfield: double
Nuclei_Granularity_9_DNA: double
Nuclei_Granularity_9_ER: double
Nuclei_Granularity_9_Mito: double
Nuclei_Granularity_9_RNA: double
Nuclei_Intensity_IntegratedIntensityEdge_AGP: double
Nuclei_Intensity_IntegratedIntensityEdge_BFHigh: double
Nuclei_Intensity_IntegratedIntensityEdge_BFLow: double
Nuclei_Intensity_IntegratedIntensityEdge_Brightfield: double
Nuclei_Intensity_IntegratedIntensityEdge_DNA: double
Nuclei_Intensity_IntegratedIntensityEdge_ER: double
Nuclei_Intensity_IntegratedIntensityEdge_Mito: double
Nuclei_Intensity_IntegratedIntensityEdge_RNA: double
Nuclei_Intensity_IntegratedIntensity_AGP: double
Nuclei_Intensity_IntegratedIntensity_BFHigh: double
Nuclei_Intensity_IntegratedIntensity_BFLow: double
Nuclei_Intensity_IntegratedIntensity_Brightfield: double
Nuclei_Intensity_IntegratedIntensity_DNA: double
Nuclei_Intensity_IntegratedIntensity_ER: double
Nuclei_Intensity_IntegratedIntensity_Mito: double
Nuclei_Intensity_IntegratedIntensity_RNA: double
Nuclei_Intensity_LowerQuartileIntensity_AGP: double
Nuclei_Intensity_LowerQuartileIntensity_BFHigh: double
Nuclei_Intensity_LowerQuartileIntensity_BFLow: double
Nuclei_Intensity_LowerQuartileIntensity_Brightfield: double
Nuclei_Intensity_LowerQuartileIntensity_DNA: double
Nuclei_Intensity_LowerQuartileIntensity_ER: double
Nuclei_Intensity_LowerQuartileIntensity_Mito: double
Nuclei_Intensity_LowerQuartileIntensity_RNA: double
Nuclei_Intensity_MADIntensity_AGP: double
Nuclei_Intensity_MADIntensity_BFHigh: double
Nuclei_Intensity_MADIntensity_BFLow: double
Nuclei_Intensity_MADIntensity_Brightfield: double
Nuclei_Intensity_MADIntensity_DNA: double
Nuclei_Intensity_MADIntensity_ER: double
Nuclei_Intensity_MADIntensity_Mito: double
Nuclei_Intensity_MADIntensity_RNA: double
Nuclei_Intensity_MassDisplacement_AGP: double
Nuclei_Intensity_MassDisplacement_BFHigh: double
Nuclei_Intensity_MassDisplacement_BFLow: double
Nuclei_Intensity_MassDisplacement_Brightfield: double
Nuclei_Intensity_MassDisplacement_DNA: double
Nuclei_Intensity_MassDisplacement_ER: double
Nuclei_Intensity_MassDisplacement_Mito: double
Nuclei_Intensity_MassDisplacement_RNA: double
Nuclei_Intensity_MaxIntensityEdge_AGP: double
Nuclei_Intensity_MaxIntensityEdge_BFHigh: double
Nuclei_Intensity_MaxIntensityEdge_BFLow: double
Nuclei_Intensity_MaxIntensityEdge_Brightfield: double
Nuclei_Intensity_MaxIntensityEdge_DNA: double
Nuclei_Intensity_MaxIntensityEdge_ER: double
Nuclei_Intensity_MaxIntensityEdge_Mito: double
Nuclei_Intensity_MaxIntensityEdge_RNA: double
Nuclei_Intensity_MaxIntensity_AGP: double
Nuclei_Intensity_MaxIntensity_BFHigh: double
Nuclei_Intensity_MaxIntensity_BFLow: double
Nuclei_Intensity_MaxIntensity_Brightfield: double
Nuclei_Intensity_MaxIntensity_DNA: double
Nuclei_Intensity_MaxIntensity_ER: double
Nuclei_Intensity_MaxIntensity_Mito: double
Nuclei_Intensity_MaxIntensity_RNA: double
Nuclei_Intensity_MeanIntensityEdge_AGP: double
Nuclei_Intensity_MeanIntensityEdge_BFHigh: double
Nuclei_Intensity_MeanIntensityEdge_BFLow: double
Nuclei_Intensity_MeanIntensityEdge_Brightfield: double
Nuclei_Intensity_MeanIntensityEdge_DNA: double
Nuclei_Intensity_MeanIntensityEdge_ER: double
Nuclei_Intensity_MeanIntensityEdge_Mito: double
Nuclei_Intensity_MeanIntensityEdge_RNA: double
Nuclei_Intensity_MeanIntensity_AGP: double
Nuclei_Intensity_MeanIntensity_BFHigh: double
Nuclei_Intensity_MeanIntensity_BFLow: double
Nuclei_Intensity_MeanIntensity_Brightfield: double
Nuclei_Intensity_MeanIntensity_DNA: double
Nuclei_Intensity_MeanIntensity_ER: double
Nuclei_Intensity_MeanIntensity_Mito: double
Nuclei_Intensity_MeanIntensity_RNA: double
Nuclei_Intensity_MedianIntensity_AGP: double
Nuclei_Intensity_MedianIntensity_BFHigh: double
Nuclei_Intensity_MedianIntensity_BFLow: double
Nuclei_Intensity_MedianIntensity_Brightfield: double
Nuclei_Intensity_MedianIntensity_DNA: double
Nuclei_Intensity_MedianIntensity_ER: double
Nuclei_Intensity_MedianIntensity_Mito: double
Nuclei_Intensity_MedianIntensity_RNA: double
Nuclei_Intensity_MinIntensityEdge_AGP: double
Nuclei_Intensity_MinIntensityEdge_BFHigh: double
Nuclei_Intensity_MinIntensityEdge_BFLow: double
Nuclei_Intensity_MinIntensityEdge_Brightfield: double
Nuclei_Intensity_MinIntensityEdge_DNA: double
Nuclei_Intensity_MinIntensityEdge_ER: double
Nuclei_Intensity_MinIntensityEdge_Mito: double
Nuclei_Intensity_MinIntensityEdge_RNA: double
Nuclei_Intensity_MinIntensity_AGP: double
Nuclei_Intensity_MinIntensity_BFHigh: double
Nuclei_Intensity_MinIntensity_BFLow: double
Nuclei_Intensity_MinIntensity_Brightfield: double
Nuclei_Intensity_MinIntensity_DNA: double
Nuclei_Intensity_MinIntensity_ER: double
Nuclei_Intensity_MinIntensity_Mito: double
Nuclei_Intensity_MinIntensity_RNA: double
Nuclei_Intensity_StdIntensityEdge_AGP: double
Nuclei_Intensity_StdIntensityEdge_BFHigh: double
Nuclei_Intensity_StdIntensityEdge_BFLow: double
Nuclei_Intensity_StdIntensityEdge_Brightfield: double
Nuclei_Intensity_StdIntensityEdge_DNA: double
Nuclei_Intensity_StdIntensityEdge_ER: double
Nuclei_Intensity_StdIntensityEdge_Mito: double
Nuclei_Intensity_StdIntensityEdge_RNA: double
Nuclei_Intensity_StdIntensity_AGP: double
Nuclei_Intensity_StdIntensity_BFHigh: double
Nuclei_Intensity_StdIntensity_BFLow: double
Nuclei_Intensity_StdIntensity_Brightfield: double
Nuclei_Intensity_StdIntensity_DNA: double
Nuclei_Intensity_StdIntensity_ER: double
Nuclei_Intensity_StdIntensity_Mito: double
Nuclei_Intensity_StdIntensity_RNA: double
Nuclei_Intensity_UpperQuartileIntensity_AGP: double
Nuclei_Intensity_UpperQuartileIntensity_BFHigh: double
Nuclei_Intensity_UpperQuartileIntensity_BFLow: double
Nuclei_Intensity_UpperQuartileIntensity_Brightfield: double
Nuclei_Intensity_UpperQuartileIntensity_DNA: double
Nuclei_Intensity_UpperQuartileIntensity_ER: double
Nuclei_Intensity_UpperQuartileIntensity_Mito: double
Nuclei_Intensity_UpperQuartileIntensity_RNA: double
Nuclei_Location_CenterMassIntensity_X_AGP: double
Nuclei_Location_CenterMassIntensity_X_BFHigh: double
Nuclei_Location_CenterMassIntensity_X_BFLow: double
Nuclei_Location_CenterMassIntensity_X_Brightfield: double
Nuclei_Location_CenterMassIntensity_X_DNA: double
Nuclei_Location_CenterMassIntensity_X_ER: double
Nuclei_Location_CenterMassIntensity_X_Mito: double
Nuclei_Location_CenterMassIntensity_X_RNA: double
Nuclei_Location_CenterMassIntensity_Y_AGP: double
Nuclei_Location_CenterMassIntensity_Y_BFHigh: double
Nuclei_Location_CenterMassIntensity_Y_BFLow: double
Nuclei_Location_CenterMassIntensity_Y_Brightfield: double
Nuclei_Location_CenterMassIntensity_Y_DNA: double
Nuclei_Location_CenterMassIntensity_Y_ER: double
Nuclei_Location_CenterMassIntensity_Y_Mito: double
Nuclei_Location_CenterMassIntensity_Y_RNA: double
Nuclei_Location_CenterMassIntensity_Z_AGP: double
Nuclei_Location_CenterMassIntensity_Z_BFHigh: double
Nuclei_Location_CenterMassIntensity_Z_BFLow: double
Nuclei_Location_CenterMassIntensity_Z_Brightfield: double
Nuclei_Location_CenterMassIntensity_Z_DNA: double
Nuclei_Location_CenterMassIntensity_Z_ER: double
Nuclei_Location_CenterMassIntensity_Z_Mito: double
Nuclei_Location_CenterMassIntensity_Z_RNA: double
Nuclei_Location_Center_X: double
Nuclei_Location_Center_Y: double
Nuclei_Location_Center_Z: int64
Nuclei_Location_MaxIntensity_X_AGP: double
Nuclei_Location_MaxIntensity_X_BFHigh: double
Nuclei_Location_MaxIntensity_X_BFLow: double
Nuclei_Location_MaxIntensity_X_Brightfield: double
Nuclei_Location_MaxIntensity_X_DNA: double
Nuclei_Location_MaxIntensity_X_ER: double
Nuclei_Location_MaxIntensity_X_Mito: double
Nuclei_Location_MaxIntensity_X_RNA: double
Nuclei_Location_MaxIntensity_Y_AGP: double
Nuclei_Location_MaxIntensity_Y_BFHigh: double
Nuclei_Location_MaxIntensity_Y_BFLow: double
Nuclei_Location_MaxIntensity_Y_Brightfield: double
Nuclei_Location_MaxIntensity_Y_DNA: double
Nuclei_Location_MaxIntensity_Y_ER: double
Nuclei_Location_MaxIntensity_Y_Mito: double
Nuclei_Location_MaxIntensity_Y_RNA: double
Nuclei_Location_MaxIntensity_Z_AGP: double
Nuclei_Location_MaxIntensity_Z_BFHigh: double
Nuclei_Location_MaxIntensity_Z_BFLow: double
Nuclei_Location_MaxIntensity_Z_Brightfield: double
Nuclei_Location_MaxIntensity_Z_DNA: double
Nuclei_Location_MaxIntensity_Z_ER: double
Nuclei_Location_MaxIntensity_Z_Mito: double
Nuclei_Location_MaxIntensity_Z_RNA: double
Nuclei_Neighbors_AngleBetweenNeighbors_1: double
Nuclei_Neighbors_FirstClosestDistance_1: double
Nuclei_Neighbors_FirstClosestObjectNumber_1: int64
Nuclei_Neighbors_NumberOfNeighbors_1: double
Nuclei_Neighbors_PercentTouching_1: double
Nuclei_Neighbors_SecondClosestDistance_1: double
Nuclei_Neighbors_SecondClosestObjectNumber_1: int64
Nuclei_Number_Object_Number: int64
Nuclei_ObjectSkeleton_NumberBranchEnds_mito_skel: double
Nuclei_ObjectSkeleton_NumberNonTrunkBranches_mito_skel: double
Nuclei_ObjectSkeleton_NumberTrunks_mito_skel: int64
Nuclei_ObjectSkeleton_TotalObjectSkeletonLength_mito_skel: double
Nuclei_Parent_NucleiIncludingEdges: int64
Nuclei_RadialDistribution_FracAtD_AGP_1of4: double
Nuclei_RadialDistribution_FracAtD_AGP_2of4: double
Nuclei_RadialDistribution_FracAtD_AGP_3of4: double
Nuclei_RadialDistribution_FracAtD_AGP_4of4: double
Nuclei_RadialDistribution_FracAtD_BFHigh_1of4: double
Nuclei_RadialDistribution_FracAtD_BFHigh_2of4: double
Nuclei_RadialDistribution_FracAtD_BFHigh_3of4: double
Nuclei_RadialDistribution_FracAtD_BFHigh_4of4: double
Nuclei_RadialDistribution_FracAtD_BFLow_1of4: double
Nuclei_RadialDistribution_FracAtD_BFLow_2of4: double
Nuclei_RadialDistribution_FracAtD_BFLow_3of4: double
Nuclei_RadialDistribution_FracAtD_BFLow_4of4: double
Nuclei_RadialDistribution_FracAtD_Brightfield_1of4: double
Nuclei_RadialDistribution_FracAtD_Brightfield_2of4: double
Nuclei_RadialDistribution_FracAtD_Brightfield_3of4: double
Nuclei_RadialDistribution_FracAtD_Brightfield_4of4: double
Nuclei_RadialDistribution_FracAtD_DNA_1of4: double
Nuclei_RadialDistribution_FracAtD_DNA_2of4: double
Nuclei_RadialDistribution_FracAtD_DNA_3of4: double
Nuclei_RadialDistribution_FracAtD_DNA_4of4: double
Nuclei_RadialDistribution_FracAtD_ER_1of4: double
Nuclei_RadialDistribution_FracAtD_ER_2of4: double
Nuclei_RadialDistribution_FracAtD_ER_3of4: double
Nuclei_RadialDistribution_FracAtD_ER_4of4: double
Nuclei_RadialDistribution_FracAtD_Mito_1of4: double
Nuclei_RadialDistribution_FracAtD_Mito_2of4: double
Nuclei_RadialDistribution_FracAtD_Mito_3of4: double
Nuclei_RadialDistribution_FracAtD_Mito_4of4: double
Nuclei_RadialDistribution_FracAtD_RNA_1of4: double
Nuclei_RadialDistribution_FracAtD_RNA_2of4: double
Nuclei_RadialDistribution_FracAtD_RNA_3of4: double
Nuclei_RadialDistribution_FracAtD_RNA_4of4: double
Nuclei_RadialDistribution_MeanFrac_AGP_1of4: double
Nuclei_RadialDistribution_MeanFrac_AGP_2of4: double
Nuclei_RadialDistribution_MeanFrac_AGP_3of4: double
Nuclei_RadialDistribution_MeanFrac_AGP_4of4: double
Nuclei_RadialDistribution_MeanFrac_BFHigh_1of4: double
Nuclei_RadialDistribution_MeanFrac_BFHigh_2of4: double
Nuclei_RadialDistribution_MeanFrac_BFHigh_3of4: double
Nuclei_RadialDistribution_MeanFrac_BFHigh_4of4: double
Nuclei_RadialDistribution_MeanFrac_BFLow_1of4: double
Nuclei_RadialDistribution_MeanFrac_BFLow_2of4: double
Nuclei_RadialDistribution_MeanFrac_BFLow_3of4: double
Nuclei_RadialDistribution_MeanFrac_BFLow_4of4: double
Nuclei_RadialDistribution_MeanFrac_Brightfield_1of4: double
Nuclei_RadialDistribution_MeanFrac_Brightfield_2of4: double
Nuclei_RadialDistribution_MeanFrac_Brightfield_3of4: double
Nuclei_RadialDistribution_MeanFrac_Brightfield_4of4: double
Nuclei_RadialDistribution_MeanFrac_DNA_1of4: double
Nuclei_RadialDistribution_MeanFrac_DNA_2of4: double
Nuclei_RadialDistribution_MeanFrac_DNA_3of4: double
Nuclei_RadialDistribution_MeanFrac_DNA_4of4: double
Nuclei_RadialDistribution_MeanFrac_ER_1of4: double
Nuclei_RadialDistribution_MeanFrac_ER_2of4: double
Nuclei_RadialDistribution_MeanFrac_ER_3of4: double
Nuclei_RadialDistribution_MeanFrac_ER_4of4: double
Nuclei_RadialDistribution_MeanFrac_Mito_1of4: double
Nuclei_RadialDistribution_MeanFrac_Mito_2of4: double
Nuclei_RadialDistribution_MeanFrac_Mito_3of4: double
Nuclei_RadialDistribution_MeanFrac_Mito_4of4: double
Nuclei_RadialDistribution_MeanFrac_RNA_1of4: double
Nuclei_RadialDistribution_MeanFrac_RNA_2of4: double
Nuclei_RadialDistribution_MeanFrac_RNA_3of4: double
Nuclei_RadialDistribution_MeanFrac_RNA_4of4: double
Nuclei_RadialDistribution_RadialCV_AGP_1of4: double
Nuclei_RadialDistribution_RadialCV_AGP_2of4: double
Nuclei_RadialDistribution_RadialCV_AGP_3of4: double
Nuclei_RadialDistribution_RadialCV_AGP_4of4: double
Nuclei_RadialDistribution_RadialCV_BFHigh_1of4: double
Nuclei_RadialDistribution_RadialCV_BFHigh_2of4: double
Nuclei_RadialDistribution_RadialCV_BFHigh_3of4: double
Nuclei_RadialDistribution_RadialCV_BFHigh_4of4: double
Nuclei_RadialDistribution_RadialCV_BFLow_1of4: double
Nuclei_RadialDistribution_RadialCV_BFLow_2of4: double
Nuclei_RadialDistribution_RadialCV_BFLow_3of4: double
Nuclei_RadialDistribution_RadialCV_BFLow_4of4: double
Nuclei_RadialDistribution_RadialCV_Brightfield_1of4: double
Nuclei_RadialDistribution_RadialCV_Brightfield_2of4: double
Nuclei_RadialDistribution_RadialCV_Brightfield_3of4: double
Nuclei_RadialDistribution_RadialCV_Brightfield_4of4: double
Nuclei_RadialDistribution_RadialCV_DNA_1of4: double
Nuclei_RadialDistribution_RadialCV_DNA_2of4: double
Nuclei_RadialDistribution_RadialCV_DNA_3of4: double
Nuclei_RadialDistribution_RadialCV_DNA_4of4: double
Nuclei_RadialDistribution_RadialCV_ER_1of4: double
Nuclei_RadialDistribution_RadialCV_ER_2of4: double
Nuclei_RadialDistribution_RadialCV_ER_3of4: double
Nuclei_RadialDistribution_RadialCV_ER_4of4: double
Nuclei_RadialDistribution_RadialCV_Mito_1of4: double
Nuclei_RadialDistribution_RadialCV_Mito_2of4: double
Nuclei_RadialDistribution_RadialCV_Mito_3of4: double
Nuclei_RadialDistribution_RadialCV_Mito_4of4: double
Nuclei_RadialDistribution_RadialCV_RNA_1of4: double
Nuclei_RadialDistribution_RadialCV_RNA_2of4: double
Nuclei_RadialDistribution_RadialCV_RNA_3of4: double
Nuclei_RadialDistribution_RadialCV_RNA_4of4: double
Nuclei_TableNumber: int64
Nuclei_Texture_AngularSecondMoment_AGP_10_00_256: double
Nuclei_Texture_AngularSecondMoment_AGP_10_01_256: double
Nuclei_Texture_AngularSecondMoment_AGP_10_02_256: double
Nuclei_Texture_AngularSecondMoment_AGP_10_03_256: double
Nuclei_Texture_AngularSecondMoment_AGP_3_00_256: double
Nuclei_Texture_AngularSecondMoment_AGP_3_01_256: double
Nuclei_Texture_AngularSecondMoment_AGP_3_02_256: double
Nuclei_Texture_AngularSecondMoment_AGP_3_03_256: double
Nuclei_Texture_AngularSecondMoment_AGP_5_00_256: double
Nuclei_Texture_AngularSecondMoment_AGP_5_01_256: double
Nuclei_Texture_AngularSecondMoment_AGP_5_02_256: double
Nuclei_Texture_AngularSecondMoment_AGP_5_03_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_10_00_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_10_01_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_10_02_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_10_03_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_3_00_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_3_01_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_3_02_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_3_03_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_5_00_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_5_01_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_5_02_256: double
Nuclei_Texture_AngularSecondMoment_BFHigh_5_03_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_10_00_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_10_01_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_10_02_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_10_03_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_3_00_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_3_01_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_3_02_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_3_03_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_5_00_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_5_01_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_5_02_256: double
Nuclei_Texture_AngularSecondMoment_BFLow_5_03_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_10_00_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_10_01_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_10_02_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_10_03_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_3_00_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_3_01_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_3_02_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_3_03_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_5_00_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_5_01_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_5_02_256: double
Nuclei_Texture_AngularSecondMoment_Brightfield_5_03_256: double
Nuclei_Texture_AngularSecondMoment_DNA_10_00_256: double
Nuclei_Texture_AngularSecondMoment_DNA_10_01_256: double
Nuclei_Texture_AngularSecondMoment_DNA_10_02_256: double
Nuclei_Texture_AngularSecondMoment_DNA_10_03_256: double
Nuclei_Texture_AngularSecondMoment_DNA_3_00_256: double
Nuclei_Texture_AngularSecondMoment_DNA_3_01_256: double
Nuclei_Texture_AngularSecondMoment_DNA_3_02_256: double
Nuclei_Texture_AngularSecondMoment_DNA_3_03_256: double
Nuclei_Texture_AngularSecondMoment_DNA_5_00_256: double
Nuclei_Texture_AngularSecondMoment_DNA_5_01_256: double
Nuclei_Texture_AngularSecondMoment_DNA_5_02_256: double
Nuclei_Texture_AngularSecondMoment_DNA_5_03_256: double
Nuclei_Texture_AngularSecondMoment_ER_10_00_256: double
Nuclei_Texture_AngularSecondMoment_ER_10_01_256: double
Nuclei_Texture_AngularSecondMoment_ER_10_02_256: double
Nuclei_Texture_AngularSecondMoment_ER_10_03_256: double
Nuclei_Texture_AngularSecondMoment_ER_3_00_256: double
Nuclei_Texture_AngularSecondMoment_ER_3_01_256: double
Nuclei_Texture_AngularSecondMoment_ER_3_02_256: double
Nuclei_Texture_AngularSecondMoment_ER_3_03_256: double
Nuclei_Texture_AngularSecondMoment_ER_5_00_256: double
Nuclei_Texture_AngularSecondMoment_ER_5_01_256: double
Nuclei_Texture_AngularSecondMoment_ER_5_02_256: double
Nuclei_Texture_AngularSecondMoment_ER_5_03_256: double
Nuclei_Texture_AngularSecondMoment_Mito_10_00_256: double
Nuclei_Texture_AngularSecondMoment_Mito_10_01_256: double
Nuclei_Texture_AngularSecondMoment_Mito_10_02_256: double
Nuclei_Texture_AngularSecondMoment_Mito_10_03_256: double
Nuclei_Texture_AngularSecondMoment_Mito_3_00_256: double
Nuclei_Texture_AngularSecondMoment_Mito_3_01_256: double
Nuclei_Texture_AngularSecondMoment_Mito_3_02_256: double
Nuclei_Texture_AngularSecondMoment_Mito_3_03_256: double
Nuclei_Texture_AngularSecondMoment_Mito_5_00_256: double
Nuclei_Texture_AngularSecondMoment_Mito_5_01_256: double
Nuclei_Texture_AngularSecondMoment_Mito_5_02_256: double
Nuclei_Texture_AngularSecondMoment_Mito_5_03_256: double
Nuclei_Texture_AngularSecondMoment_RNA_10_00_256: double
Nuclei_Texture_AngularSecondMoment_RNA_10_01_256: double
Nuclei_Texture_AngularSecondMoment_RNA_10_02_256: double
Nuclei_Texture_AngularSecondMoment_RNA_10_03_256: double
Nuclei_Texture_AngularSecondMoment_RNA_3_00_256: double
Nuclei_Texture_AngularSecondMoment_RNA_3_01_256: double
Nuclei_Texture_AngularSecondMoment_RNA_3_02_256: double
Nuclei_Texture_AngularSecondMoment_RNA_3_03_256: double
Nuclei_Texture_AngularSecondMoment_RNA_5_00_256: double
Nuclei_Texture_AngularSecondMoment_RNA_5_01_256: double
Nuclei_Texture_AngularSecondMoment_RNA_5_02_256: double
Nuclei_Texture_AngularSecondMoment_RNA_5_03_256: double
Nuclei_Texture_Contrast_AGP_10_00_256: double
Nuclei_Texture_Contrast_AGP_10_01_256: double
Nuclei_Texture_Contrast_AGP_10_02_256: double
Nuclei_Texture_Contrast_AGP_10_03_256: double
Nuclei_Texture_Contrast_AGP_3_00_256: double
Nuclei_Texture_Contrast_AGP_3_01_256: double
Nuclei_Texture_Contrast_AGP_3_02_256: double
Nuclei_Texture_Contrast_AGP_3_03_256: double
Nuclei_Texture_Contrast_AGP_5_00_256: double
Nuclei_Texture_Contrast_AGP_5_01_256: double
Nuclei_Texture_Contrast_AGP_5_02_256: double
Nuclei_Texture_Contrast_AGP_5_03_256: double
Nuclei_Texture_Contrast_BFHigh_10_00_256: double
Nuclei_Texture_Contrast_BFHigh_10_01_256: double
Nuclei_Texture_Contrast_BFHigh_10_02_256: double
Nuclei_Texture_Contrast_BFHigh_10_03_256: double
Nuclei_Texture_Contrast_BFHigh_3_00_256: double
Nuclei_Texture_Contrast_BFHigh_3_01_256: double
Nuclei_Texture_Contrast_BFHigh_3_02_256: double
Nuclei_Texture_Contrast_BFHigh_3_03_256: double
Nuclei_Texture_Contrast_BFHigh_5_00_256: double
Nuclei_Texture_Contrast_BFHigh_5_01_256: double
Nuclei_Texture_Contrast_BFHigh_5_02_256: double
Nuclei_Texture_Contrast_BFHigh_5_03_256: double
Nuclei_Texture_Contrast_BFLow_10_00_256: double
Nuclei_Texture_Contrast_BFLow_10_01_256: double
Nuclei_Texture_Contrast_BFLow_10_02_256: double
Nuclei_Texture_Contrast_BFLow_10_03_256: double
Nuclei_Texture_Contrast_BFLow_3_00_256: double
Nuclei_Texture_Contrast_BFLow_3_01_256: double
Nuclei_Texture_Contrast_BFLow_3_02_256: double
Nuclei_Texture_Contrast_BFLow_3_03_256: double
Nuclei_Texture_Contrast_BFLow_5_00_256: double
Nuclei_Texture_Contrast_BFLow_5_01_256: double
Nuclei_Texture_Contrast_BFLow_5_02_256: double
Nuclei_Texture_Contrast_BFLow_5_03_256: double
Nuclei_Texture_Contrast_Brightfield_10_00_256: double
Nuclei_Texture_Contrast_Brightfield_10_01_256: double
Nuclei_Texture_Contrast_Brightfield_10_02_256: double
Nuclei_Texture_Contrast_Brightfield_10_03_256: double
Nuclei_Texture_Contrast_Brightfield_3_00_256: double
Nuclei_Texture_Contrast_Brightfield_3_01_256: double
Nuclei_Texture_Contrast_Brightfield_3_02_256: double
Nuclei_Texture_Contrast_Brightfield_3_03_256: double
Nuclei_Texture_Contrast_Brightfield_5_00_256: double
Nuclei_Texture_Contrast_Brightfield_5_01_256: double
Nuclei_Texture_Contrast_Brightfield_5_02_256: double
Nuclei_Texture_Contrast_Brightfield_5_03_256: double
Nuclei_Texture_Contrast_DNA_10_00_256: double
Nuclei_Texture_Contrast_DNA_10_01_256: double
Nuclei_Texture_Contrast_DNA_10_02_256: double
Nuclei_Texture_Contrast_DNA_10_03_256: double
Nuclei_Texture_Contrast_DNA_3_00_256: double
Nuclei_Texture_Contrast_DNA_3_01_256: double
Nuclei_Texture_Contrast_DNA_3_02_256: double
Nuclei_Texture_Contrast_DNA_3_03_256: double
Nuclei_Texture_Contrast_DNA_5_00_256: double
Nuclei_Texture_Contrast_DNA_5_01_256: double
Nuclei_Texture_Contrast_DNA_5_02_256: double
Nuclei_Texture_Contrast_DNA_5_03_256: double
Nuclei_Texture_Contrast_ER_10_00_256: double
Nuclei_Texture_Contrast_ER_10_01_256: double
Nuclei_Texture_Contrast_ER_10_02_256: double
Nuclei_Texture_Contrast_ER_10_03_256: double
Nuclei_Texture_Contrast_ER_3_00_256: double
Nuclei_Texture_Contrast_ER_3_01_256: double
Nuclei_Texture_Contrast_ER_3_02_256: double
Nuclei_Texture_Contrast_ER_3_03_256: double
Nuclei_Texture_Contrast_ER_5_00_256: double
Nuclei_Texture_Contrast_ER_5_01_256: double
Nuclei_Texture_Contrast_ER_5_02_256: double
Nuclei_Texture_Contrast_ER_5_03_256: double
Nuclei_Texture_Contrast_Mito_10_00_256: double
Nuclei_Texture_Contrast_Mito_10_01_256: double
Nuclei_Texture_Contrast_Mito_10_02_256: double
Nuclei_Texture_Contrast_Mito_10_03_256: double
Nuclei_Texture_Contrast_Mito_3_00_256: double
Nuclei_Texture_Contrast_Mito_3_01_256: double
Nuclei_Texture_Contrast_Mito_3_02_256: double
Nuclei_Texture_Contrast_Mito_3_03_256: double
Nuclei_Texture_Contrast_Mito_5_00_256: double
Nuclei_Texture_Contrast_Mito_5_01_256: double
Nuclei_Texture_Contrast_Mito_5_02_256: double
Nuclei_Texture_Contrast_Mito_5_03_256: double
Nuclei_Texture_Contrast_RNA_10_00_256: double
Nuclei_Texture_Contrast_RNA_10_01_256: double
Nuclei_Texture_Contrast_RNA_10_02_256: double
Nuclei_Texture_Contrast_RNA_10_03_256: double
Nuclei_Texture_Contrast_RNA_3_00_256: double
Nuclei_Texture_Contrast_RNA_3_01_256: double
Nuclei_Texture_Contrast_RNA_3_02_256: double
Nuclei_Texture_Contrast_RNA_3_03_256: double
Nuclei_Texture_Contrast_RNA_5_00_256: double
Nuclei_Texture_Contrast_RNA_5_01_256: double
Nuclei_Texture_Contrast_RNA_5_02_256: double
Nuclei_Texture_Contrast_RNA_5_03_256: double
Nuclei_Texture_Correlation_AGP_10_00_256: double
Nuclei_Texture_Correlation_AGP_10_01_256: double
Nuclei_Texture_Correlation_AGP_10_02_256: double
Nuclei_Texture_Correlation_AGP_10_03_256: double
Nuclei_Texture_Correlation_AGP_3_00_256: double
Nuclei_Texture_Correlation_AGP_3_01_256: double
Nuclei_Texture_Correlation_AGP_3_02_256: double
Nuclei_Texture_Correlation_AGP_3_03_256: double
Nuclei_Texture_Correlation_AGP_5_00_256: double
Nuclei_Texture_Correlation_AGP_5_01_256: double
Nuclei_Texture_Correlation_AGP_5_02_256: double
Nuclei_Texture_Correlation_AGP_5_03_256: double
Nuclei_Texture_Correlation_BFHigh_10_00_256: double
Nuclei_Texture_Correlation_BFHigh_10_01_256: double
Nuclei_Texture_Correlation_BFHigh_10_02_256: double
Nuclei_Texture_Correlation_BFHigh_10_03_256: double
Nuclei_Texture_Correlation_BFHigh_3_00_256: double
Nuclei_Texture_Correlation_BFHigh_3_01_256: double
Nuclei_Texture_Correlation_BFHigh_3_02_256: double
Nuclei_Texture_Correlation_BFHigh_3_03_256: double
Nuclei_Texture_Correlation_BFHigh_5_00_256: double
Nuclei_Texture_Correlation_BFHigh_5_01_256: double
Nuclei_Texture_Correlation_BFHigh_5_02_256: double
Nuclei_Texture_Correlation_BFHigh_5_03_256: double
Nuclei_Texture_Correlation_BFLow_10_00_256: double
Nuclei_Texture_Correlation_BFLow_10_01_256: double
Nuclei_Texture_Correlation_BFLow_10_02_256: double
Nuclei_Texture_Correlation_BFLow_10_03_256: double
Nuclei_Texture_Correlation_BFLow_3_00_256: double
Nuclei_Texture_Correlation_BFLow_3_01_256: double
Nuclei_Texture_Correlation_BFLow_3_02_256: double
Nuclei_Texture_Correlation_BFLow_3_03_256: double
Nuclei_Texture_Correlation_BFLow_5_00_256: double
Nuclei_Texture_Correlation_BFLow_5_01_256: double
Nuclei_Texture_Correlation_BFLow_5_02_256: double
Nuclei_Texture_Correlation_BFLow_5_03_256: double
Nuclei_Texture_Correlation_Brightfield_10_00_256: double
Nuclei_Texture_Correlation_Brightfield_10_01_256: double
Nuclei_Texture_Correlation_Brightfield_10_02_256: double
Nuclei_Texture_Correlation_Brightfield_10_03_256: double
Nuclei_Texture_Correlation_Brightfield_3_00_256: double
Nuclei_Texture_Correlation_Brightfield_3_01_256: double
Nuclei_Texture_Correlation_Brightfield_3_02_256: double
Nuclei_Texture_Correlation_Brightfield_3_03_256: double
Nuclei_Texture_Correlation_Brightfield_5_00_256: double
Nuclei_Texture_Correlation_Brightfield_5_01_256: double
Nuclei_Texture_Correlation_Brightfield_5_02_256: double
Nuclei_Texture_Correlation_Brightfield_5_03_256: double
Nuclei_Texture_Correlation_DNA_10_00_256: double
Nuclei_Texture_Correlation_DNA_10_01_256: double
Nuclei_Texture_Correlation_DNA_10_02_256: double
Nuclei_Texture_Correlation_DNA_10_03_256: double
Nuclei_Texture_Correlation_DNA_3_00_256: double
Nuclei_Texture_Correlation_DNA_3_01_256: double
Nuclei_Texture_Correlation_DNA_3_02_256: double
Nuclei_Texture_Correlation_DNA_3_03_256: double
Nuclei_Texture_Correlation_DNA_5_00_256: double
Nuclei_Texture_Correlation_DNA_5_01_256: double
Nuclei_Texture_Correlation_DNA_5_02_256: double
Nuclei_Texture_Correlation_DNA_5_03_256: double
Nuclei_Texture_Correlation_ER_10_00_256: double
Nuclei_Texture_Correlation_ER_10_01_256: double
Nuclei_Texture_Correlation_ER_10_02_256: double
Nuclei_Texture_Correlation_ER_10_03_256: double
Nuclei_Texture_Correlation_ER_3_00_256: double
Nuclei_Texture_Correlation_ER_3_01_256: double
Nuclei_Texture_Correlation_ER_3_02_256: double
Nuclei_Texture_Correlation_ER_3_03_256: double
Nuclei_Texture_Correlation_ER_5_00_256: double
Nuclei_Texture_Correlation_ER_5_01_256: double
Nuclei_Texture_Correlation_ER_5_02_256: double
Nuclei_Texture_Correlation_ER_5_03_256: double
Nuclei_Texture_Correlation_Mito_10_00_256: double
Nuclei_Texture_Correlation_Mito_10_01_256: double
Nuclei_Texture_Correlation_Mito_10_02_256: double
Nuclei_Texture_Correlation_Mito_10_03_256: double
Nuclei_Texture_Correlation_Mito_3_00_256: double
Nuclei_Texture_Correlation_Mito_3_01_256: double
Nuclei_Texture_Correlation_Mito_3_02_256: double
Nuclei_Texture_Correlation_Mito_3_03_256: double
Nuclei_Texture_Correlation_Mito_5_00_256: double
Nuclei_Texture_Correlation_Mito_5_01_256: double
Nuclei_Texture_Correlation_Mito_5_02_256: double
Nuclei_Texture_Correlation_Mito_5_03_256: double
Nuclei_Texture_Correlation_RNA_10_00_256: double
Nuclei_Texture_Correlation_RNA_10_01_256: double
Nuclei_Texture_Correlation_RNA_10_02_256: double
Nuclei_Texture_Correlation_RNA_10_03_256: double
Nuclei_Texture_Correlation_RNA_3_00_256: double
Nuclei_Texture_Correlation_RNA_3_01_256: double
Nuclei_Texture_Correlation_RNA_3_02_256: double
Nuclei_Texture_Correlation_RNA_3_03_256: double
Nuclei_Texture_Correlation_RNA_5_00_256: double
Nuclei_Texture_Correlation_RNA_5_01_256: double
Nuclei_Texture_Correlation_RNA_5_02_256: double
Nuclei_Texture_Correlation_RNA_5_03_256: double
Nuclei_Texture_DifferenceEntropy_AGP_10_00_256: double
Nuclei_Texture_DifferenceEntropy_AGP_10_01_256: double
Nuclei_Texture_DifferenceEntropy_AGP_10_02_256: double
Nuclei_Texture_DifferenceEntropy_AGP_10_03_256: double
Nuclei_Texture_DifferenceEntropy_AGP_3_00_256: double
Nuclei_Texture_DifferenceEntropy_AGP_3_01_256: double
Nuclei_Texture_DifferenceEntropy_AGP_3_02_256: double
Nuclei_Texture_DifferenceEntropy_AGP_3_03_256: double
Nuclei_Texture_DifferenceEntropy_AGP_5_00_256: double
Nuclei_Texture_DifferenceEntropy_AGP_5_01_256: double
Nuclei_Texture_DifferenceEntropy_AGP_5_02_256: double
Nuclei_Texture_DifferenceEntropy_AGP_5_03_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_10_00_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_10_01_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_10_02_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_10_03_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_3_00_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_3_01_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_3_02_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_3_03_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_5_00_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_5_01_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_5_02_256: double
Nuclei_Texture_DifferenceEntropy_BFHigh_5_03_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_10_00_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_10_01_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_10_02_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_10_03_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_3_00_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_3_01_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_3_02_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_3_03_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_5_00_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_5_01_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_5_02_256: double
Nuclei_Texture_DifferenceEntropy_BFLow_5_03_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_10_00_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_10_01_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_10_02_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_10_03_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_3_00_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_3_01_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_3_02_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_3_03_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_5_00_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_5_01_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_5_02_256: double
Nuclei_Texture_DifferenceEntropy_Brightfield_5_03_256: double
Nuclei_Texture_DifferenceEntropy_DNA_10_00_256: double
Nuclei_Texture_DifferenceEntropy_DNA_10_01_256: double
Nuclei_Texture_DifferenceEntropy_DNA_10_02_256: double
Nuclei_Texture_DifferenceEntropy_DNA_10_03_256: double
Nuclei_Texture_DifferenceEntropy_DNA_3_00_256: double
Nuclei_Texture_DifferenceEntropy_DNA_3_01_256: double
Nuclei_Texture_DifferenceEntropy_DNA_3_02_256: double
Nuclei_Texture_DifferenceEntropy_DNA_3_03_256: double
Nuclei_Texture_DifferenceEntropy_DNA_5_00_256: double
Nuclei_Texture_DifferenceEntropy_DNA_5_01_256: double
Nuclei_Texture_DifferenceEntropy_DNA_5_02_256: double
Nuclei_Texture_DifferenceEntropy_DNA_5_03_256: double
Nuclei_Texture_DifferenceEntropy_ER_10_00_256: double
Nuclei_Texture_DifferenceEntropy_ER_10_01_256: double
Nuclei_Texture_DifferenceEntropy_ER_10_02_256: double
Nuclei_Texture_DifferenceEntropy_ER_10_03_256: double
Nuclei_Texture_DifferenceEntropy_ER_3_00_256: double
Nuclei_Texture_DifferenceEntropy_ER_3_01_256: double
Nuclei_Texture_DifferenceEntropy_ER_3_02_256: double
Nuclei_Texture_DifferenceEntropy_ER_3_03_256: double
Nuclei_Texture_DifferenceEntropy_ER_5_00_256: double
Nuclei_Texture_DifferenceEntropy_ER_5_01_256: double
Nuclei_Texture_DifferenceEntropy_ER_5_02_256: double
Nuclei_Texture_DifferenceEntropy_ER_5_03_256: double
Nuclei_Texture_DifferenceEntropy_Mito_10_00_256: double
Nuclei_Texture_DifferenceEntropy_Mito_10_01_256: double
Nuclei_Texture_DifferenceEntropy_Mito_10_02_256: double
Nuclei_Texture_DifferenceEntropy_Mito_10_03_256: double
Nuclei_Texture_DifferenceEntropy_Mito_3_00_256: double
Nuclei_Texture_DifferenceEntropy_Mito_3_01_256: double
Nuclei_Texture_DifferenceEntropy_Mito_3_02_256: double
Nuclei_Texture_DifferenceEntropy_Mito_3_03_256: double
Nuclei_Texture_DifferenceEntropy_Mito_5_00_256: double
Nuclei_Texture_DifferenceEntropy_Mito_5_01_256: double
Nuclei_Texture_DifferenceEntropy_Mito_5_02_256: double
Nuclei_Texture_DifferenceEntropy_Mito_5_03_256: double
Nuclei_Texture_DifferenceEntropy_RNA_10_00_256: double
Nuclei_Texture_DifferenceEntropy_RNA_10_01_256: double
Nuclei_Texture_DifferenceEntropy_RNA_10_02_256: double
Nuclei_Texture_DifferenceEntropy_RNA_10_03_256: double
Nuclei_Texture_DifferenceEntropy_RNA_3_00_256: double
Nuclei_Texture_DifferenceEntropy_RNA_3_01_256: double
Nuclei_Texture_DifferenceEntropy_RNA_3_02_256: double
Nuclei_Texture_DifferenceEntropy_RNA_3_03_256: double
Nuclei_Texture_DifferenceEntropy_RNA_5_00_256: double
Nuclei_Texture_DifferenceEntropy_RNA_5_01_256: double
Nuclei_Texture_DifferenceEntropy_RNA_5_02_256: double
Nuclei_Texture_DifferenceEntropy_RNA_5_03_256: double
Nuclei_Texture_DifferenceVariance_AGP_10_00_256: double
Nuclei_Texture_DifferenceVariance_AGP_10_01_256: double
Nuclei_Texture_DifferenceVariance_AGP_10_02_256: double
Nuclei_Texture_DifferenceVariance_AGP_10_03_256: double
Nuclei_Texture_DifferenceVariance_AGP_3_00_256: double
Nuclei_Texture_DifferenceVariance_AGP_3_01_256: double
Nuclei_Texture_DifferenceVariance_AGP_3_02_256: double
Nuclei_Texture_DifferenceVariance_AGP_3_03_256: double
Nuclei_Texture_DifferenceVariance_AGP_5_00_256: double
Nuclei_Texture_DifferenceVariance_AGP_5_01_256: double
Nuclei_Texture_DifferenceVariance_AGP_5_02_256: double
Nuclei_Texture_DifferenceVariance_AGP_5_03_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_10_00_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_10_01_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_10_02_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_10_03_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_3_00_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_3_01_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_3_02_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_3_03_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_5_00_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_5_01_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_5_02_256: double
Nuclei_Texture_DifferenceVariance_BFHigh_5_03_256: double
Nuclei_Texture_DifferenceVariance_BFLow_10_00_256: double
Nuclei_Texture_DifferenceVariance_BFLow_10_01_256: double
Nuclei_Texture_DifferenceVariance_BFLow_10_02_256: double
Nuclei_Texture_DifferenceVariance_BFLow_10_03_256: double
Nuclei_Texture_DifferenceVariance_BFLow_3_00_256: double
Nuclei_Texture_DifferenceVariance_BFLow_3_01_256: double
Nuclei_Texture_DifferenceVariance_BFLow_3_02_256: double
Nuclei_Texture_DifferenceVariance_BFLow_3_03_256: double
Nuclei_Texture_DifferenceVariance_BFLow_5_00_256: double
Nuclei_Texture_DifferenceVariance_BFLow_5_01_256: double
Nuclei_Texture_DifferenceVariance_BFLow_5_02_256: double
Nuclei_Texture_DifferenceVariance_BFLow_5_03_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_10_00_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_10_01_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_10_02_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_10_03_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_3_00_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_3_01_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_3_02_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_3_03_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_5_00_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_5_01_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_5_02_256: double
Nuclei_Texture_DifferenceVariance_Brightfield_5_03_256: double
Nuclei_Texture_DifferenceVariance_DNA_10_00_256: double
Nuclei_Texture_DifferenceVariance_DNA_10_01_256: double
Nuclei_Texture_DifferenceVariance_DNA_10_02_256: double
Nuclei_Texture_DifferenceVariance_DNA_10_03_256: double
Nuclei_Texture_DifferenceVariance_DNA_3_00_256: double
Nuclei_Texture_DifferenceVariance_DNA_3_01_256: double
Nuclei_Texture_DifferenceVariance_DNA_3_02_256: double
Nuclei_Texture_DifferenceVariance_DNA_3_03_256: double
Nuclei_Texture_DifferenceVariance_DNA_5_00_256: double
Nuclei_Texture_DifferenceVariance_DNA_5_01_256: double
Nuclei_Texture_DifferenceVariance_DNA_5_02_256: double
Nuclei_Texture_DifferenceVariance_DNA_5_03_256: double
Nuclei_Texture_DifferenceVariance_ER_10_00_256: double
Nuclei_Texture_DifferenceVariance_ER_10_01_256: double
Nuclei_Texture_DifferenceVariance_ER_10_02_256: double
Nuclei_Texture_DifferenceVariance_ER_10_03_256: double
Nuclei_Texture_DifferenceVariance_ER_3_00_256: double
Nuclei_Texture_DifferenceVariance_ER_3_01_256: double
Nuclei_Texture_DifferenceVariance_ER_3_02_256: double
Nuclei_Texture_DifferenceVariance_ER_3_03_256: double
Nuclei_Texture_DifferenceVariance_ER_5_00_256: double
Nuclei_Texture_DifferenceVariance_ER_5_01_256: double
Nuclei_Texture_DifferenceVariance_ER_5_02_256: double
Nuclei_Texture_DifferenceVariance_ER_5_03_256: double
Nuclei_Texture_DifferenceVariance_Mito_10_00_256: double
Nuclei_Texture_DifferenceVariance_Mito_10_01_256: double
Nuclei_Texture_DifferenceVariance_Mito_10_02_256: double
Nuclei_Texture_DifferenceVariance_Mito_10_03_256: double
Nuclei_Texture_DifferenceVariance_Mito_3_00_256: double
Nuclei_Texture_DifferenceVariance_Mito_3_01_256: double
Nuclei_Texture_DifferenceVariance_Mito_3_02_256: double
Nuclei_Texture_DifferenceVariance_Mito_3_03_256: double
Nuclei_Texture_DifferenceVariance_Mito_5_00_256: double
Nuclei_Texture_DifferenceVariance_Mito_5_01_256: double
Nuclei_Texture_DifferenceVariance_Mito_5_02_256: double
Nuclei_Texture_DifferenceVariance_Mito_5_03_256: double
Nuclei_Texture_DifferenceVariance_RNA_10_00_256: double
Nuclei_Texture_DifferenceVariance_RNA_10_01_256: double
Nuclei_Texture_DifferenceVariance_RNA_10_02_256: double
Nuclei_Texture_DifferenceVariance_RNA_10_03_256: double
Nuclei_Texture_DifferenceVariance_RNA_3_00_256: double
Nuclei_Texture_DifferenceVariance_RNA_3_01_256: double
Nuclei_Texture_DifferenceVariance_RNA_3_02_256: double
Nuclei_Texture_DifferenceVariance_RNA_3_03_256: double
Nuclei_Texture_DifferenceVariance_RNA_5_00_256: double
Nuclei_Texture_DifferenceVariance_RNA_5_01_256: double
Nuclei_Texture_DifferenceVariance_RNA_5_02_256: double
Nuclei_Texture_DifferenceVariance_RNA_5_03_256: double
Nuclei_Texture_Entropy_AGP_10_00_256: double
Nuclei_Texture_Entropy_AGP_10_01_256: double
Nuclei_Texture_Entropy_AGP_10_02_256: double
Nuclei_Texture_Entropy_AGP_10_03_256: double
Nuclei_Texture_Entropy_AGP_3_00_256: double
Nuclei_Texture_Entropy_AGP_3_01_256: double
Nuclei_Texture_Entropy_AGP_3_02_256: double
Nuclei_Texture_Entropy_AGP_3_03_256: double
Nuclei_Texture_Entropy_AGP_5_00_256: double
Nuclei_Texture_Entropy_AGP_5_01_256: double
Nuclei_Texture_Entropy_AGP_5_02_256: double
Nuclei_Texture_Entropy_AGP_5_03_256: double
Nuclei_Texture_Entropy_BFHigh_10_00_256: double
Nuclei_Texture_Entropy_BFHigh_10_01_256: double
Nuclei_Texture_Entropy_BFHigh_10_02_256: double
Nuclei_Texture_Entropy_BFHigh_10_03_256: double
Nuclei_Texture_Entropy_BFHigh_3_00_256: double
Nuclei_Texture_Entropy_BFHigh_3_01_256: double
Nuclei_Texture_Entropy_BFHigh_3_02_256: double
Nuclei_Texture_Entropy_BFHigh_3_03_256: double
Nuclei_Texture_Entropy_BFHigh_5_00_256: double
Nuclei_Texture_Entropy_BFHigh_5_01_256: double
Nuclei_Texture_Entropy_BFHigh_5_02_256: double
Nuclei_Texture_Entropy_BFHigh_5_03_256: double
Nuclei_Texture_Entropy_BFLow_10_00_256: double
Nuclei_Texture_Entropy_BFLow_10_01_256: double
Nuclei_Texture_Entropy_BFLow_10_02_256: double
Nuclei_Texture_Entropy_BFLow_10_03_256: double
Nuclei_Texture_Entropy_BFLow_3_00_256: double
Nuclei_Texture_Entropy_BFLow_3_01_256: double
Nuclei_Texture_Entropy_BFLow_3_02_256: double
Nuclei_Texture_Entropy_BFLow_3_03_256: double
Nuclei_Texture_Entropy_BFLow_5_00_256: double
Nuclei_Texture_Entropy_BFLow_5_01_256: double
Nuclei_Texture_Entropy_BFLow_5_02_256: double
Nuclei_Texture_Entropy_BFLow_5_03_256: double
Nuclei_Texture_Entropy_Brightfield_10_00_256: double
Nuclei_Texture_Entropy_Brightfield_10_01_256: double
Nuclei_Texture_Entropy_Brightfield_10_02_256: double
Nuclei_Texture_Entropy_Brightfield_10_03_256: double
Nuclei_Texture_Entropy_Brightfield_3_00_256: double
Nuclei_Texture_Entropy_Brightfield_3_01_256: double
Nuclei_Texture_Entropy_Brightfield_3_02_256: double
Nuclei_Texture_Entropy_Brightfield_3_03_256: double
Nuclei_Texture_Entropy_Brightfield_5_00_256: double
Nuclei_Texture_Entropy_Brightfield_5_01_256: double
Nuclei_Texture_Entropy_Brightfield_5_02_256: double
Nuclei_Texture_Entropy_Brightfield_5_03_256: double
Nuclei_Texture_Entropy_DNA_10_00_256: double
Nuclei_Texture_Entropy_DNA_10_01_256: double
Nuclei_Texture_Entropy_DNA_10_02_256: double
Nuclei_Texture_Entropy_DNA_10_03_256: double
Nuclei_Texture_Entropy_DNA_3_00_256: double
Nuclei_Texture_Entropy_DNA_3_01_256: double
Nuclei_Texture_Entropy_DNA_3_02_256: double
Nuclei_Texture_Entropy_DNA_3_03_256: double
Nuclei_Texture_Entropy_DNA_5_00_256: double
Nuclei_Texture_Entropy_DNA_5_01_256: double
Nuclei_Texture_Entropy_DNA_5_02_256: double
Nuclei_Texture_Entropy_DNA_5_03_256: double
Nuclei_Texture_Entropy_ER_10_00_256: double
Nuclei_Texture_Entropy_ER_10_01_256: double
Nuclei_Texture_Entropy_ER_10_02_256: double
Nuclei_Texture_Entropy_ER_10_03_256: double
Nuclei_Texture_Entropy_ER_3_00_256: double
Nuclei_Texture_Entropy_ER_3_01_256: double
Nuclei_Texture_Entropy_ER_3_02_256: double
Nuclei_Texture_Entropy_ER_3_03_256: double
Nuclei_Texture_Entropy_ER_5_00_256: double
Nuclei_Texture_Entropy_ER_5_01_256: double
Nuclei_Texture_Entropy_ER_5_02_256: double
Nuclei_Texture_Entropy_ER_5_03_256: double
Nuclei_Texture_Entropy_Mito_10_00_256: double
Nuclei_Texture_Entropy_Mito_10_01_256: double
Nuclei_Texture_Entropy_Mito_10_02_256: double
Nuclei_Texture_Entropy_Mito_10_03_256: double
Nuclei_Texture_Entropy_Mito_3_00_256: double
Nuclei_Texture_Entropy_Mito_3_01_256: double
Nuclei_Texture_Entropy_Mito_3_02_256: double
Nuclei_Texture_Entropy_Mito_3_03_256: double
Nuclei_Texture_Entropy_Mito_5_00_256: double
Nuclei_Texture_Entropy_Mito_5_01_256: double
Nuclei_Texture_Entropy_Mito_5_02_256: double
Nuclei_Texture_Entropy_Mito_5_03_256: double
Nuclei_Texture_Entropy_RNA_10_00_256: double
Nuclei_Texture_Entropy_RNA_10_01_256: double
Nuclei_Texture_Entropy_RNA_10_02_256: double
Nuclei_Texture_Entropy_RNA_10_03_256: double
Nuclei_Texture_Entropy_RNA_3_00_256: double
Nuclei_Texture_Entropy_RNA_3_01_256: double
Nuclei_Texture_Entropy_RNA_3_02_256: double
Nuclei_Texture_Entropy_RNA_3_03_256: double
Nuclei_Texture_Entropy_RNA_5_00_256: double
Nuclei_Texture_Entropy_RNA_5_01_256: double
Nuclei_Texture_Entropy_RNA_5_02_256: double
Nuclei_Texture_Entropy_RNA_5_03_256: double
Nuclei_Texture_InfoMeas1_AGP_10_00_256: double
Nuclei_Texture_InfoMeas1_AGP_10_01_256: double
Nuclei_Texture_InfoMeas1_AGP_10_02_256: double
Nuclei_Texture_InfoMeas1_AGP_10_03_256: double
Nuclei_Texture_InfoMeas1_AGP_3_00_256: double
Nuclei_Texture_InfoMeas1_AGP_3_01_256: double
Nuclei_Texture_InfoMeas1_AGP_3_02_256: double
Nuclei_Texture_InfoMeas1_AGP_3_03_256: double
Nuclei_Texture_InfoMeas1_AGP_5_00_256: double
Nuclei_Texture_InfoMeas1_AGP_5_01_256: double
Nuclei_Texture_InfoMeas1_AGP_5_02_256: double
Nuclei_Texture_InfoMeas1_AGP_5_03_256: double
Nuclei_Texture_InfoMeas1_BFHigh_10_00_256: double
Nuclei_Texture_InfoMeas1_BFHigh_10_01_256: double
Nuclei_Texture_InfoMeas1_BFHigh_10_02_256: double
Nuclei_Texture_InfoMeas1_BFHigh_10_03_256: double
Nuclei_Texture_InfoMeas1_BFHigh_3_00_256: double
Nuclei_Texture_InfoMeas1_BFHigh_3_01_256: double
Nuclei_Texture_InfoMeas1_BFHigh_3_02_256: double
Nuclei_Texture_InfoMeas1_BFHigh_3_03_256: double
Nuclei_Texture_InfoMeas1_BFHigh_5_00_256: double
Nuclei_Texture_InfoMeas1_BFHigh_5_01_256: double
Nuclei_Texture_InfoMeas1_BFHigh_5_02_256: double
Nuclei_Texture_InfoMeas1_BFHigh_5_03_256: double
Nuclei_Texture_InfoMeas1_BFLow_10_00_256: double
Nuclei_Texture_InfoMeas1_BFLow_10_01_256: double
Nuclei_Texture_InfoMeas1_BFLow_10_02_256: double
Nuclei_Texture_InfoMeas1_BFLow_10_03_256: double
Nuclei_Texture_InfoMeas1_BFLow_3_00_256: double
Nuclei_Texture_InfoMeas1_BFLow_3_01_256: double
Nuclei_Texture_InfoMeas1_BFLow_3_02_256: double
Nuclei_Texture_InfoMeas1_BFLow_3_03_256: double
Nuclei_Texture_InfoMeas1_BFLow_5_00_256: double
Nuclei_Texture_InfoMeas1_BFLow_5_01_256: double
Nuclei_Texture_InfoMeas1_BFLow_5_02_256: double
Nuclei_Texture_InfoMeas1_BFLow_5_03_256: double
Nuclei_Texture_InfoMeas1_Brightfield_10_00_256: double
Nuclei_Texture_InfoMeas1_Brightfield_10_01_256: double
Nuclei_Texture_InfoMeas1_Brightfield_10_02_256: double
Nuclei_Texture_InfoMeas1_Brightfield_10_03_256: double
Nuclei_Texture_InfoMeas1_Brightfield_3_00_256: double
Nuclei_Texture_InfoMeas1_Brightfield_3_01_256: double
Nuclei_Texture_InfoMeas1_Brightfield_3_02_256: double
Nuclei_Texture_InfoMeas1_Brightfield_3_03_256: double
Nuclei_Texture_InfoMeas1_Brightfield_5_00_256: double
Nuclei_Texture_InfoMeas1_Brightfield_5_01_256: double
Nuclei_Texture_InfoMeas1_Brightfield_5_02_256: double
Nuclei_Texture_InfoMeas1_Brightfield_5_03_256: double
Nuclei_Texture_InfoMeas1_DNA_10_00_256: double
Nuclei_Texture_InfoMeas1_DNA_10_01_256: double
Nuclei_Texture_InfoMeas1_DNA_10_02_256: double
Nuclei_Texture_InfoMeas1_DNA_10_03_256: double
Nuclei_Texture_InfoMeas1_DNA_3_00_256: double
Nuclei_Texture_InfoMeas1_DNA_3_01_256: double
Nuclei_Texture_InfoMeas1_DNA_3_02_256: double
Nuclei_Texture_InfoMeas1_DNA_3_03_256: double
Nuclei_Texture_InfoMeas1_DNA_5_00_256: double
Nuclei_Texture_InfoMeas1_DNA_5_01_256: double
Nuclei_Texture_InfoMeas1_DNA_5_02_256: double
Nuclei_Texture_InfoMeas1_DNA_5_03_256: double
Nuclei_Texture_InfoMeas1_ER_10_00_256: double
Nuclei_Texture_InfoMeas1_ER_10_01_256: double
Nuclei_Texture_InfoMeas1_ER_10_02_256: double
Nuclei_Texture_InfoMeas1_ER_10_03_256: double
Nuclei_Texture_InfoMeas1_ER_3_00_256: double
Nuclei_Texture_InfoMeas1_ER_3_01_256: double
Nuclei_Texture_InfoMeas1_ER_3_02_256: double
Nuclei_Texture_InfoMeas1_ER_3_03_256: double
Nuclei_Texture_InfoMeas1_ER_5_00_256: double
Nuclei_Texture_InfoMeas1_ER_5_01_256: double
Nuclei_Texture_InfoMeas1_ER_5_02_256: double
Nuclei_Texture_InfoMeas1_ER_5_03_256: double
Nuclei_Texture_InfoMeas1_Mito_10_00_256: double
Nuclei_Texture_InfoMeas1_Mito_10_01_256: double
Nuclei_Texture_InfoMeas1_Mito_10_02_256: double
Nuclei_Texture_InfoMeas1_Mito_10_03_256: double
Nuclei_Texture_InfoMeas1_Mito_3_00_256: double
Nuclei_Texture_InfoMeas1_Mito_3_01_256: double
Nuclei_Texture_InfoMeas1_Mito_3_02_256: double
Nuclei_Texture_InfoMeas1_Mito_3_03_256: double
Nuclei_Texture_InfoMeas1_Mito_5_00_256: double
Nuclei_Texture_InfoMeas1_Mito_5_01_256: double
Nuclei_Texture_InfoMeas1_Mito_5_02_256: double
Nuclei_Texture_InfoMeas1_Mito_5_03_256: double
Nuclei_Texture_InfoMeas1_RNA_10_00_256: double
Nuclei_Texture_InfoMeas1_RNA_10_01_256: double
Nuclei_Texture_InfoMeas1_RNA_10_02_256: double
Nuclei_Texture_InfoMeas1_RNA_10_03_256: double
Nuclei_Texture_InfoMeas1_RNA_3_00_256: double
Nuclei_Texture_InfoMeas1_RNA_3_01_256: double
Nuclei_Texture_InfoMeas1_RNA_3_02_256: double
Nuclei_Texture_InfoMeas1_RNA_3_03_256: double
Nuclei_Texture_InfoMeas1_RNA_5_00_256: double
Nuclei_Texture_InfoMeas1_RNA_5_01_256: double
Nuclei_Texture_InfoMeas1_RNA_5_02_256: double
Nuclei_Texture_InfoMeas1_RNA_5_03_256: double
Nuclei_Texture_InfoMeas2_AGP_10_00_256: double
Nuclei_Texture_InfoMeas2_AGP_10_01_256: double
Nuclei_Texture_InfoMeas2_AGP_10_02_256: double
Nuclei_Texture_InfoMeas2_AGP_10_03_256: double
Nuclei_Texture_InfoMeas2_AGP_3_00_256: double
Nuclei_Texture_InfoMeas2_AGP_3_01_256: double
Nuclei_Texture_InfoMeas2_AGP_3_02_256: double
Nuclei_Texture_InfoMeas2_AGP_3_03_256: double
Nuclei_Texture_InfoMeas2_AGP_5_00_256: double
Nuclei_Texture_InfoMeas2_AGP_5_01_256: double
Nuclei_Texture_InfoMeas2_AGP_5_02_256: double
Nuclei_Texture_InfoMeas2_AGP_5_03_256: double
Nuclei_Texture_InfoMeas2_BFHigh_10_00_256: double
Nuclei_Texture_InfoMeas2_BFHigh_10_01_256: double
Nuclei_Texture_InfoMeas2_BFHigh_10_02_256: double
Nuclei_Texture_InfoMeas2_BFHigh_10_03_256: double
Nuclei_Texture_InfoMeas2_BFHigh_3_00_256: double
Nuclei_Texture_InfoMeas2_BFHigh_3_01_256: double
Nuclei_Texture_InfoMeas2_BFHigh_3_02_256: double
Nuclei_Texture_InfoMeas2_BFHigh_3_03_256: double
Nuclei_Texture_InfoMeas2_BFHigh_5_00_256: double
Nuclei_Texture_InfoMeas2_BFHigh_5_01_256: double
Nuclei_Texture_InfoMeas2_BFHigh_5_02_256: double
Nuclei_Texture_InfoMeas2_BFHigh_5_03_256: double
Nuclei_Texture_InfoMeas2_BFLow_10_00_256: double
Nuclei_Texture_InfoMeas2_BFLow_10_01_256: double
Nuclei_Texture_InfoMeas2_BFLow_10_02_256: double
Nuclei_Texture_InfoMeas2_BFLow_10_03_256: double
Nuclei_Texture_InfoMeas2_BFLow_3_00_256: double
Nuclei_Texture_InfoMeas2_BFLow_3_01_256: double
Nuclei_Texture_InfoMeas2_BFLow_3_02_256: double
Nuclei_Texture_InfoMeas2_BFLow_3_03_256: double
Nuclei_Texture_InfoMeas2_BFLow_5_00_256: double
Nuclei_Texture_InfoMeas2_BFLow_5_01_256: double
Nuclei_Texture_InfoMeas2_BFLow_5_02_256: double
Nuclei_Texture_InfoMeas2_BFLow_5_03_256: double
Nuclei_Texture_InfoMeas2_Brightfield_10_00_256: double
Nuclei_Texture_InfoMeas2_Brightfield_10_01_256: double
Nuclei_Texture_InfoMeas2_Brightfield_10_02_256: double
Nuclei_Texture_InfoMeas2_Brightfield_10_03_256: double
Nuclei_Texture_InfoMeas2_Brightfield_3_00_256: double
Nuclei_Texture_InfoMeas2_Brightfield_3_01_256: double
Nuclei_Texture_InfoMeas2_Brightfield_3_02_256: double
Nuclei_Texture_InfoMeas2_Brightfield_3_03_256: double
Nuclei_Texture_InfoMeas2_Brightfield_5_00_256: double
Nuclei_Texture_InfoMeas2_Brightfield_5_01_256: double
Nuclei_Texture_InfoMeas2_Brightfield_5_02_256: double
Nuclei_Texture_InfoMeas2_Brightfield_5_03_256: double
Nuclei_Texture_InfoMeas2_DNA_10_00_256: double
Nuclei_Texture_InfoMeas2_DNA_10_01_256: double
Nuclei_Texture_InfoMeas2_DNA_10_02_256: double
Nuclei_Texture_InfoMeas2_DNA_10_03_256: double
Nuclei_Texture_InfoMeas2_DNA_3_00_256: double
Nuclei_Texture_InfoMeas2_DNA_3_01_256: double
Nuclei_Texture_InfoMeas2_DNA_3_02_256: double
Nuclei_Texture_InfoMeas2_DNA_3_03_256: double
Nuclei_Texture_InfoMeas2_DNA_5_00_256: double
Nuclei_Texture_InfoMeas2_DNA_5_01_256: double
Nuclei_Texture_InfoMeas2_DNA_5_02_256: double
Nuclei_Texture_InfoMeas2_DNA_5_03_256: double
Nuclei_Texture_InfoMeas2_ER_10_00_256: double
Nuclei_Texture_InfoMeas2_ER_10_01_256: double
Nuclei_Texture_InfoMeas2_ER_10_02_256: double
Nuclei_Texture_InfoMeas2_ER_10_03_256: double
Nuclei_Texture_InfoMeas2_ER_3_00_256: double
Nuclei_Texture_InfoMeas2_ER_3_01_256: double
Nuclei_Texture_InfoMeas2_ER_3_02_256: double
Nuclei_Texture_InfoMeas2_ER_3_03_256: double
Nuclei_Texture_InfoMeas2_ER_5_00_256: double
Nuclei_Texture_InfoMeas2_ER_5_01_256: double
Nuclei_Texture_InfoMeas2_ER_5_02_256: double
Nuclei_Texture_InfoMeas2_ER_5_03_256: double
Nuclei_Texture_InfoMeas2_Mito_10_00_256: double
Nuclei_Texture_InfoMeas2_Mito_10_01_256: double
Nuclei_Texture_InfoMeas2_Mito_10_02_256: double
Nuclei_Texture_InfoMeas2_Mito_10_03_256: double
Nuclei_Texture_InfoMeas2_Mito_3_00_256: double
Nuclei_Texture_InfoMeas2_Mito_3_01_256: double
Nuclei_Texture_InfoMeas2_Mito_3_02_256: double
Nuclei_Texture_InfoMeas2_Mito_3_03_256: double
Nuclei_Texture_InfoMeas2_Mito_5_00_256: double
Nuclei_Texture_InfoMeas2_Mito_5_01_256: double
Nuclei_Texture_InfoMeas2_Mito_5_02_256: double
Nuclei_Texture_InfoMeas2_Mito_5_03_256: double
Nuclei_Texture_InfoMeas2_RNA_10_00_256: double
Nuclei_Texture_InfoMeas2_RNA_10_01_256: double
Nuclei_Texture_InfoMeas2_RNA_10_02_256: double
Nuclei_Texture_InfoMeas2_RNA_10_03_256: double
Nuclei_Texture_InfoMeas2_RNA_3_00_256: double
Nuclei_Texture_InfoMeas2_RNA_3_01_256: double
Nuclei_Texture_InfoMeas2_RNA_3_02_256: double
Nuclei_Texture_InfoMeas2_RNA_3_03_256: double
Nuclei_Texture_InfoMeas2_RNA_5_00_256: double
Nuclei_Texture_InfoMeas2_RNA_5_01_256: double
Nuclei_Texture_InfoMeas2_RNA_5_02_256: double
Nuclei_Texture_InfoMeas2_RNA_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_AGP_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFHigh_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_BFLow_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Brightfield_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_DNA_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_ER_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_Mito_5_03_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_10_00_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_10_01_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_10_02_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_10_03_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_3_00_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_3_01_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_3_02_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_3_03_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_5_00_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_5_01_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_5_02_256: double
Nuclei_Texture_InverseDifferenceMoment_RNA_5_03_256: double
Nuclei_Texture_SumAverage_AGP_10_00_256: double
Nuclei_Texture_SumAverage_AGP_10_01_256: double
Nuclei_Texture_SumAverage_AGP_10_02_256: double
Nuclei_Texture_SumAverage_AGP_10_03_256: double
Nuclei_Texture_SumAverage_AGP_3_00_256: double
Nuclei_Texture_SumAverage_AGP_3_01_256: double
Nuclei_Texture_SumAverage_AGP_3_02_256: double
Nuclei_Texture_SumAverage_AGP_3_03_256: double
Nuclei_Texture_SumAverage_AGP_5_00_256: double
Nuclei_Texture_SumAverage_AGP_5_01_256: double
Nuclei_Texture_SumAverage_AGP_5_02_256: double
Nuclei_Texture_SumAverage_AGP_5_03_256: double
Nuclei_Texture_SumAverage_BFHigh_10_00_256: double
Nuclei_Texture_SumAverage_BFHigh_10_01_256: double
Nuclei_Texture_SumAverage_BFHigh_10_02_256: double
Nuclei_Texture_SumAverage_BFHigh_10_03_256: double
Nuclei_Texture_SumAverage_BFHigh_3_00_256: double
Nuclei_Texture_SumAverage_BFHigh_3_01_256: double
Nuclei_Texture_SumAverage_BFHigh_3_02_256: double
Nuclei_Texture_SumAverage_BFHigh_3_03_256: double
Nuclei_Texture_SumAverage_BFHigh_5_00_256: double
Nuclei_Texture_SumAverage_BFHigh_5_01_256: double
Nuclei_Texture_SumAverage_BFHigh_5_02_256: double
Nuclei_Texture_SumAverage_BFHigh_5_03_256: double
Nuclei_Texture_SumAverage_BFLow_10_00_256: double
Nuclei_Texture_SumAverage_BFLow_10_01_256: double
Nuclei_Texture_SumAverage_BFLow_10_02_256: double
Nuclei_Texture_SumAverage_BFLow_10_03_256: double
Nuclei_Texture_SumAverage_BFLow_3_00_256: double
Nuclei_Texture_SumAverage_BFLow_3_01_256: double
Nuclei_Texture_SumAverage_BFLow_3_02_256: double
Nuclei_Texture_SumAverage_BFLow_3_03_256: double
Nuclei_Texture_SumAverage_BFLow_5_00_256: double
Nuclei_Texture_SumAverage_BFLow_5_01_256: double
Nuclei_Texture_SumAverage_BFLow_5_02_256: double
Nuclei_Texture_SumAverage_BFLow_5_03_256: double
Nuclei_Texture_SumAverage_Brightfield_10_00_256: double
Nuclei_Texture_SumAverage_Brightfield_10_01_256: double
Nuclei_Texture_SumAverage_Brightfield_10_02_256: double
Nuclei_Texture_SumAverage_Brightfield_10_03_256: double
Nuclei_Texture_SumAverage_Brightfield_3_00_256: double
Nuclei_Texture_SumAverage_Brightfield_3_01_256: double
Nuclei_Texture_SumAverage_Brightfield_3_02_256: double
Nuclei_Texture_SumAverage_Brightfield_3_03_256: double
Nuclei_Texture_SumAverage_Brightfield_5_00_256: double
Nuclei_Texture_SumAverage_Brightfield_5_01_256: double
Nuclei_Texture_SumAverage_Brightfield_5_02_256: double
Nuclei_Texture_SumAverage_Brightfield_5_03_256: double
Nuclei_Texture_SumAverage_DNA_10_00_256: double
Nuclei_Texture_SumAverage_DNA_10_01_256: double
Nuclei_Texture_SumAverage_DNA_10_02_256: double
Nuclei_Texture_SumAverage_DNA_10_03_256: double
Nuclei_Texture_SumAverage_DNA_3_00_256: double
Nuclei_Texture_SumAverage_DNA_3_01_256: double
Nuclei_Texture_SumAverage_DNA_3_02_256: double
Nuclei_Texture_SumAverage_DNA_3_03_256: double
Nuclei_Texture_SumAverage_DNA_5_00_256: double
Nuclei_Texture_SumAverage_DNA_5_01_256: double
Nuclei_Texture_SumAverage_DNA_5_02_256: double
Nuclei_Texture_SumAverage_DNA_5_03_256: double
Nuclei_Texture_SumAverage_ER_10_00_256: double
Nuclei_Texture_SumAverage_ER_10_01_256: double
Nuclei_Texture_SumAverage_ER_10_02_256: double
Nuclei_Texture_SumAverage_ER_10_03_256: double
Nuclei_Texture_SumAverage_ER_3_00_256: double
Nuclei_Texture_SumAverage_ER_3_01_256: double
Nuclei_Texture_SumAverage_ER_3_02_256: double
Nuclei_Texture_SumAverage_ER_3_03_256: double
Nuclei_Texture_SumAverage_ER_5_00_256: double
Nuclei_Texture_SumAverage_ER_5_01_256: double
Nuclei_Texture_SumAverage_ER_5_02_256: double
Nuclei_Texture_SumAverage_ER_5_03_256: double
Nuclei_Texture_SumAverage_Mito_10_00_256: double
Nuclei_Texture_SumAverage_Mito_10_01_256: double
Nuclei_Texture_SumAverage_Mito_10_02_256: double
Nuclei_Texture_SumAverage_Mito_10_03_256: double
Nuclei_Texture_SumAverage_Mito_3_00_256: double
Nuclei_Texture_SumAverage_Mito_3_01_256: double
Nuclei_Texture_SumAverage_Mito_3_02_256: double
Nuclei_Texture_SumAverage_Mito_3_03_256: double
Nuclei_Texture_SumAverage_Mito_5_00_256: double
Nuclei_Texture_SumAverage_Mito_5_01_256: double
Nuclei_Texture_SumAverage_Mito_5_02_256: double
Nuclei_Texture_SumAverage_Mito_5_03_256: double
Nuclei_Texture_SumAverage_RNA_10_00_256: double
Nuclei_Texture_SumAverage_RNA_10_01_256: double
Nuclei_Texture_SumAverage_RNA_10_02_256: double
Nuclei_Texture_SumAverage_RNA_10_03_256: double
Nuclei_Texture_SumAverage_RNA_3_00_256: double
Nuclei_Texture_SumAverage_RNA_3_01_256: double
Nuclei_Texture_SumAverage_RNA_3_02_256: double
Nuclei_Texture_SumAverage_RNA_3_03_256: double
Nuclei_Texture_SumAverage_RNA_5_00_256: double
Nuclei_Texture_SumAverage_RNA_5_01_256: double
Nuclei_Texture_SumAverage_RNA_5_02_256: double
Nuclei_Texture_SumAverage_RNA_5_03_256: double
Nuclei_Texture_SumEntropy_AGP_10_00_256: double
Nuclei_Texture_SumEntropy_AGP_10_01_256: double
Nuclei_Texture_SumEntropy_AGP_10_02_256: double
Nuclei_Texture_SumEntropy_AGP_10_03_256: double
Nuclei_Texture_SumEntropy_AGP_3_00_256: double
Nuclei_Texture_SumEntropy_AGP_3_01_256: double
Nuclei_Texture_SumEntropy_AGP_3_02_256: double
Nuclei_Texture_SumEntropy_AGP_3_03_256: double
Nuclei_Texture_SumEntropy_AGP_5_00_256: double
Nuclei_Texture_SumEntropy_AGP_5_01_256: double
Nuclei_Texture_SumEntropy_AGP_5_02_256: double
Nuclei_Texture_SumEntropy_AGP_5_03_256: double
Nuclei_Texture_SumEntropy_BFHigh_10_00_256: double
Nuclei_Texture_SumEntropy_BFHigh_10_01_256: double
Nuclei_Texture_SumEntropy_BFHigh_10_02_256: double
Nuclei_Texture_SumEntropy_BFHigh_10_03_256: double
Nuclei_Texture_SumEntropy_BFHigh_3_00_256: double
Nuclei_Texture_SumEntropy_BFHigh_3_01_256: double
Nuclei_Texture_SumEntropy_BFHigh_3_02_256: double
Nuclei_Texture_SumEntropy_BFHigh_3_03_256: double
Nuclei_Texture_SumEntropy_BFHigh_5_00_256: double
Nuclei_Texture_SumEntropy_BFHigh_5_01_256: double
Nuclei_Texture_SumEntropy_BFHigh_5_02_256: double
Nuclei_Texture_SumEntropy_BFHigh_5_03_256: double
Nuclei_Texture_SumEntropy_BFLow_10_00_256: double
Nuclei_Texture_SumEntropy_BFLow_10_01_256: double
Nuclei_Texture_SumEntropy_BFLow_10_02_256: double
Nuclei_Texture_SumEntropy_BFLow_10_03_256: double
Nuclei_Texture_SumEntropy_BFLow_3_00_256: double
Nuclei_Texture_SumEntropy_BFLow_3_01_256: double
Nuclei_Texture_SumEntropy_BFLow_3_02_256: double
Nuclei_Texture_SumEntropy_BFLow_3_03_256: double
Nuclei_Texture_SumEntropy_BFLow_5_00_256: double
Nuclei_Texture_SumEntropy_BFLow_5_01_256: double
Nuclei_Texture_SumEntropy_BFLow_5_02_256: double
Nuclei_Texture_SumEntropy_BFLow_5_03_256: double
Nuclei_Texture_SumEntropy_Brightfield_10_00_256: double
Nuclei_Texture_SumEntropy_Brightfield_10_01_256: double
Nuclei_Texture_SumEntropy_Brightfield_10_02_256: double
Nuclei_Texture_SumEntropy_Brightfield_10_03_256: double
Nuclei_Texture_SumEntropy_Brightfield_3_00_256: double
Nuclei_Texture_SumEntropy_Brightfield_3_01_256: double
Nuclei_Texture_SumEntropy_Brightfield_3_02_256: double
Nuclei_Texture_SumEntropy_Brightfield_3_03_256: double
Nuclei_Texture_SumEntropy_Brightfield_5_00_256: double
Nuclei_Texture_SumEntropy_Brightfield_5_01_256: double
Nuclei_Texture_SumEntropy_Brightfield_5_02_256: double
Nuclei_Texture_SumEntropy_Brightfield_5_03_256: double
Nuclei_Texture_SumEntropy_DNA_10_00_256: double
Nuclei_Texture_SumEntropy_DNA_10_01_256: double
Nuclei_Texture_SumEntropy_DNA_10_02_256: double
Nuclei_Texture_SumEntropy_DNA_10_03_256: double
Nuclei_Texture_SumEntropy_DNA_3_00_256: double
Nuclei_Texture_SumEntropy_DNA_3_01_256: double
Nuclei_Texture_SumEntropy_DNA_3_02_256: double
Nuclei_Texture_SumEntropy_DNA_3_03_256: double
Nuclei_Texture_SumEntropy_DNA_5_00_256: double
Nuclei_Texture_SumEntropy_DNA_5_01_256: double
Nuclei_Texture_SumEntropy_DNA_5_02_256: double
Nuclei_Texture_SumEntropy_DNA_5_03_256: double
Nuclei_Texture_SumEntropy_ER_10_00_256: double
Nuclei_Texture_SumEntropy_ER_10_01_256: double
Nuclei_Texture_SumEntropy_ER_10_02_256: double
Nuclei_Texture_SumEntropy_ER_10_03_256: double
Nuclei_Texture_SumEntropy_ER_3_00_256: double
Nuclei_Texture_SumEntropy_ER_3_01_256: double
Nuclei_Texture_SumEntropy_ER_3_02_256: double
Nuclei_Texture_SumEntropy_ER_3_03_256: double
Nuclei_Texture_SumEntropy_ER_5_00_256: double
Nuclei_Texture_SumEntropy_ER_5_01_256: double
Nuclei_Texture_SumEntropy_ER_5_02_256: double
Nuclei_Texture_SumEntropy_ER_5_03_256: double
Nuclei_Texture_SumEntropy_Mito_10_00_256: double
Nuclei_Texture_SumEntropy_Mito_10_01_256: double
Nuclei_Texture_SumEntropy_Mito_10_02_256: double
Nuclei_Texture_SumEntropy_Mito_10_03_256: double
Nuclei_Texture_SumEntropy_Mito_3_00_256: double
Nuclei_Texture_SumEntropy_Mito_3_01_256: double
Nuclei_Texture_SumEntropy_Mito_3_02_256: double
Nuclei_Texture_SumEntropy_Mito_3_03_256: double
Nuclei_Texture_SumEntropy_Mito_5_00_256: double
Nuclei_Texture_SumEntropy_Mito_5_01_256: double
Nuclei_Texture_SumEntropy_Mito_5_02_256: double
Nuclei_Texture_SumEntropy_Mito_5_03_256: double
Nuclei_Texture_SumEntropy_RNA_10_00_256: double
Nuclei_Texture_SumEntropy_RNA_10_01_256: double
Nuclei_Texture_SumEntropy_RNA_10_02_256: double
Nuclei_Texture_SumEntropy_RNA_10_03_256: double
Nuclei_Texture_SumEntropy_RNA_3_00_256: double
Nuclei_Texture_SumEntropy_RNA_3_01_256: double
Nuclei_Texture_SumEntropy_RNA_3_02_256: double
Nuclei_Texture_SumEntropy_RNA_3_03_256: double
Nuclei_Texture_SumEntropy_RNA_5_00_256: double
Nuclei_Texture_SumEntropy_RNA_5_01_256: double
Nuclei_Texture_SumEntropy_RNA_5_02_256: double
Nuclei_Texture_SumEntropy_RNA_5_03_256: double
Nuclei_Texture_SumVariance_AGP_10_00_256: double
Nuclei_Texture_SumVariance_AGP_10_01_256: double
Nuclei_Texture_SumVariance_AGP_10_02_256: double
Nuclei_Texture_SumVariance_AGP_10_03_256: double
Nuclei_Texture_SumVariance_AGP_3_00_256: double
Nuclei_Texture_SumVariance_AGP_3_01_256: double
Nuclei_Texture_SumVariance_AGP_3_02_256: double
Nuclei_Texture_SumVariance_AGP_3_03_256: double
Nuclei_Texture_SumVariance_AGP_5_00_256: double
Nuclei_Texture_SumVariance_AGP_5_01_256: double
Nuclei_Texture_SumVariance_AGP_5_02_256: double
Nuclei_Texture_SumVariance_AGP_5_03_256: double
Nuclei_Texture_SumVariance_BFHigh_10_00_256: double
Nuclei_Texture_SumVariance_BFHigh_10_01_256: double
Nuclei_Texture_SumVariance_BFHigh_10_02_256: double
Nuclei_Texture_SumVariance_BFHigh_10_03_256: double
Nuclei_Texture_SumVariance_BFHigh_3_00_256: double
Nuclei_Texture_SumVariance_BFHigh_3_01_256: double
Nuclei_Texture_SumVariance_BFHigh_3_02_256: double
Nuclei_Texture_SumVariance_BFHigh_3_03_256: double
Nuclei_Texture_SumVariance_BFHigh_5_00_256: double
Nuclei_Texture_SumVariance_BFHigh_5_01_256: double
Nuclei_Texture_SumVariance_BFHigh_5_02_256: double
Nuclei_Texture_SumVariance_BFHigh_5_03_256: double
Nuclei_Texture_SumVariance_BFLow_10_00_256: double
Nuclei_Texture_SumVariance_BFLow_10_01_256: double
Nuclei_Texture_SumVariance_BFLow_10_02_256: double
Nuclei_Texture_SumVariance_BFLow_10_03_256: double
Nuclei_Texture_SumVariance_BFLow_3_00_256: double
Nuclei_Texture_SumVariance_BFLow_3_01_256: double
Nuclei_Texture_SumVariance_BFLow_3_02_256: double
Nuclei_Texture_SumVariance_BFLow_3_03_256: double
Nuclei_Texture_SumVariance_BFLow_5_00_256: double
Nuclei_Texture_SumVariance_BFLow_5_01_256: double
Nuclei_Texture_SumVariance_BFLow_5_02_256: double
Nuclei_Texture_SumVariance_BFLow_5_03_256: double
Nuclei_Texture_SumVariance_Brightfield_10_00_256: double
Nuclei_Texture_SumVariance_Brightfield_10_01_256: double
Nuclei_Texture_SumVariance_Brightfield_10_02_256: double
Nuclei_Texture_SumVariance_Brightfield_10_03_256: double
Nuclei_Texture_SumVariance_Brightfield_3_00_256: double
Nuclei_Texture_SumVariance_Brightfield_3_01_256: double
Nuclei_Texture_SumVariance_Brightfield_3_02_256: double
Nuclei_Texture_SumVariance_Brightfield_3_03_256: double
Nuclei_Texture_SumVariance_Brightfield_5_00_256: double
Nuclei_Texture_SumVariance_Brightfield_5_01_256: double
Nuclei_Texture_SumVariance_Brightfield_5_02_256: double
Nuclei_Texture_SumVariance_Brightfield_5_03_256: double
Nuclei_Texture_SumVariance_DNA_10_00_256: double
Nuclei_Texture_SumVariance_DNA_10_01_256: double
Nuclei_Texture_SumVariance_DNA_10_02_256: double
Nuclei_Texture_SumVariance_DNA_10_03_256: double
Nuclei_Texture_SumVariance_DNA_3_00_256: double
Nuclei_Texture_SumVariance_DNA_3_01_256: double
Nuclei_Texture_SumVariance_DNA_3_02_256: double
Nuclei_Texture_SumVariance_DNA_3_03_256: double
Nuclei_Texture_SumVariance_DNA_5_00_256: double
Nuclei_Texture_SumVariance_DNA_5_01_256: double
Nuclei_Texture_SumVariance_DNA_5_02_256: double
Nuclei_Texture_SumVariance_DNA_5_03_256: double
Nuclei_Texture_SumVariance_ER_10_00_256: double
Nuclei_Texture_SumVariance_ER_10_01_256: double
Nuclei_Texture_SumVariance_ER_10_02_256: double
Nuclei_Texture_SumVariance_ER_10_03_256: double
Nuclei_Texture_SumVariance_ER_3_00_256: double
Nuclei_Texture_SumVariance_ER_3_01_256: double
Nuclei_Texture_SumVariance_ER_3_02_256: double
Nuclei_Texture_SumVariance_ER_3_03_256: double
Nuclei_Texture_SumVariance_ER_5_00_256: double
Nuclei_Texture_SumVariance_ER_5_01_256: double
Nuclei_Texture_SumVariance_ER_5_02_256: double
Nuclei_Texture_SumVariance_ER_5_03_256: double
Nuclei_Texture_SumVariance_Mito_10_00_256: double
Nuclei_Texture_SumVariance_Mito_10_01_256: double
Nuclei_Texture_SumVariance_Mito_10_02_256: double
Nuclei_Texture_SumVariance_Mito_10_03_256: double
Nuclei_Texture_SumVariance_Mito_3_00_256: double
Nuclei_Texture_SumVariance_Mito_3_01_256: double
Nuclei_Texture_SumVariance_Mito_3_02_256: double
Nuclei_Texture_SumVariance_Mito_3_03_256: double
Nuclei_Texture_SumVariance_Mito_5_00_256: double
Nuclei_Texture_SumVariance_Mito_5_01_256: double
Nuclei_Texture_SumVariance_Mito_5_02_256: double
Nuclei_Texture_SumVariance_Mito_5_03_256: double
Nuclei_Texture_SumVariance_RNA_10_00_256: double
Nuclei_Texture_SumVariance_RNA_10_01_256: double
Nuclei_Texture_SumVariance_RNA_10_02_256: double
Nuclei_Texture_SumVariance_RNA_10_03_256: double
Nuclei_Texture_SumVariance_RNA_3_00_256: double
Nuclei_Texture_SumVariance_RNA_3_01_256: double
Nuclei_Texture_SumVariance_RNA_3_02_256: double
Nuclei_Texture_SumVariance_RNA_3_03_256: double
Nuclei_Texture_SumVariance_RNA_5_00_256: double
Nuclei_Texture_SumVariance_RNA_5_01_256: double
Nuclei_Texture_SumVariance_RNA_5_02_256: double
Nuclei_Texture_SumVariance_RNA_5_03_256: double
Nuclei_Texture_Variance_AGP_10_00_256: double
Nuclei_Texture_Variance_AGP_10_01_256: double
Nuclei_Texture_Variance_AGP_10_02_256: double
Nuclei_Texture_Variance_AGP_10_03_256: double
Nuclei_Texture_Variance_AGP_3_00_256: double
Nuclei_Texture_Variance_AGP_3_01_256: double
Nuclei_Texture_Variance_AGP_3_02_256: double
Nuclei_Texture_Variance_AGP_3_03_256: double
Nuclei_Texture_Variance_AGP_5_00_256: double
Nuclei_Texture_Variance_AGP_5_01_256: double
Nuclei_Texture_Variance_AGP_5_02_256: double
Nuclei_Texture_Variance_AGP_5_03_256: double
Nuclei_Texture_Variance_BFHigh_10_00_256: double
Nuclei_Texture_Variance_BFHigh_10_01_256: double
Nuclei_Texture_Variance_BFHigh_10_02_256: double
Nuclei_Texture_Variance_BFHigh_10_03_256: double
Nuclei_Texture_Variance_BFHigh_3_00_256: double
Nuclei_Texture_Variance_BFHigh_3_01_256: double
Nuclei_Texture_Variance_BFHigh_3_02_256: double
Nuclei_Texture_Variance_BFHigh_3_03_256: double
Nuclei_Texture_Variance_BFHigh_5_00_256: double
Nuclei_Texture_Variance_BFHigh_5_01_256: double
Nuclei_Texture_Variance_BFHigh_5_02_256: double
Nuclei_Texture_Variance_BFHigh_5_03_256: double
Nuclei_Texture_Variance_BFLow_10_00_256: double
Nuclei_Texture_Variance_BFLow_10_01_256: double
Nuclei_Texture_Variance_BFLow_10_02_256: double
Nuclei_Texture_Variance_BFLow_10_03_256: double
Nuclei_Texture_Variance_BFLow_3_00_256: double
Nuclei_Texture_Variance_BFLow_3_01_256: double
Nuclei_Texture_Variance_BFLow_3_02_256: double
Nuclei_Texture_Variance_BFLow_3_03_256: double
Nuclei_Texture_Variance_BFLow_5_00_256: double
Nuclei_Texture_Variance_BFLow_5_01_256: double
Nuclei_Texture_Variance_BFLow_5_02_256: double
Nuclei_Texture_Variance_BFLow_5_03_256: double
Nuclei_Texture_Variance_Brightfield_10_00_256: double
Nuclei_Texture_Variance_Brightfield_10_01_256: double
Nuclei_Texture_Variance_Brightfield_10_02_256: double
Nuclei_Texture_Variance_Brightfield_10_03_256: double
Nuclei_Texture_Variance_Brightfield_3_00_256: double
Nuclei_Texture_Variance_Brightfield_3_01_256: double
Nuclei_Texture_Variance_Brightfield_3_02_256: double
Nuclei_Texture_Variance_Brightfield_3_03_256: double
Nuclei_Texture_Variance_Brightfield_5_00_256: double
Nuclei_Texture_Variance_Brightfield_5_01_256: double
Nuclei_Texture_Variance_Brightfield_5_02_256: double
Nuclei_Texture_Variance_Brightfield_5_03_256: double
Nuclei_Texture_Variance_DNA_10_00_256: double
Nuclei_Texture_Variance_DNA_10_01_256: double
Nuclei_Texture_Variance_DNA_10_02_256: double
Nuclei_Texture_Variance_DNA_10_03_256: double
Nuclei_Texture_Variance_DNA_3_00_256: double
Nuclei_Texture_Variance_DNA_3_01_256: double
Nuclei_Texture_Variance_DNA_3_02_256: double
Nuclei_Texture_Variance_DNA_3_03_256: double
Nuclei_Texture_Variance_DNA_5_00_256: double
Nuclei_Texture_Variance_DNA_5_01_256: double
Nuclei_Texture_Variance_DNA_5_02_256: double
Nuclei_Texture_Variance_DNA_5_03_256: double
Nuclei_Texture_Variance_ER_10_00_256: double
Nuclei_Texture_Variance_ER_10_01_256: double
Nuclei_Texture_Variance_ER_10_02_256: double
Nuclei_Texture_Variance_ER_10_03_256: double
Nuclei_Texture_Variance_ER_3_00_256: double
Nuclei_Texture_Variance_ER_3_01_256: double
Nuclei_Texture_Variance_ER_3_02_256: double
Nuclei_Texture_Variance_ER_3_03_256: double
Nuclei_Texture_Variance_ER_5_00_256: double
Nuclei_Texture_Variance_ER_5_01_256: double
Nuclei_Texture_Variance_ER_5_02_256: double
Nuclei_Texture_Variance_ER_5_03_256: double
Nuclei_Texture_Variance_Mito_10_00_256: double
Nuclei_Texture_Variance_Mito_10_01_256: double
Nuclei_Texture_Variance_Mito_10_02_256: double
Nuclei_Texture_Variance_Mito_10_03_256: double
Nuclei_Texture_Variance_Mito_3_00_256: double
Nuclei_Texture_Variance_Mito_3_01_256: double
Nuclei_Texture_Variance_Mito_3_02_256: double
Nuclei_Texture_Variance_Mito_3_03_256: double
Nuclei_Texture_Variance_Mito_5_00_256: double
Nuclei_Texture_Variance_Mito_5_01_256: double
Nuclei_Texture_Variance_Mito_5_02_256: double
Nuclei_Texture_Variance_Mito_5_03_256: double
Nuclei_Texture_Variance_RNA_10_00_256: double
Nuclei_Texture_Variance_RNA_10_01_256: double
Nuclei_Texture_Variance_RNA_10_02_256: double
Nuclei_Texture_Variance_RNA_10_03_256: double
Nuclei_Texture_Variance_RNA_3_00_256: double
Nuclei_Texture_Variance_RNA_3_01_256: double
Nuclei_Texture_Variance_RNA_3_02_256: double
Nuclei_Texture_Variance_RNA_3_03_256: double
Nuclei_Texture_Variance_RNA_5_00_256: double
Nuclei_Texture_Variance_RNA_5_01_256: double
Nuclei_Texture_Variance_RNA_5_02_256: double
Nuclei_Texture_Variance_RNA_5_03_256: double
-- schema metadata --
data-producer: 'https://github.com/cytomining/CytoTable'
data-producer-version: '1.1.0.post9.dev0+ff87521'