|
a |
|
b/Feature_Extraction/Feature_Extraction_CT.ipynb |
|
|
1 |
{ |
|
|
2 |
"cells": [ |
|
|
3 |
{ |
|
|
4 |
"cell_type": "code", |
|
|
5 |
"execution_count": 1, |
|
|
6 |
"metadata": {}, |
|
|
7 |
"outputs": [], |
|
|
8 |
"source": [ |
|
|
9 |
"# Open one image\n", |
|
|
10 |
"import numpy as np\n", |
|
|
11 |
"archive = np.load(\"Chal/train_data/images/patient_002.npz\")\n", |
|
|
12 |
"scan = archive['scan']\n", |
|
|
13 |
"mask = archive['mask']" |
|
|
14 |
] |
|
|
15 |
}, |
|
|
16 |
{ |
|
|
17 |
"cell_type": "code", |
|
|
18 |
"execution_count": 9, |
|
|
19 |
"metadata": {}, |
|
|
20 |
"outputs": [], |
|
|
21 |
"source": [ |
|
|
22 |
"# Convert to SimpleITK format data\n", |
|
|
23 |
"import SimpleITK as sitk\n", |
|
|
24 |
"scanimg = sitk.GetImageFromArray(scan)\n", |
|
|
25 |
"sitk.WriteImage(scanimg, \"Chal/train_data/images/patient_002_sikt_scan.nrrd\") \n", |
|
|
26 |
"scanmask = sitk.GetImageFromArray(np.array(mask,dtype=int))\n", |
|
|
27 |
"sitk.WriteImage(scanmask, \"Chal/train_data/images/patient_002_sikt_mask.nrrd\") " |
|
|
28 |
] |
|
|
29 |
}, |
|
|
30 |
{ |
|
|
31 |
"cell_type": "code", |
|
|
32 |
"execution_count": 29, |
|
|
33 |
"metadata": {}, |
|
|
34 |
"outputs": [], |
|
|
35 |
"source": [ |
|
|
36 |
"# Show one form of tumor in 2D\n", |
|
|
37 |
"from PIL import Image\n", |
|
|
38 |
"Image.fromarray(mask[:,:,50]).show()" |
|
|
39 |
] |
|
|
40 |
}, |
|
|
41 |
{ |
|
|
42 |
"cell_type": "code", |
|
|
43 |
"execution_count": 33, |
|
|
44 |
"metadata": {}, |
|
|
45 |
"outputs": [], |
|
|
46 |
"source": [ |
|
|
47 |
"# Convert to Simple ITK format all image data\n", |
|
|
48 |
"import os \n", |
|
|
49 |
"filenames = os.listdir(\"Chal/train_data/images\")\n", |
|
|
50 |
"for file in filenames:\n", |
|
|
51 |
" if file.split(\".\")[-1]!=\"npz\":\n", |
|
|
52 |
" continue\n", |
|
|
53 |
" archive = np.load(\"Chal/train_data/images/\"+file)\n", |
|
|
54 |
" scan = archive['scan']\n", |
|
|
55 |
" mask = archive['mask']\n", |
|
|
56 |
" scanimg = sitk.GetImageFromArray(scan)\n", |
|
|
57 |
" sitk.WriteImage(scanimg, \"Chal/train_data/images/\"+file.split(\".\")[0]+\"_sikt_scan.nrrd\") \n", |
|
|
58 |
" scanmask = sitk.GetImageFromArray(np.array(mask,dtype=int))\n", |
|
|
59 |
" sitk.WriteImage(scanmask, \"Chal/train_data/images/\"+file.split(\".\")[0]+\"_sikt_mask.nrrd\")\n", |
|
|
60 |
" # np.save(\"Chal/train_data/images/\"+file.split(\".\")[0]+\"_scan.npy\", scan)\n", |
|
|
61 |
" # np.save(\"Chal/train_data/images/\"+file.split(\".\")[0]+\"_mask.npy\", mask)" |
|
|
62 |
] |
|
|
63 |
}, |
|
|
64 |
{ |
|
|
65 |
"cell_type": "code", |
|
|
66 |
"execution_count": 96, |
|
|
67 |
"metadata": {}, |
|
|
68 |
"outputs": [], |
|
|
69 |
"source": [ |
|
|
70 |
"# Convert to Simple ITK format all image data\n", |
|
|
71 |
"import os \n", |
|
|
72 |
"filenames = os.listdir(\"Chal/test_data/images\")\n", |
|
|
73 |
"for file in filenames:\n", |
|
|
74 |
" if file.split(\".\")[-1]!=\"npz\":\n", |
|
|
75 |
" continue\n", |
|
|
76 |
" archive = np.load(\"Chal/test_data/images/\"+file)\n", |
|
|
77 |
" scan = archive['scan']\n", |
|
|
78 |
" mask = archive['mask']\n", |
|
|
79 |
" scanimg = sitk.GetImageFromArray(scan)\n", |
|
|
80 |
" sitk.WriteImage(scanimg, \"Chal/test_data/images/\"+file.split(\".\")[0]+\"_sikt_scan.nrrd\") \n", |
|
|
81 |
" scanmask = sitk.GetImageFromArray(np.array(mask,dtype=int))\n", |
|
|
82 |
" sitk.WriteImage(scanmask, \"Chal/test_data/images/\"+file.split(\".\")[0]+\"_sikt_mask.nrrd\")\n", |
|
|
83 |
" # np.save(\"Chal/train_data/images/\"+file.split(\".\")[0]+\"_scan.npy\", scan)\n", |
|
|
84 |
" # np.save(\"Chal/train_data/images/\"+file.split(\".\")[0]+\"_mask.npy\", mask)" |
|
|
85 |
] |
|
|
86 |
}, |
|
|
87 |
{ |
|
|
88 |
"cell_type": "code", |
|
|
89 |
"execution_count": 43, |
|
|
90 |
"metadata": {}, |
|
|
91 |
"outputs": [ |
|
|
92 |
{ |
|
|
93 |
"data": { |
|
|
94 |
"text/plain": [ |
|
|
95 |
"1" |
|
|
96 |
] |
|
|
97 |
}, |
|
|
98 |
"execution_count": 43, |
|
|
99 |
"metadata": {}, |
|
|
100 |
"output_type": "execute_result" |
|
|
101 |
} |
|
|
102 |
], |
|
|
103 |
"source": [ |
|
|
104 |
"# Example of image without tumor\n", |
|
|
105 |
"archive = np.load(\"Chal/train_data/images/patient_003.npz\")\n", |
|
|
106 |
"scan = archive['scan']\n", |
|
|
107 |
"mask = archive['mask']\n", |
|
|
108 |
"len(np.unique(mask))" |
|
|
109 |
] |
|
|
110 |
}, |
|
|
111 |
{ |
|
|
112 |
"cell_type": "code", |
|
|
113 |
"execution_count": 11, |
|
|
114 |
"metadata": {}, |
|
|
115 |
"outputs": [ |
|
|
116 |
{ |
|
|
117 |
"name": "stdout", |
|
|
118 |
"output_type": "stream", |
|
|
119 |
"text": [ |
|
|
120 |
"['firstorder', 'glcm', 'gldm', 'glrlm', 'glszm', 'ngtdm', 'shape', 'shape2D']\n" |
|
|
121 |
] |
|
|
122 |
} |
|
|
123 |
], |
|
|
124 |
"source": [ |
|
|
125 |
"# Radiomics Feature Extractor\n", |
|
|
126 |
"from radiomics import featureextractor\n", |
|
|
127 |
"extractor = featureextractor.RadiomicsFeatureExtractor()\n", |
|
|
128 |
"print(extractor.featureClassNames)" |
|
|
129 |
] |
|
|
130 |
}, |
|
|
131 |
{ |
|
|
132 |
"cell_type": "code", |
|
|
133 |
"execution_count": 36, |
|
|
134 |
"metadata": {}, |
|
|
135 |
"outputs": [ |
|
|
136 |
{ |
|
|
137 |
"data": { |
|
|
138 |
"text/plain": [ |
|
|
139 |
"{'settings': {'minimumROIDimensions': 2,\n", |
|
|
140 |
" 'minimumROISize': None,\n", |
|
|
141 |
" 'normalize': False,\n", |
|
|
142 |
" 'normalizeScale': 1,\n", |
|
|
143 |
" 'removeOutliers': None,\n", |
|
|
144 |
" 'resampledPixelSpacing': None,\n", |
|
|
145 |
" 'interpolator': 'sitkBSpline',\n", |
|
|
146 |
" 'preCrop': False,\n", |
|
|
147 |
" 'padDistance': 5,\n", |
|
|
148 |
" 'distances': [1],\n", |
|
|
149 |
" 'force2D': False,\n", |
|
|
150 |
" 'force2Ddimension': 0,\n", |
|
|
151 |
" 'resegmentRange': None,\n", |
|
|
152 |
" 'label': 1,\n", |
|
|
153 |
" 'additionalInfo': True},\n", |
|
|
154 |
" 'enabledImagetypes': {'Original': {}},\n", |
|
|
155 |
" 'enabledFeatures': {'firstorder': [],\n", |
|
|
156 |
" 'glcm': [],\n", |
|
|
157 |
" 'gldm': [],\n", |
|
|
158 |
" 'glrlm': [],\n", |
|
|
159 |
" 'glszm': [],\n", |
|
|
160 |
" 'ngtdm': [],\n", |
|
|
161 |
" 'shape': []},\n", |
|
|
162 |
" 'featureClassNames': ['firstorder',\n", |
|
|
163 |
" 'glcm',\n", |
|
|
164 |
" 'gldm',\n", |
|
|
165 |
" 'glrlm',\n", |
|
|
166 |
" 'glszm',\n", |
|
|
167 |
" 'ngtdm',\n", |
|
|
168 |
" 'shape',\n", |
|
|
169 |
" 'shape2D']}" |
|
|
170 |
] |
|
|
171 |
}, |
|
|
172 |
"execution_count": 36, |
|
|
173 |
"metadata": {}, |
|
|
174 |
"output_type": "execute_result" |
|
|
175 |
} |
|
|
176 |
], |
|
|
177 |
"source": [ |
|
|
178 |
"extractor.__dict__" |
|
|
179 |
] |
|
|
180 |
}, |
|
|
181 |
{ |
|
|
182 |
"cell_type": "code", |
|
|
183 |
"execution_count": 21, |
|
|
184 |
"metadata": {}, |
|
|
185 |
"outputs": [ |
|
|
186 |
{ |
|
|
187 |
"name": "stderr", |
|
|
188 |
"output_type": "stream", |
|
|
189 |
"text": [ |
|
|
190 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
191 |
] |
|
|
192 |
}, |
|
|
193 |
{ |
|
|
194 |
"name": "stdout", |
|
|
195 |
"output_type": "stream", |
|
|
196 |
"text": [ |
|
|
197 |
"diagnostics_Versions_PyRadiomics 2.2.0\n", |
|
|
198 |
"diagnostics_Versions_Numpy 1.17.4\n", |
|
|
199 |
"diagnostics_Versions_SimpleITK 1.2.4\n", |
|
|
200 |
"diagnostics_Versions_PyWavelet 0.5.2\n", |
|
|
201 |
"diagnostics_Versions_Python 3.6.5\n", |
|
|
202 |
"diagnostics_Configuration_Settings {'minimumROIDimensions': 2, 'minimumROISize': None, 'normalize': False, 'normalizeScale': 1, 'removeOutliers': None, 'resampledPixelSpacing': None, 'interpolator': 'sitkBSpline', 'preCrop': False, 'padDistance': 5, 'distances': [1], 'force2D': False, 'force2Ddimension': 0, 'resegmentRange': None, 'label': 1, 'additionalInfo': True}\n", |
|
|
203 |
"diagnostics_Configuration_EnabledImageTypes {'Original': {}}\n", |
|
|
204 |
"diagnostics_Image-original_Hash 12594f333e663f725eafbb011efb36cc28ef09ea\n", |
|
|
205 |
"diagnostics_Image-original_Dimensionality 3D\n", |
|
|
206 |
"diagnostics_Image-original_Spacing (1.0, 1.0, 1.0)\n", |
|
|
207 |
"diagnostics_Image-original_Size (92, 92, 92)\n", |
|
|
208 |
"diagnostics_Image-original_Mean -137.40974048656201\n", |
|
|
209 |
"diagnostics_Image-original_Minimum -1023.0\n", |
|
|
210 |
"diagnostics_Image-original_Maximum 1322.0\n", |
|
|
211 |
"diagnostics_Mask-original_Hash acd42c92421d3a9df6f4cb58f1548237e3807fb3\n", |
|
|
212 |
"diagnostics_Mask-original_Spacing (1.0, 1.0, 1.0)\n", |
|
|
213 |
"diagnostics_Mask-original_Size (92, 92, 92)\n", |
|
|
214 |
"diagnostics_Mask-original_BoundingBox (3, 1, 7, 85, 89, 78)\n", |
|
|
215 |
"diagnostics_Mask-original_VoxelNum 184422\n", |
|
|
216 |
"diagnostics_Mask-original_VolumeNum 1\n", |
|
|
217 |
"diagnostics_Mask-original_CenterOfMassIndex (42.265206970968755, 46.79903156890176, 48.9044636757003)\n", |
|
|
218 |
"diagnostics_Mask-original_CenterOfMass (42.265206970968755, 46.79903156890176, 48.9044636757003)\n", |
|
|
219 |
"original_shape_Elongation 0.8459346778065617\n", |
|
|
220 |
"original_shape_Flatness 0.6621105014018885\n", |
|
|
221 |
"original_shape_LeastAxisLength 53.51566640696507\n", |
|
|
222 |
"original_shape_MajorAxisLength 80.82588373640985\n", |
|
|
223 |
"original_shape_Maximum2DDiameterColumn 83.81527307120105\n", |
|
|
224 |
"original_shape_Maximum2DDiameterRow 94.82615672903758\n", |
|
|
225 |
"original_shape_Maximum2DDiameterSlice 91.67878707749138\n", |
|
|
226 |
"original_shape_Maximum3DDiameter 100.12991560967181\n", |
|
|
227 |
"original_shape_MeshVolume 184317.125\n", |
|
|
228 |
"original_shape_MinorAxisLength 68.37341791699048\n", |
|
|
229 |
"original_shape_Sphericity 0.5997393163148063\n", |
|
|
230 |
"original_shape_SurfaceArea 26115.523102962834\n", |
|
|
231 |
"original_shape_SurfaceVolumeRatio 0.1416879907548625\n", |
|
|
232 |
"original_shape_VoxelVolume 184422.0\n", |
|
|
233 |
"original_firstorder_10Percentile -24.0\n", |
|
|
234 |
"original_firstorder_90Percentile 59.0\n", |
|
|
235 |
"original_firstorder_Energy 1425913723.0\n", |
|
|
236 |
"original_firstorder_Entropy 2.778570474953573\n", |
|
|
237 |
"original_firstorder_InterquartileRange 35.0\n", |
|
|
238 |
"original_firstorder_Kurtosis 21.089553295609278\n", |
|
|
239 |
"original_firstorder_Maximum 679.0\n", |
|
|
240 |
"original_firstorder_MeanAbsoluteDeviation 43.08732542778549\n", |
|
|
241 |
"original_firstorder_Mean 12.572540152476385\n", |
|
|
242 |
"original_firstorder_Median 27.0\n", |
|
|
243 |
"original_firstorder_Minimum -849.0\n", |
|
|
244 |
"original_firstorder_Range 1528.0\n", |
|
|
245 |
"original_firstorder_RobustMeanAbsoluteDeviation 15.172711265455662\n", |
|
|
246 |
"original_firstorder_RootMeanSquared 87.93064535036693\n", |
|
|
247 |
"original_firstorder_Skewness -3.332990711897768\n", |
|
|
248 |
"original_firstorder_TotalEnergy 1425913723.0\n", |
|
|
249 |
"original_firstorder_Uniformity 0.2370956691875208\n", |
|
|
250 |
"original_firstorder_Variance 7573.729625846375\n", |
|
|
251 |
"original_glcm_Autocorrelation 1245.057116488171\n", |
|
|
252 |
"original_glcm_ClusterProminence 26613.007695372373\n", |
|
|
253 |
"original_glcm_ClusterShade -643.2391123183759\n", |
|
|
254 |
"original_glcm_ClusterTendency 33.66694457613119\n", |
|
|
255 |
"original_glcm_Contrast 3.3668951831541274\n", |
|
|
256 |
"original_glcm_Correlation 0.8139217073922336\n", |
|
|
257 |
"original_glcm_DifferenceAverage 1.0021642301970635\n", |
|
|
258 |
"original_glcm_DifferenceEntropy 1.8527729515100024\n", |
|
|
259 |
"original_glcm_DifferenceVariance 2.3290270868423617\n", |
|
|
260 |
"original_glcm_Id 0.6656333949959528\n", |
|
|
261 |
"original_glcm_Idm 0.6426680006969527\n", |
|
|
262 |
"original_glcm_Idmn 0.999138606397979\n", |
|
|
263 |
"original_glcm_Idn 0.984629733858019\n", |
|
|
264 |
"original_glcm_Imc1 -0.22151349574624588\n", |
|
|
265 |
"original_glcm_Imc2 0.8130683189243502\n", |
|
|
266 |
"original_glcm_InverseVariance 0.4424995214015092\n", |
|
|
267 |
"original_glcm_JointAverage 35.177842947801075\n", |
|
|
268 |
"original_glcm_JointEnergy 0.09112923421698597\n", |
|
|
269 |
"original_glcm_JointEntropy 4.723158345269683\n", |
|
|
270 |
"original_glcm_MCC 0.8639602389444913\n", |
|
|
271 |
"original_glcm_MaximumProbability 0.20483729855755242\n", |
|
|
272 |
"original_glcm_SumAverage 70.35568589560218\n", |
|
|
273 |
"original_glcm_SumEntropy 3.492645935184368\n", |
|
|
274 |
"original_glcm_SumSquares 9.258459939821323\n", |
|
|
275 |
"original_gldm_DependenceEntropy 6.762877320189163\n", |
|
|
276 |
"original_gldm_DependenceNonUniformity 8783.333387556799\n", |
|
|
277 |
"original_gldm_DependenceNonUniformityNormalized 0.04762627770849898\n", |
|
|
278 |
"original_gldm_DependenceVariance 33.04983797232115\n", |
|
|
279 |
"original_gldm_GrayLevelNonUniformity 43725.657502900955\n", |
|
|
280 |
"original_gldm_GrayLevelVariance 12.207616837499023\n", |
|
|
281 |
"original_gldm_HighGrayLevelEmphasis 1238.8615566472547\n", |
|
|
282 |
"original_gldm_LargeDependenceEmphasis 158.97756232987388\n", |
|
|
283 |
"original_gldm_LargeDependenceHighGrayLevelEmphasis 202515.9113554782\n", |
|
|
284 |
"original_gldm_LargeDependenceLowGrayLevelEmphasis 0.12540315707433228\n", |
|
|
285 |
"original_gldm_LowGrayLevelEmphasis 0.0008978538164392755\n", |
|
|
286 |
"original_gldm_SmallDependenceEmphasis 0.05258303821089897\n", |
|
|
287 |
"original_gldm_SmallDependenceHighGrayLevelEmphasis 50.61513218081068\n", |
|
|
288 |
"original_gldm_SmallDependenceLowGrayLevelEmphasis 9.859058923675778e-05\n", |
|
|
289 |
"original_glrlm_GrayLevelNonUniformity 20343.45701800592\n", |
|
|
290 |
"original_glrlm_GrayLevelNonUniformityNormalized 0.18012361646430508\n", |
|
|
291 |
"original_glrlm_GrayLevelVariance 18.775375282190616\n", |
|
|
292 |
"original_glrlm_HighGrayLevelRunEmphasis 1217.1050117404955\n", |
|
|
293 |
"original_glrlm_LongRunEmphasis 4.701381626799101\n", |
|
|
294 |
"original_glrlm_LongRunHighGrayLevelEmphasis 5931.039011210831\n", |
|
|
295 |
"original_glrlm_LongRunLowGrayLevelEmphasis 0.003896150620103373\n", |
|
|
296 |
"original_glrlm_LowGrayLevelRunEmphasis 0.0009672892051859957\n", |
|
|
297 |
"original_glrlm_RunEntropy 4.687232453966882\n", |
|
|
298 |
"original_glrlm_RunLengthNonUniformity 54167.181589813124\n", |
|
|
299 |
"original_glrlm_RunLengthNonUniformityNormalized 0.47476967113398644\n", |
|
|
300 |
"original_glrlm_RunPercentage 0.6068556813261892\n", |
|
|
301 |
"original_glrlm_RunVariance 1.7787124208906222\n", |
|
|
302 |
"original_glrlm_ShortRunEmphasis 0.712208298752451\n", |
|
|
303 |
"original_glrlm_ShortRunHighGrayLevelEmphasis 852.3214801840969\n", |
|
|
304 |
"original_glrlm_ShortRunLowGrayLevelEmphasis 0.0007359529795295317\n", |
|
|
305 |
"original_glszm_GrayLevelNonUniformity 327.4280055668558\n", |
|
|
306 |
"original_glszm_GrayLevelNonUniformityNormalized 0.03505277867111185\n", |
|
|
307 |
"original_glszm_GrayLevelVariance 76.33514571050102\n", |
|
|
308 |
"original_glszm_HighGrayLevelZoneEmphasis 889.8579381222568\n", |
|
|
309 |
"original_glszm_LargeAreaEmphasis 811469.8075152553\n", |
|
|
310 |
"original_glszm_LargeAreaHighGrayLevelEmphasis 1034445458.6318381\n", |
|
|
311 |
"original_glszm_LargeAreaLowGrayLevelEmphasis 637.1984032559913\n", |
|
|
312 |
"original_glszm_LowGrayLevelZoneEmphasis 0.0021336685350442936\n", |
|
|
313 |
"original_glszm_SizeZoneNonUniformity 2944.5640723691254\n", |
|
|
314 |
"original_glszm_SizeZoneNonUniformityNormalized 0.3152300687687748\n", |
|
|
315 |
"original_glszm_SmallAreaEmphasis 0.5797504149692436\n", |
|
|
316 |
"original_glszm_SmallAreaHighGrayLevelEmphasis 474.18298682293903\n", |
|
|
317 |
"original_glszm_SmallAreaLowGrayLevelEmphasis 0.0014159294924583742\n", |
|
|
318 |
"original_glszm_ZoneEntropy 7.440152780881469\n", |
|
|
319 |
"original_glszm_ZonePercentage 0.05065013935430697\n", |
|
|
320 |
"original_glszm_ZoneVariance 811080.0103191268\n", |
|
|
321 |
"original_ngtdm_Busyness 4.638003576181803\n", |
|
|
322 |
"original_ngtdm_Coarseness 5.446082904968082e-05\n", |
|
|
323 |
"original_ngtdm_Complexity 1208.990130928983\n", |
|
|
324 |
"original_ngtdm_Contrast 0.004242342429635777\n", |
|
|
325 |
"original_ngtdm_Strength 0.3528600071678195\n" |
|
|
326 |
] |
|
|
327 |
} |
|
|
328 |
], |
|
|
329 |
"source": [ |
|
|
330 |
"# Execute on one image\n", |
|
|
331 |
"result = extractor.execute(\"Chal/train_data/images/patient_002_sikt_scan.nrrd\", \"Chal/train_data/images/patient_002_sikt_mask.nrrd\")\n", |
|
|
332 |
"\n", |
|
|
333 |
"for key, value in result.items():\n", |
|
|
334 |
" print(key, value)" |
|
|
335 |
] |
|
|
336 |
}, |
|
|
337 |
{ |
|
|
338 |
"cell_type": "code", |
|
|
339 |
"execution_count": 85, |
|
|
340 |
"metadata": {}, |
|
|
341 |
"outputs": [ |
|
|
342 |
{ |
|
|
343 |
"name": "stdout", |
|
|
344 |
"output_type": "stream", |
|
|
345 |
"text": [ |
|
|
346 |
"patient_002.npz\n" |
|
|
347 |
] |
|
|
348 |
}, |
|
|
349 |
{ |
|
|
350 |
"name": "stderr", |
|
|
351 |
"output_type": "stream", |
|
|
352 |
"text": [ |
|
|
353 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
354 |
] |
|
|
355 |
}, |
|
|
356 |
{ |
|
|
357 |
"name": "stdout", |
|
|
358 |
"output_type": "stream", |
|
|
359 |
"text": [ |
|
|
360 |
"patient_004.npz\n" |
|
|
361 |
] |
|
|
362 |
}, |
|
|
363 |
{ |
|
|
364 |
"name": "stderr", |
|
|
365 |
"output_type": "stream", |
|
|
366 |
"text": [ |
|
|
367 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
368 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
369 |
] |
|
|
370 |
}, |
|
|
371 |
{ |
|
|
372 |
"name": "stdout", |
|
|
373 |
"output_type": "stream", |
|
|
374 |
"text": [ |
|
|
375 |
"patient_005.npz\n", |
|
|
376 |
"patient_007.npz\n" |
|
|
377 |
] |
|
|
378 |
}, |
|
|
379 |
{ |
|
|
380 |
"name": "stderr", |
|
|
381 |
"output_type": "stream", |
|
|
382 |
"text": [ |
|
|
383 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
384 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
385 |
] |
|
|
386 |
}, |
|
|
387 |
{ |
|
|
388 |
"name": "stdout", |
|
|
389 |
"output_type": "stream", |
|
|
390 |
"text": [ |
|
|
391 |
"patient_008.npz\n", |
|
|
392 |
"patient_011.npz\n" |
|
|
393 |
] |
|
|
394 |
}, |
|
|
395 |
{ |
|
|
396 |
"name": "stderr", |
|
|
397 |
"output_type": "stream", |
|
|
398 |
"text": [ |
|
|
399 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
400 |
] |
|
|
401 |
}, |
|
|
402 |
{ |
|
|
403 |
"name": "stdout", |
|
|
404 |
"output_type": "stream", |
|
|
405 |
"text": [ |
|
|
406 |
"patient_014.npz\n" |
|
|
407 |
] |
|
|
408 |
}, |
|
|
409 |
{ |
|
|
410 |
"name": "stderr", |
|
|
411 |
"output_type": "stream", |
|
|
412 |
"text": [ |
|
|
413 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
414 |
] |
|
|
415 |
}, |
|
|
416 |
{ |
|
|
417 |
"name": "stdout", |
|
|
418 |
"output_type": "stream", |
|
|
419 |
"text": [ |
|
|
420 |
"patient_015.npz\n" |
|
|
421 |
] |
|
|
422 |
}, |
|
|
423 |
{ |
|
|
424 |
"name": "stderr", |
|
|
425 |
"output_type": "stream", |
|
|
426 |
"text": [ |
|
|
427 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
428 |
] |
|
|
429 |
}, |
|
|
430 |
{ |
|
|
431 |
"name": "stdout", |
|
|
432 |
"output_type": "stream", |
|
|
433 |
"text": [ |
|
|
434 |
"patient_016.npz\n" |
|
|
435 |
] |
|
|
436 |
}, |
|
|
437 |
{ |
|
|
438 |
"name": "stderr", |
|
|
439 |
"output_type": "stream", |
|
|
440 |
"text": [ |
|
|
441 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
442 |
] |
|
|
443 |
}, |
|
|
444 |
{ |
|
|
445 |
"name": "stdout", |
|
|
446 |
"output_type": "stream", |
|
|
447 |
"text": [ |
|
|
448 |
"patient_017.npz\n" |
|
|
449 |
] |
|
|
450 |
}, |
|
|
451 |
{ |
|
|
452 |
"name": "stderr", |
|
|
453 |
"output_type": "stream", |
|
|
454 |
"text": [ |
|
|
455 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
456 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
457 |
] |
|
|
458 |
}, |
|
|
459 |
{ |
|
|
460 |
"name": "stdout", |
|
|
461 |
"output_type": "stream", |
|
|
462 |
"text": [ |
|
|
463 |
"patient_018.npz\n", |
|
|
464 |
"patient_020.npz\n" |
|
|
465 |
] |
|
|
466 |
}, |
|
|
467 |
{ |
|
|
468 |
"name": "stderr", |
|
|
469 |
"output_type": "stream", |
|
|
470 |
"text": [ |
|
|
471 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
472 |
] |
|
|
473 |
}, |
|
|
474 |
{ |
|
|
475 |
"name": "stdout", |
|
|
476 |
"output_type": "stream", |
|
|
477 |
"text": [ |
|
|
478 |
"patient_021.npz\n" |
|
|
479 |
] |
|
|
480 |
}, |
|
|
481 |
{ |
|
|
482 |
"name": "stderr", |
|
|
483 |
"output_type": "stream", |
|
|
484 |
"text": [ |
|
|
485 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
486 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
487 |
] |
|
|
488 |
}, |
|
|
489 |
{ |
|
|
490 |
"name": "stdout", |
|
|
491 |
"output_type": "stream", |
|
|
492 |
"text": [ |
|
|
493 |
"patient_022.npz\n", |
|
|
494 |
"patient_023.npz\n" |
|
|
495 |
] |
|
|
496 |
}, |
|
|
497 |
{ |
|
|
498 |
"name": "stderr", |
|
|
499 |
"output_type": "stream", |
|
|
500 |
"text": [ |
|
|
501 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
502 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
503 |
] |
|
|
504 |
}, |
|
|
505 |
{ |
|
|
506 |
"name": "stdout", |
|
|
507 |
"output_type": "stream", |
|
|
508 |
"text": [ |
|
|
509 |
"patient_024.npz\n", |
|
|
510 |
"patient_025.npz\n" |
|
|
511 |
] |
|
|
512 |
}, |
|
|
513 |
{ |
|
|
514 |
"name": "stderr", |
|
|
515 |
"output_type": "stream", |
|
|
516 |
"text": [ |
|
|
517 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
518 |
] |
|
|
519 |
}, |
|
|
520 |
{ |
|
|
521 |
"name": "stdout", |
|
|
522 |
"output_type": "stream", |
|
|
523 |
"text": [ |
|
|
524 |
"patient_026.npz\n" |
|
|
525 |
] |
|
|
526 |
}, |
|
|
527 |
{ |
|
|
528 |
"name": "stderr", |
|
|
529 |
"output_type": "stream", |
|
|
530 |
"text": [ |
|
|
531 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
532 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
533 |
] |
|
|
534 |
}, |
|
|
535 |
{ |
|
|
536 |
"name": "stdout", |
|
|
537 |
"output_type": "stream", |
|
|
538 |
"text": [ |
|
|
539 |
"patient_029.npz\n", |
|
|
540 |
"patient_030.npz\n" |
|
|
541 |
] |
|
|
542 |
}, |
|
|
543 |
{ |
|
|
544 |
"name": "stderr", |
|
|
545 |
"output_type": "stream", |
|
|
546 |
"text": [ |
|
|
547 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
548 |
] |
|
|
549 |
}, |
|
|
550 |
{ |
|
|
551 |
"name": "stdout", |
|
|
552 |
"output_type": "stream", |
|
|
553 |
"text": [ |
|
|
554 |
"patient_031.npz\n" |
|
|
555 |
] |
|
|
556 |
}, |
|
|
557 |
{ |
|
|
558 |
"name": "stderr", |
|
|
559 |
"output_type": "stream", |
|
|
560 |
"text": [ |
|
|
561 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
562 |
] |
|
|
563 |
}, |
|
|
564 |
{ |
|
|
565 |
"name": "stdout", |
|
|
566 |
"output_type": "stream", |
|
|
567 |
"text": [ |
|
|
568 |
"patient_032.npz\n" |
|
|
569 |
] |
|
|
570 |
}, |
|
|
571 |
{ |
|
|
572 |
"name": "stderr", |
|
|
573 |
"output_type": "stream", |
|
|
574 |
"text": [ |
|
|
575 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
576 |
] |
|
|
577 |
}, |
|
|
578 |
{ |
|
|
579 |
"name": "stdout", |
|
|
580 |
"output_type": "stream", |
|
|
581 |
"text": [ |
|
|
582 |
"patient_033.npz\n" |
|
|
583 |
] |
|
|
584 |
}, |
|
|
585 |
{ |
|
|
586 |
"name": "stderr", |
|
|
587 |
"output_type": "stream", |
|
|
588 |
"text": [ |
|
|
589 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
590 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
591 |
] |
|
|
592 |
}, |
|
|
593 |
{ |
|
|
594 |
"name": "stdout", |
|
|
595 |
"output_type": "stream", |
|
|
596 |
"text": [ |
|
|
597 |
"patient_035.npz\n", |
|
|
598 |
"patient_036.npz\n" |
|
|
599 |
] |
|
|
600 |
}, |
|
|
601 |
{ |
|
|
602 |
"name": "stderr", |
|
|
603 |
"output_type": "stream", |
|
|
604 |
"text": [ |
|
|
605 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
606 |
] |
|
|
607 |
}, |
|
|
608 |
{ |
|
|
609 |
"name": "stdout", |
|
|
610 |
"output_type": "stream", |
|
|
611 |
"text": [ |
|
|
612 |
"patient_037.npz\n" |
|
|
613 |
] |
|
|
614 |
}, |
|
|
615 |
{ |
|
|
616 |
"name": "stderr", |
|
|
617 |
"output_type": "stream", |
|
|
618 |
"text": [ |
|
|
619 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
620 |
] |
|
|
621 |
}, |
|
|
622 |
{ |
|
|
623 |
"name": "stdout", |
|
|
624 |
"output_type": "stream", |
|
|
625 |
"text": [ |
|
|
626 |
"patient_039.npz\n" |
|
|
627 |
] |
|
|
628 |
}, |
|
|
629 |
{ |
|
|
630 |
"name": "stderr", |
|
|
631 |
"output_type": "stream", |
|
|
632 |
"text": [ |
|
|
633 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
634 |
] |
|
|
635 |
}, |
|
|
636 |
{ |
|
|
637 |
"name": "stdout", |
|
|
638 |
"output_type": "stream", |
|
|
639 |
"text": [ |
|
|
640 |
"patient_040.npz\n" |
|
|
641 |
] |
|
|
642 |
}, |
|
|
643 |
{ |
|
|
644 |
"name": "stderr", |
|
|
645 |
"output_type": "stream", |
|
|
646 |
"text": [ |
|
|
647 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
648 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
649 |
] |
|
|
650 |
}, |
|
|
651 |
{ |
|
|
652 |
"name": "stdout", |
|
|
653 |
"output_type": "stream", |
|
|
654 |
"text": [ |
|
|
655 |
"patient_042.npz\n", |
|
|
656 |
"patient_043.npz\n" |
|
|
657 |
] |
|
|
658 |
}, |
|
|
659 |
{ |
|
|
660 |
"name": "stderr", |
|
|
661 |
"output_type": "stream", |
|
|
662 |
"text": [ |
|
|
663 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
664 |
] |
|
|
665 |
}, |
|
|
666 |
{ |
|
|
667 |
"name": "stdout", |
|
|
668 |
"output_type": "stream", |
|
|
669 |
"text": [ |
|
|
670 |
"patient_044.npz\n" |
|
|
671 |
] |
|
|
672 |
}, |
|
|
673 |
{ |
|
|
674 |
"name": "stderr", |
|
|
675 |
"output_type": "stream", |
|
|
676 |
"text": [ |
|
|
677 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
678 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
679 |
] |
|
|
680 |
}, |
|
|
681 |
{ |
|
|
682 |
"name": "stdout", |
|
|
683 |
"output_type": "stream", |
|
|
684 |
"text": [ |
|
|
685 |
"patient_045.npz\n", |
|
|
686 |
"patient_047.npz\n" |
|
|
687 |
] |
|
|
688 |
}, |
|
|
689 |
{ |
|
|
690 |
"name": "stderr", |
|
|
691 |
"output_type": "stream", |
|
|
692 |
"text": [ |
|
|
693 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
694 |
] |
|
|
695 |
}, |
|
|
696 |
{ |
|
|
697 |
"name": "stdout", |
|
|
698 |
"output_type": "stream", |
|
|
699 |
"text": [ |
|
|
700 |
"patient_048.npz\n" |
|
|
701 |
] |
|
|
702 |
}, |
|
|
703 |
{ |
|
|
704 |
"name": "stderr", |
|
|
705 |
"output_type": "stream", |
|
|
706 |
"text": [ |
|
|
707 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
708 |
] |
|
|
709 |
}, |
|
|
710 |
{ |
|
|
711 |
"name": "stdout", |
|
|
712 |
"output_type": "stream", |
|
|
713 |
"text": [ |
|
|
714 |
"patient_051.npz\n" |
|
|
715 |
] |
|
|
716 |
}, |
|
|
717 |
{ |
|
|
718 |
"name": "stderr", |
|
|
719 |
"output_type": "stream", |
|
|
720 |
"text": [ |
|
|
721 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
722 |
] |
|
|
723 |
}, |
|
|
724 |
{ |
|
|
725 |
"name": "stdout", |
|
|
726 |
"output_type": "stream", |
|
|
727 |
"text": [ |
|
|
728 |
"patient_052.npz\n" |
|
|
729 |
] |
|
|
730 |
}, |
|
|
731 |
{ |
|
|
732 |
"name": "stderr", |
|
|
733 |
"output_type": "stream", |
|
|
734 |
"text": [ |
|
|
735 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
736 |
] |
|
|
737 |
}, |
|
|
738 |
{ |
|
|
739 |
"name": "stdout", |
|
|
740 |
"output_type": "stream", |
|
|
741 |
"text": [ |
|
|
742 |
"patient_053.npz\n" |
|
|
743 |
] |
|
|
744 |
}, |
|
|
745 |
{ |
|
|
746 |
"name": "stderr", |
|
|
747 |
"output_type": "stream", |
|
|
748 |
"text": [ |
|
|
749 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
750 |
] |
|
|
751 |
}, |
|
|
752 |
{ |
|
|
753 |
"name": "stdout", |
|
|
754 |
"output_type": "stream", |
|
|
755 |
"text": [ |
|
|
756 |
"patient_056.npz\n" |
|
|
757 |
] |
|
|
758 |
}, |
|
|
759 |
{ |
|
|
760 |
"name": "stderr", |
|
|
761 |
"output_type": "stream", |
|
|
762 |
"text": [ |
|
|
763 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
764 |
] |
|
|
765 |
}, |
|
|
766 |
{ |
|
|
767 |
"name": "stdout", |
|
|
768 |
"output_type": "stream", |
|
|
769 |
"text": [ |
|
|
770 |
"patient_057.npz\n" |
|
|
771 |
] |
|
|
772 |
}, |
|
|
773 |
{ |
|
|
774 |
"name": "stderr", |
|
|
775 |
"output_type": "stream", |
|
|
776 |
"text": [ |
|
|
777 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
778 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
779 |
] |
|
|
780 |
}, |
|
|
781 |
{ |
|
|
782 |
"name": "stdout", |
|
|
783 |
"output_type": "stream", |
|
|
784 |
"text": [ |
|
|
785 |
"patient_058.npz\n" |
|
|
786 |
] |
|
|
787 |
}, |
|
|
788 |
{ |
|
|
789 |
"name": "stderr", |
|
|
790 |
"output_type": "stream", |
|
|
791 |
"text": [ |
|
|
792 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
793 |
] |
|
|
794 |
}, |
|
|
795 |
{ |
|
|
796 |
"name": "stdout", |
|
|
797 |
"output_type": "stream", |
|
|
798 |
"text": [ |
|
|
799 |
"patient_061.npz\n", |
|
|
800 |
"patient_063.npz\n" |
|
|
801 |
] |
|
|
802 |
}, |
|
|
803 |
{ |
|
|
804 |
"name": "stderr", |
|
|
805 |
"output_type": "stream", |
|
|
806 |
"text": [ |
|
|
807 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
808 |
] |
|
|
809 |
}, |
|
|
810 |
{ |
|
|
811 |
"name": "stdout", |
|
|
812 |
"output_type": "stream", |
|
|
813 |
"text": [ |
|
|
814 |
"patient_064.npz\n" |
|
|
815 |
] |
|
|
816 |
}, |
|
|
817 |
{ |
|
|
818 |
"name": "stderr", |
|
|
819 |
"output_type": "stream", |
|
|
820 |
"text": [ |
|
|
821 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
822 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
823 |
] |
|
|
824 |
}, |
|
|
825 |
{ |
|
|
826 |
"name": "stdout", |
|
|
827 |
"output_type": "stream", |
|
|
828 |
"text": [ |
|
|
829 |
"patient_067.npz\n", |
|
|
830 |
"patient_068.npz\n" |
|
|
831 |
] |
|
|
832 |
}, |
|
|
833 |
{ |
|
|
834 |
"name": "stderr", |
|
|
835 |
"output_type": "stream", |
|
|
836 |
"text": [ |
|
|
837 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
838 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
839 |
] |
|
|
840 |
}, |
|
|
841 |
{ |
|
|
842 |
"name": "stdout", |
|
|
843 |
"output_type": "stream", |
|
|
844 |
"text": [ |
|
|
845 |
"patient_069.npz\n" |
|
|
846 |
] |
|
|
847 |
}, |
|
|
848 |
{ |
|
|
849 |
"name": "stderr", |
|
|
850 |
"output_type": "stream", |
|
|
851 |
"text": [ |
|
|
852 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
853 |
] |
|
|
854 |
}, |
|
|
855 |
{ |
|
|
856 |
"name": "stdout", |
|
|
857 |
"output_type": "stream", |
|
|
858 |
"text": [ |
|
|
859 |
"patient_070.npz\n", |
|
|
860 |
"patient_072.npz\n" |
|
|
861 |
] |
|
|
862 |
}, |
|
|
863 |
{ |
|
|
864 |
"name": "stderr", |
|
|
865 |
"output_type": "stream", |
|
|
866 |
"text": [ |
|
|
867 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
868 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
869 |
] |
|
|
870 |
}, |
|
|
871 |
{ |
|
|
872 |
"name": "stdout", |
|
|
873 |
"output_type": "stream", |
|
|
874 |
"text": [ |
|
|
875 |
"patient_073.npz\n", |
|
|
876 |
"patient_076.npz\n" |
|
|
877 |
] |
|
|
878 |
}, |
|
|
879 |
{ |
|
|
880 |
"name": "stderr", |
|
|
881 |
"output_type": "stream", |
|
|
882 |
"text": [ |
|
|
883 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
884 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
885 |
] |
|
|
886 |
}, |
|
|
887 |
{ |
|
|
888 |
"name": "stdout", |
|
|
889 |
"output_type": "stream", |
|
|
890 |
"text": [ |
|
|
891 |
"patient_077.npz\n", |
|
|
892 |
"patient_078.npz\n" |
|
|
893 |
] |
|
|
894 |
}, |
|
|
895 |
{ |
|
|
896 |
"name": "stderr", |
|
|
897 |
"output_type": "stream", |
|
|
898 |
"text": [ |
|
|
899 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
900 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
901 |
] |
|
|
902 |
}, |
|
|
903 |
{ |
|
|
904 |
"name": "stdout", |
|
|
905 |
"output_type": "stream", |
|
|
906 |
"text": [ |
|
|
907 |
"patient_079.npz\n", |
|
|
908 |
"patient_081.npz\n" |
|
|
909 |
] |
|
|
910 |
}, |
|
|
911 |
{ |
|
|
912 |
"name": "stderr", |
|
|
913 |
"output_type": "stream", |
|
|
914 |
"text": [ |
|
|
915 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
916 |
] |
|
|
917 |
}, |
|
|
918 |
{ |
|
|
919 |
"name": "stdout", |
|
|
920 |
"output_type": "stream", |
|
|
921 |
"text": [ |
|
|
922 |
"patient_082.npz\n" |
|
|
923 |
] |
|
|
924 |
}, |
|
|
925 |
{ |
|
|
926 |
"name": "stderr", |
|
|
927 |
"output_type": "stream", |
|
|
928 |
"text": [ |
|
|
929 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
930 |
] |
|
|
931 |
}, |
|
|
932 |
{ |
|
|
933 |
"name": "stdout", |
|
|
934 |
"output_type": "stream", |
|
|
935 |
"text": [ |
|
|
936 |
"patient_083.npz\n" |
|
|
937 |
] |
|
|
938 |
}, |
|
|
939 |
{ |
|
|
940 |
"name": "stderr", |
|
|
941 |
"output_type": "stream", |
|
|
942 |
"text": [ |
|
|
943 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
944 |
] |
|
|
945 |
}, |
|
|
946 |
{ |
|
|
947 |
"name": "stdout", |
|
|
948 |
"output_type": "stream", |
|
|
949 |
"text": [ |
|
|
950 |
"patient_084.npz\n" |
|
|
951 |
] |
|
|
952 |
}, |
|
|
953 |
{ |
|
|
954 |
"name": "stderr", |
|
|
955 |
"output_type": "stream", |
|
|
956 |
"text": [ |
|
|
957 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
958 |
] |
|
|
959 |
}, |
|
|
960 |
{ |
|
|
961 |
"name": "stdout", |
|
|
962 |
"output_type": "stream", |
|
|
963 |
"text": [ |
|
|
964 |
"patient_086.npz\n" |
|
|
965 |
] |
|
|
966 |
}, |
|
|
967 |
{ |
|
|
968 |
"name": "stderr", |
|
|
969 |
"output_type": "stream", |
|
|
970 |
"text": [ |
|
|
971 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
972 |
] |
|
|
973 |
}, |
|
|
974 |
{ |
|
|
975 |
"name": "stdout", |
|
|
976 |
"output_type": "stream", |
|
|
977 |
"text": [ |
|
|
978 |
"patient_088.npz\n" |
|
|
979 |
] |
|
|
980 |
}, |
|
|
981 |
{ |
|
|
982 |
"name": "stderr", |
|
|
983 |
"output_type": "stream", |
|
|
984 |
"text": [ |
|
|
985 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
986 |
] |
|
|
987 |
}, |
|
|
988 |
{ |
|
|
989 |
"name": "stdout", |
|
|
990 |
"output_type": "stream", |
|
|
991 |
"text": [ |
|
|
992 |
"patient_089.npz\n" |
|
|
993 |
] |
|
|
994 |
}, |
|
|
995 |
{ |
|
|
996 |
"name": "stderr", |
|
|
997 |
"output_type": "stream", |
|
|
998 |
"text": [ |
|
|
999 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1000 |
] |
|
|
1001 |
}, |
|
|
1002 |
{ |
|
|
1003 |
"name": "stdout", |
|
|
1004 |
"output_type": "stream", |
|
|
1005 |
"text": [ |
|
|
1006 |
"patient_090.npz\n" |
|
|
1007 |
] |
|
|
1008 |
}, |
|
|
1009 |
{ |
|
|
1010 |
"name": "stderr", |
|
|
1011 |
"output_type": "stream", |
|
|
1012 |
"text": [ |
|
|
1013 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1014 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1015 |
] |
|
|
1016 |
}, |
|
|
1017 |
{ |
|
|
1018 |
"name": "stdout", |
|
|
1019 |
"output_type": "stream", |
|
|
1020 |
"text": [ |
|
|
1021 |
"patient_091.npz\n", |
|
|
1022 |
"patient_092.npz\n" |
|
|
1023 |
] |
|
|
1024 |
}, |
|
|
1025 |
{ |
|
|
1026 |
"name": "stderr", |
|
|
1027 |
"output_type": "stream", |
|
|
1028 |
"text": [ |
|
|
1029 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1030 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1031 |
] |
|
|
1032 |
}, |
|
|
1033 |
{ |
|
|
1034 |
"name": "stdout", |
|
|
1035 |
"output_type": "stream", |
|
|
1036 |
"text": [ |
|
|
1037 |
"patient_093.npz\n", |
|
|
1038 |
"patient_094.npz\n" |
|
|
1039 |
] |
|
|
1040 |
}, |
|
|
1041 |
{ |
|
|
1042 |
"name": "stderr", |
|
|
1043 |
"output_type": "stream", |
|
|
1044 |
"text": [ |
|
|
1045 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1046 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1047 |
] |
|
|
1048 |
}, |
|
|
1049 |
{ |
|
|
1050 |
"name": "stdout", |
|
|
1051 |
"output_type": "stream", |
|
|
1052 |
"text": [ |
|
|
1053 |
"patient_095.npz\n", |
|
|
1054 |
"patient_096.npz\n" |
|
|
1055 |
] |
|
|
1056 |
}, |
|
|
1057 |
{ |
|
|
1058 |
"name": "stderr", |
|
|
1059 |
"output_type": "stream", |
|
|
1060 |
"text": [ |
|
|
1061 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1062 |
] |
|
|
1063 |
}, |
|
|
1064 |
{ |
|
|
1065 |
"name": "stdout", |
|
|
1066 |
"output_type": "stream", |
|
|
1067 |
"text": [ |
|
|
1068 |
"patient_098.npz\n" |
|
|
1069 |
] |
|
|
1070 |
}, |
|
|
1071 |
{ |
|
|
1072 |
"name": "stderr", |
|
|
1073 |
"output_type": "stream", |
|
|
1074 |
"text": [ |
|
|
1075 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1076 |
] |
|
|
1077 |
}, |
|
|
1078 |
{ |
|
|
1079 |
"name": "stdout", |
|
|
1080 |
"output_type": "stream", |
|
|
1081 |
"text": [ |
|
|
1082 |
"patient_100.npz\n" |
|
|
1083 |
] |
|
|
1084 |
}, |
|
|
1085 |
{ |
|
|
1086 |
"name": "stderr", |
|
|
1087 |
"output_type": "stream", |
|
|
1088 |
"text": [ |
|
|
1089 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1090 |
] |
|
|
1091 |
}, |
|
|
1092 |
{ |
|
|
1093 |
"name": "stdout", |
|
|
1094 |
"output_type": "stream", |
|
|
1095 |
"text": [ |
|
|
1096 |
"patient_101.npz\n" |
|
|
1097 |
] |
|
|
1098 |
}, |
|
|
1099 |
{ |
|
|
1100 |
"name": "stderr", |
|
|
1101 |
"output_type": "stream", |
|
|
1102 |
"text": [ |
|
|
1103 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1104 |
] |
|
|
1105 |
}, |
|
|
1106 |
{ |
|
|
1107 |
"name": "stdout", |
|
|
1108 |
"output_type": "stream", |
|
|
1109 |
"text": [ |
|
|
1110 |
"patient_102.npz\n" |
|
|
1111 |
] |
|
|
1112 |
}, |
|
|
1113 |
{ |
|
|
1114 |
"name": "stderr", |
|
|
1115 |
"output_type": "stream", |
|
|
1116 |
"text": [ |
|
|
1117 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1118 |
] |
|
|
1119 |
}, |
|
|
1120 |
{ |
|
|
1121 |
"name": "stdout", |
|
|
1122 |
"output_type": "stream", |
|
|
1123 |
"text": [ |
|
|
1124 |
"patient_103.npz\n" |
|
|
1125 |
] |
|
|
1126 |
}, |
|
|
1127 |
{ |
|
|
1128 |
"name": "stderr", |
|
|
1129 |
"output_type": "stream", |
|
|
1130 |
"text": [ |
|
|
1131 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1132 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1133 |
] |
|
|
1134 |
}, |
|
|
1135 |
{ |
|
|
1136 |
"name": "stdout", |
|
|
1137 |
"output_type": "stream", |
|
|
1138 |
"text": [ |
|
|
1139 |
"patient_105.npz\n", |
|
|
1140 |
"patient_106.npz\n" |
|
|
1141 |
] |
|
|
1142 |
}, |
|
|
1143 |
{ |
|
|
1144 |
"name": "stderr", |
|
|
1145 |
"output_type": "stream", |
|
|
1146 |
"text": [ |
|
|
1147 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1148 |
] |
|
|
1149 |
}, |
|
|
1150 |
{ |
|
|
1151 |
"name": "stdout", |
|
|
1152 |
"output_type": "stream", |
|
|
1153 |
"text": [ |
|
|
1154 |
"patient_107.npz\n" |
|
|
1155 |
] |
|
|
1156 |
}, |
|
|
1157 |
{ |
|
|
1158 |
"name": "stderr", |
|
|
1159 |
"output_type": "stream", |
|
|
1160 |
"text": [ |
|
|
1161 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1162 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1163 |
] |
|
|
1164 |
}, |
|
|
1165 |
{ |
|
|
1166 |
"name": "stdout", |
|
|
1167 |
"output_type": "stream", |
|
|
1168 |
"text": [ |
|
|
1169 |
"patient_108.npz\n" |
|
|
1170 |
] |
|
|
1171 |
}, |
|
|
1172 |
{ |
|
|
1173 |
"name": "stderr", |
|
|
1174 |
"output_type": "stream", |
|
|
1175 |
"text": [ |
|
|
1176 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1177 |
] |
|
|
1178 |
}, |
|
|
1179 |
{ |
|
|
1180 |
"name": "stdout", |
|
|
1181 |
"output_type": "stream", |
|
|
1182 |
"text": [ |
|
|
1183 |
"patient_109.npz\n", |
|
|
1184 |
"patient_110.npz\n" |
|
|
1185 |
] |
|
|
1186 |
}, |
|
|
1187 |
{ |
|
|
1188 |
"name": "stderr", |
|
|
1189 |
"output_type": "stream", |
|
|
1190 |
"text": [ |
|
|
1191 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1192 |
] |
|
|
1193 |
}, |
|
|
1194 |
{ |
|
|
1195 |
"name": "stdout", |
|
|
1196 |
"output_type": "stream", |
|
|
1197 |
"text": [ |
|
|
1198 |
"patient_111.npz\n" |
|
|
1199 |
] |
|
|
1200 |
}, |
|
|
1201 |
{ |
|
|
1202 |
"name": "stderr", |
|
|
1203 |
"output_type": "stream", |
|
|
1204 |
"text": [ |
|
|
1205 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1206 |
] |
|
|
1207 |
}, |
|
|
1208 |
{ |
|
|
1209 |
"name": "stdout", |
|
|
1210 |
"output_type": "stream", |
|
|
1211 |
"text": [ |
|
|
1212 |
"patient_112.npz\n" |
|
|
1213 |
] |
|
|
1214 |
}, |
|
|
1215 |
{ |
|
|
1216 |
"name": "stderr", |
|
|
1217 |
"output_type": "stream", |
|
|
1218 |
"text": [ |
|
|
1219 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1220 |
] |
|
|
1221 |
}, |
|
|
1222 |
{ |
|
|
1223 |
"name": "stdout", |
|
|
1224 |
"output_type": "stream", |
|
|
1225 |
"text": [ |
|
|
1226 |
"patient_114.npz\n" |
|
|
1227 |
] |
|
|
1228 |
}, |
|
|
1229 |
{ |
|
|
1230 |
"name": "stderr", |
|
|
1231 |
"output_type": "stream", |
|
|
1232 |
"text": [ |
|
|
1233 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1234 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1235 |
] |
|
|
1236 |
}, |
|
|
1237 |
{ |
|
|
1238 |
"name": "stdout", |
|
|
1239 |
"output_type": "stream", |
|
|
1240 |
"text": [ |
|
|
1241 |
"patient_115.npz\n", |
|
|
1242 |
"patient_116.npz\n" |
|
|
1243 |
] |
|
|
1244 |
}, |
|
|
1245 |
{ |
|
|
1246 |
"name": "stderr", |
|
|
1247 |
"output_type": "stream", |
|
|
1248 |
"text": [ |
|
|
1249 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1250 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1251 |
] |
|
|
1252 |
}, |
|
|
1253 |
{ |
|
|
1254 |
"name": "stdout", |
|
|
1255 |
"output_type": "stream", |
|
|
1256 |
"text": [ |
|
|
1257 |
"patient_117.npz\n" |
|
|
1258 |
] |
|
|
1259 |
}, |
|
|
1260 |
{ |
|
|
1261 |
"name": "stderr", |
|
|
1262 |
"output_type": "stream", |
|
|
1263 |
"text": [ |
|
|
1264 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1265 |
] |
|
|
1266 |
}, |
|
|
1267 |
{ |
|
|
1268 |
"name": "stdout", |
|
|
1269 |
"output_type": "stream", |
|
|
1270 |
"text": [ |
|
|
1271 |
"patient_121.npz\n", |
|
|
1272 |
"patient_122.npz\n" |
|
|
1273 |
] |
|
|
1274 |
}, |
|
|
1275 |
{ |
|
|
1276 |
"name": "stderr", |
|
|
1277 |
"output_type": "stream", |
|
|
1278 |
"text": [ |
|
|
1279 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1280 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1281 |
] |
|
|
1282 |
}, |
|
|
1283 |
{ |
|
|
1284 |
"name": "stdout", |
|
|
1285 |
"output_type": "stream", |
|
|
1286 |
"text": [ |
|
|
1287 |
"patient_123.npz\n", |
|
|
1288 |
"patient_124.npz\n" |
|
|
1289 |
] |
|
|
1290 |
}, |
|
|
1291 |
{ |
|
|
1292 |
"name": "stderr", |
|
|
1293 |
"output_type": "stream", |
|
|
1294 |
"text": [ |
|
|
1295 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1296 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1297 |
] |
|
|
1298 |
}, |
|
|
1299 |
{ |
|
|
1300 |
"name": "stdout", |
|
|
1301 |
"output_type": "stream", |
|
|
1302 |
"text": [ |
|
|
1303 |
"patient_126.npz\n", |
|
|
1304 |
"patient_129.npz\n" |
|
|
1305 |
] |
|
|
1306 |
}, |
|
|
1307 |
{ |
|
|
1308 |
"name": "stderr", |
|
|
1309 |
"output_type": "stream", |
|
|
1310 |
"text": [ |
|
|
1311 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1312 |
] |
|
|
1313 |
}, |
|
|
1314 |
{ |
|
|
1315 |
"name": "stdout", |
|
|
1316 |
"output_type": "stream", |
|
|
1317 |
"text": [ |
|
|
1318 |
"patient_130.npz\n" |
|
|
1319 |
] |
|
|
1320 |
}, |
|
|
1321 |
{ |
|
|
1322 |
"name": "stderr", |
|
|
1323 |
"output_type": "stream", |
|
|
1324 |
"text": [ |
|
|
1325 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1326 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1327 |
] |
|
|
1328 |
}, |
|
|
1329 |
{ |
|
|
1330 |
"name": "stdout", |
|
|
1331 |
"output_type": "stream", |
|
|
1332 |
"text": [ |
|
|
1333 |
"patient_131.npz\n", |
|
|
1334 |
"patient_133.npz\n" |
|
|
1335 |
] |
|
|
1336 |
}, |
|
|
1337 |
{ |
|
|
1338 |
"name": "stderr", |
|
|
1339 |
"output_type": "stream", |
|
|
1340 |
"text": [ |
|
|
1341 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1342 |
] |
|
|
1343 |
}, |
|
|
1344 |
{ |
|
|
1345 |
"name": "stdout", |
|
|
1346 |
"output_type": "stream", |
|
|
1347 |
"text": [ |
|
|
1348 |
"patient_134.npz\n" |
|
|
1349 |
] |
|
|
1350 |
}, |
|
|
1351 |
{ |
|
|
1352 |
"name": "stderr", |
|
|
1353 |
"output_type": "stream", |
|
|
1354 |
"text": [ |
|
|
1355 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1356 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1357 |
] |
|
|
1358 |
}, |
|
|
1359 |
{ |
|
|
1360 |
"name": "stdout", |
|
|
1361 |
"output_type": "stream", |
|
|
1362 |
"text": [ |
|
|
1363 |
"patient_135.npz\n" |
|
|
1364 |
] |
|
|
1365 |
}, |
|
|
1366 |
{ |
|
|
1367 |
"name": "stderr", |
|
|
1368 |
"output_type": "stream", |
|
|
1369 |
"text": [ |
|
|
1370 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1371 |
] |
|
|
1372 |
}, |
|
|
1373 |
{ |
|
|
1374 |
"name": "stdout", |
|
|
1375 |
"output_type": "stream", |
|
|
1376 |
"text": [ |
|
|
1377 |
"patient_137.npz\n" |
|
|
1378 |
] |
|
|
1379 |
}, |
|
|
1380 |
{ |
|
|
1381 |
"name": "stderr", |
|
|
1382 |
"output_type": "stream", |
|
|
1383 |
"text": [ |
|
|
1384 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1385 |
] |
|
|
1386 |
}, |
|
|
1387 |
{ |
|
|
1388 |
"name": "stdout", |
|
|
1389 |
"output_type": "stream", |
|
|
1390 |
"text": [ |
|
|
1391 |
"patient_138.npz\n", |
|
|
1392 |
"patient_139.npz\n" |
|
|
1393 |
] |
|
|
1394 |
}, |
|
|
1395 |
{ |
|
|
1396 |
"name": "stderr", |
|
|
1397 |
"output_type": "stream", |
|
|
1398 |
"text": [ |
|
|
1399 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1400 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1401 |
] |
|
|
1402 |
}, |
|
|
1403 |
{ |
|
|
1404 |
"name": "stdout", |
|
|
1405 |
"output_type": "stream", |
|
|
1406 |
"text": [ |
|
|
1407 |
"patient_141.npz\n", |
|
|
1408 |
"patient_142.npz\n" |
|
|
1409 |
] |
|
|
1410 |
}, |
|
|
1411 |
{ |
|
|
1412 |
"name": "stderr", |
|
|
1413 |
"output_type": "stream", |
|
|
1414 |
"text": [ |
|
|
1415 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1416 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1417 |
] |
|
|
1418 |
}, |
|
|
1419 |
{ |
|
|
1420 |
"name": "stdout", |
|
|
1421 |
"output_type": "stream", |
|
|
1422 |
"text": [ |
|
|
1423 |
"patient_143.npz\n", |
|
|
1424 |
"patient_144.npz\n" |
|
|
1425 |
] |
|
|
1426 |
}, |
|
|
1427 |
{ |
|
|
1428 |
"name": "stderr", |
|
|
1429 |
"output_type": "stream", |
|
|
1430 |
"text": [ |
|
|
1431 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1432 |
] |
|
|
1433 |
}, |
|
|
1434 |
{ |
|
|
1435 |
"name": "stdout", |
|
|
1436 |
"output_type": "stream", |
|
|
1437 |
"text": [ |
|
|
1438 |
"patient_145.npz\n" |
|
|
1439 |
] |
|
|
1440 |
}, |
|
|
1441 |
{ |
|
|
1442 |
"name": "stderr", |
|
|
1443 |
"output_type": "stream", |
|
|
1444 |
"text": [ |
|
|
1445 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1446 |
] |
|
|
1447 |
}, |
|
|
1448 |
{ |
|
|
1449 |
"name": "stdout", |
|
|
1450 |
"output_type": "stream", |
|
|
1451 |
"text": [ |
|
|
1452 |
"patient_147.npz\n" |
|
|
1453 |
] |
|
|
1454 |
}, |
|
|
1455 |
{ |
|
|
1456 |
"name": "stderr", |
|
|
1457 |
"output_type": "stream", |
|
|
1458 |
"text": [ |
|
|
1459 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1460 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1461 |
] |
|
|
1462 |
}, |
|
|
1463 |
{ |
|
|
1464 |
"name": "stdout", |
|
|
1465 |
"output_type": "stream", |
|
|
1466 |
"text": [ |
|
|
1467 |
"patient_148.npz\n" |
|
|
1468 |
] |
|
|
1469 |
}, |
|
|
1470 |
{ |
|
|
1471 |
"name": "stderr", |
|
|
1472 |
"output_type": "stream", |
|
|
1473 |
"text": [ |
|
|
1474 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1475 |
] |
|
|
1476 |
}, |
|
|
1477 |
{ |
|
|
1478 |
"name": "stdout", |
|
|
1479 |
"output_type": "stream", |
|
|
1480 |
"text": [ |
|
|
1481 |
"patient_149.npz\n", |
|
|
1482 |
"patient_150.npz\n" |
|
|
1483 |
] |
|
|
1484 |
}, |
|
|
1485 |
{ |
|
|
1486 |
"name": "stderr", |
|
|
1487 |
"output_type": "stream", |
|
|
1488 |
"text": [ |
|
|
1489 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1490 |
] |
|
|
1491 |
}, |
|
|
1492 |
{ |
|
|
1493 |
"name": "stdout", |
|
|
1494 |
"output_type": "stream", |
|
|
1495 |
"text": [ |
|
|
1496 |
"patient_151.npz\n" |
|
|
1497 |
] |
|
|
1498 |
}, |
|
|
1499 |
{ |
|
|
1500 |
"name": "stderr", |
|
|
1501 |
"output_type": "stream", |
|
|
1502 |
"text": [ |
|
|
1503 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1504 |
] |
|
|
1505 |
}, |
|
|
1506 |
{ |
|
|
1507 |
"name": "stdout", |
|
|
1508 |
"output_type": "stream", |
|
|
1509 |
"text": [ |
|
|
1510 |
"patient_152.npz\n" |
|
|
1511 |
] |
|
|
1512 |
}, |
|
|
1513 |
{ |
|
|
1514 |
"name": "stderr", |
|
|
1515 |
"output_type": "stream", |
|
|
1516 |
"text": [ |
|
|
1517 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1518 |
] |
|
|
1519 |
}, |
|
|
1520 |
{ |
|
|
1521 |
"name": "stdout", |
|
|
1522 |
"output_type": "stream", |
|
|
1523 |
"text": [ |
|
|
1524 |
"patient_154.npz\n" |
|
|
1525 |
] |
|
|
1526 |
}, |
|
|
1527 |
{ |
|
|
1528 |
"name": "stderr", |
|
|
1529 |
"output_type": "stream", |
|
|
1530 |
"text": [ |
|
|
1531 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1532 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1533 |
] |
|
|
1534 |
}, |
|
|
1535 |
{ |
|
|
1536 |
"name": "stdout", |
|
|
1537 |
"output_type": "stream", |
|
|
1538 |
"text": [ |
|
|
1539 |
"patient_157.npz\n", |
|
|
1540 |
"patient_159.npz\n" |
|
|
1541 |
] |
|
|
1542 |
}, |
|
|
1543 |
{ |
|
|
1544 |
"name": "stderr", |
|
|
1545 |
"output_type": "stream", |
|
|
1546 |
"text": [ |
|
|
1547 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1548 |
] |
|
|
1549 |
}, |
|
|
1550 |
{ |
|
|
1551 |
"name": "stdout", |
|
|
1552 |
"output_type": "stream", |
|
|
1553 |
"text": [ |
|
|
1554 |
"patient_160.npz\n" |
|
|
1555 |
] |
|
|
1556 |
}, |
|
|
1557 |
{ |
|
|
1558 |
"name": "stderr", |
|
|
1559 |
"output_type": "stream", |
|
|
1560 |
"text": [ |
|
|
1561 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1562 |
] |
|
|
1563 |
}, |
|
|
1564 |
{ |
|
|
1565 |
"name": "stdout", |
|
|
1566 |
"output_type": "stream", |
|
|
1567 |
"text": [ |
|
|
1568 |
"patient_161.npz\n" |
|
|
1569 |
] |
|
|
1570 |
}, |
|
|
1571 |
{ |
|
|
1572 |
"name": "stderr", |
|
|
1573 |
"output_type": "stream", |
|
|
1574 |
"text": [ |
|
|
1575 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1576 |
] |
|
|
1577 |
}, |
|
|
1578 |
{ |
|
|
1579 |
"name": "stdout", |
|
|
1580 |
"output_type": "stream", |
|
|
1581 |
"text": [ |
|
|
1582 |
"patient_162.npz\n" |
|
|
1583 |
] |
|
|
1584 |
}, |
|
|
1585 |
{ |
|
|
1586 |
"name": "stderr", |
|
|
1587 |
"output_type": "stream", |
|
|
1588 |
"text": [ |
|
|
1589 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1590 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1591 |
] |
|
|
1592 |
}, |
|
|
1593 |
{ |
|
|
1594 |
"name": "stdout", |
|
|
1595 |
"output_type": "stream", |
|
|
1596 |
"text": [ |
|
|
1597 |
"patient_163.npz\n" |
|
|
1598 |
] |
|
|
1599 |
}, |
|
|
1600 |
{ |
|
|
1601 |
"name": "stderr", |
|
|
1602 |
"output_type": "stream", |
|
|
1603 |
"text": [ |
|
|
1604 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1605 |
] |
|
|
1606 |
}, |
|
|
1607 |
{ |
|
|
1608 |
"name": "stdout", |
|
|
1609 |
"output_type": "stream", |
|
|
1610 |
"text": [ |
|
|
1611 |
"patient_164.npz\n", |
|
|
1612 |
"patient_165.npz\n" |
|
|
1613 |
] |
|
|
1614 |
}, |
|
|
1615 |
{ |
|
|
1616 |
"name": "stderr", |
|
|
1617 |
"output_type": "stream", |
|
|
1618 |
"text": [ |
|
|
1619 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1620 |
] |
|
|
1621 |
}, |
|
|
1622 |
{ |
|
|
1623 |
"name": "stdout", |
|
|
1624 |
"output_type": "stream", |
|
|
1625 |
"text": [ |
|
|
1626 |
"patient_166.npz\n" |
|
|
1627 |
] |
|
|
1628 |
}, |
|
|
1629 |
{ |
|
|
1630 |
"name": "stderr", |
|
|
1631 |
"output_type": "stream", |
|
|
1632 |
"text": [ |
|
|
1633 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1634 |
] |
|
|
1635 |
}, |
|
|
1636 |
{ |
|
|
1637 |
"name": "stdout", |
|
|
1638 |
"output_type": "stream", |
|
|
1639 |
"text": [ |
|
|
1640 |
"patient_171.npz\n" |
|
|
1641 |
] |
|
|
1642 |
}, |
|
|
1643 |
{ |
|
|
1644 |
"name": "stderr", |
|
|
1645 |
"output_type": "stream", |
|
|
1646 |
"text": [ |
|
|
1647 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1648 |
] |
|
|
1649 |
}, |
|
|
1650 |
{ |
|
|
1651 |
"name": "stdout", |
|
|
1652 |
"output_type": "stream", |
|
|
1653 |
"text": [ |
|
|
1654 |
"patient_172.npz\n" |
|
|
1655 |
] |
|
|
1656 |
}, |
|
|
1657 |
{ |
|
|
1658 |
"name": "stderr", |
|
|
1659 |
"output_type": "stream", |
|
|
1660 |
"text": [ |
|
|
1661 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1662 |
] |
|
|
1663 |
}, |
|
|
1664 |
{ |
|
|
1665 |
"name": "stdout", |
|
|
1666 |
"output_type": "stream", |
|
|
1667 |
"text": [ |
|
|
1668 |
"patient_173.npz\n" |
|
|
1669 |
] |
|
|
1670 |
}, |
|
|
1671 |
{ |
|
|
1672 |
"name": "stderr", |
|
|
1673 |
"output_type": "stream", |
|
|
1674 |
"text": [ |
|
|
1675 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1676 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1677 |
] |
|
|
1678 |
}, |
|
|
1679 |
{ |
|
|
1680 |
"name": "stdout", |
|
|
1681 |
"output_type": "stream", |
|
|
1682 |
"text": [ |
|
|
1683 |
"patient_174.npz\n", |
|
|
1684 |
"patient_175.npz\n" |
|
|
1685 |
] |
|
|
1686 |
}, |
|
|
1687 |
{ |
|
|
1688 |
"name": "stderr", |
|
|
1689 |
"output_type": "stream", |
|
|
1690 |
"text": [ |
|
|
1691 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1692 |
] |
|
|
1693 |
}, |
|
|
1694 |
{ |
|
|
1695 |
"name": "stdout", |
|
|
1696 |
"output_type": "stream", |
|
|
1697 |
"text": [ |
|
|
1698 |
"patient_176.npz\n" |
|
|
1699 |
] |
|
|
1700 |
}, |
|
|
1701 |
{ |
|
|
1702 |
"name": "stderr", |
|
|
1703 |
"output_type": "stream", |
|
|
1704 |
"text": [ |
|
|
1705 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1706 |
] |
|
|
1707 |
}, |
|
|
1708 |
{ |
|
|
1709 |
"name": "stdout", |
|
|
1710 |
"output_type": "stream", |
|
|
1711 |
"text": [ |
|
|
1712 |
"patient_178.npz\n" |
|
|
1713 |
] |
|
|
1714 |
}, |
|
|
1715 |
{ |
|
|
1716 |
"name": "stderr", |
|
|
1717 |
"output_type": "stream", |
|
|
1718 |
"text": [ |
|
|
1719 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1720 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1721 |
] |
|
|
1722 |
}, |
|
|
1723 |
{ |
|
|
1724 |
"name": "stdout", |
|
|
1725 |
"output_type": "stream", |
|
|
1726 |
"text": [ |
|
|
1727 |
"patient_180.npz\n", |
|
|
1728 |
"patient_181.npz\n" |
|
|
1729 |
] |
|
|
1730 |
}, |
|
|
1731 |
{ |
|
|
1732 |
"name": "stderr", |
|
|
1733 |
"output_type": "stream", |
|
|
1734 |
"text": [ |
|
|
1735 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1736 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1737 |
] |
|
|
1738 |
}, |
|
|
1739 |
{ |
|
|
1740 |
"name": "stdout", |
|
|
1741 |
"output_type": "stream", |
|
|
1742 |
"text": [ |
|
|
1743 |
"patient_183.npz\n" |
|
|
1744 |
] |
|
|
1745 |
}, |
|
|
1746 |
{ |
|
|
1747 |
"name": "stderr", |
|
|
1748 |
"output_type": "stream", |
|
|
1749 |
"text": [ |
|
|
1750 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1751 |
] |
|
|
1752 |
}, |
|
|
1753 |
{ |
|
|
1754 |
"name": "stdout", |
|
|
1755 |
"output_type": "stream", |
|
|
1756 |
"text": [ |
|
|
1757 |
"patient_184.npz\n", |
|
|
1758 |
"patient_185.npz\n" |
|
|
1759 |
] |
|
|
1760 |
}, |
|
|
1761 |
{ |
|
|
1762 |
"name": "stderr", |
|
|
1763 |
"output_type": "stream", |
|
|
1764 |
"text": [ |
|
|
1765 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1766 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1767 |
] |
|
|
1768 |
}, |
|
|
1769 |
{ |
|
|
1770 |
"name": "stdout", |
|
|
1771 |
"output_type": "stream", |
|
|
1772 |
"text": [ |
|
|
1773 |
"patient_186.npz\n", |
|
|
1774 |
"patient_187.npz\n" |
|
|
1775 |
] |
|
|
1776 |
}, |
|
|
1777 |
{ |
|
|
1778 |
"name": "stderr", |
|
|
1779 |
"output_type": "stream", |
|
|
1780 |
"text": [ |
|
|
1781 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1782 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1783 |
] |
|
|
1784 |
}, |
|
|
1785 |
{ |
|
|
1786 |
"name": "stdout", |
|
|
1787 |
"output_type": "stream", |
|
|
1788 |
"text": [ |
|
|
1789 |
"patient_188.npz\n", |
|
|
1790 |
"patient_189.npz\n" |
|
|
1791 |
] |
|
|
1792 |
}, |
|
|
1793 |
{ |
|
|
1794 |
"name": "stderr", |
|
|
1795 |
"output_type": "stream", |
|
|
1796 |
"text": [ |
|
|
1797 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1798 |
] |
|
|
1799 |
}, |
|
|
1800 |
{ |
|
|
1801 |
"name": "stdout", |
|
|
1802 |
"output_type": "stream", |
|
|
1803 |
"text": [ |
|
|
1804 |
"patient_193.npz\n" |
|
|
1805 |
] |
|
|
1806 |
}, |
|
|
1807 |
{ |
|
|
1808 |
"name": "stderr", |
|
|
1809 |
"output_type": "stream", |
|
|
1810 |
"text": [ |
|
|
1811 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1812 |
] |
|
|
1813 |
}, |
|
|
1814 |
{ |
|
|
1815 |
"name": "stdout", |
|
|
1816 |
"output_type": "stream", |
|
|
1817 |
"text": [ |
|
|
1818 |
"patient_195.npz\n" |
|
|
1819 |
] |
|
|
1820 |
}, |
|
|
1821 |
{ |
|
|
1822 |
"name": "stderr", |
|
|
1823 |
"output_type": "stream", |
|
|
1824 |
"text": [ |
|
|
1825 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1826 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1827 |
] |
|
|
1828 |
}, |
|
|
1829 |
{ |
|
|
1830 |
"name": "stdout", |
|
|
1831 |
"output_type": "stream", |
|
|
1832 |
"text": [ |
|
|
1833 |
"patient_196.npz\n", |
|
|
1834 |
"patient_197.npz\n" |
|
|
1835 |
] |
|
|
1836 |
}, |
|
|
1837 |
{ |
|
|
1838 |
"name": "stderr", |
|
|
1839 |
"output_type": "stream", |
|
|
1840 |
"text": [ |
|
|
1841 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1842 |
] |
|
|
1843 |
}, |
|
|
1844 |
{ |
|
|
1845 |
"name": "stdout", |
|
|
1846 |
"output_type": "stream", |
|
|
1847 |
"text": [ |
|
|
1848 |
"patient_202.npz\n" |
|
|
1849 |
] |
|
|
1850 |
}, |
|
|
1851 |
{ |
|
|
1852 |
"name": "stderr", |
|
|
1853 |
"output_type": "stream", |
|
|
1854 |
"text": [ |
|
|
1855 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1856 |
] |
|
|
1857 |
}, |
|
|
1858 |
{ |
|
|
1859 |
"name": "stdout", |
|
|
1860 |
"output_type": "stream", |
|
|
1861 |
"text": [ |
|
|
1862 |
"patient_204.npz\n" |
|
|
1863 |
] |
|
|
1864 |
}, |
|
|
1865 |
{ |
|
|
1866 |
"name": "stderr", |
|
|
1867 |
"output_type": "stream", |
|
|
1868 |
"text": [ |
|
|
1869 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1870 |
] |
|
|
1871 |
}, |
|
|
1872 |
{ |
|
|
1873 |
"name": "stdout", |
|
|
1874 |
"output_type": "stream", |
|
|
1875 |
"text": [ |
|
|
1876 |
"patient_208.npz\n" |
|
|
1877 |
] |
|
|
1878 |
}, |
|
|
1879 |
{ |
|
|
1880 |
"name": "stderr", |
|
|
1881 |
"output_type": "stream", |
|
|
1882 |
"text": [ |
|
|
1883 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1884 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1885 |
] |
|
|
1886 |
}, |
|
|
1887 |
{ |
|
|
1888 |
"name": "stdout", |
|
|
1889 |
"output_type": "stream", |
|
|
1890 |
"text": [ |
|
|
1891 |
"patient_209.npz\n", |
|
|
1892 |
"patient_210.npz\n" |
|
|
1893 |
] |
|
|
1894 |
}, |
|
|
1895 |
{ |
|
|
1896 |
"name": "stderr", |
|
|
1897 |
"output_type": "stream", |
|
|
1898 |
"text": [ |
|
|
1899 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1900 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1901 |
] |
|
|
1902 |
}, |
|
|
1903 |
{ |
|
|
1904 |
"name": "stdout", |
|
|
1905 |
"output_type": "stream", |
|
|
1906 |
"text": [ |
|
|
1907 |
"patient_211.npz\n", |
|
|
1908 |
"patient_212.npz\n" |
|
|
1909 |
] |
|
|
1910 |
}, |
|
|
1911 |
{ |
|
|
1912 |
"name": "stderr", |
|
|
1913 |
"output_type": "stream", |
|
|
1914 |
"text": [ |
|
|
1915 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1916 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1917 |
] |
|
|
1918 |
}, |
|
|
1919 |
{ |
|
|
1920 |
"name": "stdout", |
|
|
1921 |
"output_type": "stream", |
|
|
1922 |
"text": [ |
|
|
1923 |
"patient_213.npz\n", |
|
|
1924 |
"patient_214.npz\n" |
|
|
1925 |
] |
|
|
1926 |
}, |
|
|
1927 |
{ |
|
|
1928 |
"name": "stderr", |
|
|
1929 |
"output_type": "stream", |
|
|
1930 |
"text": [ |
|
|
1931 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1932 |
] |
|
|
1933 |
}, |
|
|
1934 |
{ |
|
|
1935 |
"name": "stdout", |
|
|
1936 |
"output_type": "stream", |
|
|
1937 |
"text": [ |
|
|
1938 |
"patient_216.npz\n" |
|
|
1939 |
] |
|
|
1940 |
}, |
|
|
1941 |
{ |
|
|
1942 |
"name": "stderr", |
|
|
1943 |
"output_type": "stream", |
|
|
1944 |
"text": [ |
|
|
1945 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1946 |
] |
|
|
1947 |
}, |
|
|
1948 |
{ |
|
|
1949 |
"name": "stdout", |
|
|
1950 |
"output_type": "stream", |
|
|
1951 |
"text": [ |
|
|
1952 |
"patient_218.npz\n" |
|
|
1953 |
] |
|
|
1954 |
}, |
|
|
1955 |
{ |
|
|
1956 |
"name": "stderr", |
|
|
1957 |
"output_type": "stream", |
|
|
1958 |
"text": [ |
|
|
1959 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1960 |
] |
|
|
1961 |
}, |
|
|
1962 |
{ |
|
|
1963 |
"name": "stdout", |
|
|
1964 |
"output_type": "stream", |
|
|
1965 |
"text": [ |
|
|
1966 |
"patient_221.npz\n" |
|
|
1967 |
] |
|
|
1968 |
}, |
|
|
1969 |
{ |
|
|
1970 |
"name": "stderr", |
|
|
1971 |
"output_type": "stream", |
|
|
1972 |
"text": [ |
|
|
1973 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
1974 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1975 |
] |
|
|
1976 |
}, |
|
|
1977 |
{ |
|
|
1978 |
"name": "stdout", |
|
|
1979 |
"output_type": "stream", |
|
|
1980 |
"text": [ |
|
|
1981 |
"patient_222.npz\n", |
|
|
1982 |
"patient_224.npz\n" |
|
|
1983 |
] |
|
|
1984 |
}, |
|
|
1985 |
{ |
|
|
1986 |
"name": "stderr", |
|
|
1987 |
"output_type": "stream", |
|
|
1988 |
"text": [ |
|
|
1989 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
1990 |
] |
|
|
1991 |
}, |
|
|
1992 |
{ |
|
|
1993 |
"name": "stdout", |
|
|
1994 |
"output_type": "stream", |
|
|
1995 |
"text": [ |
|
|
1996 |
"patient_225.npz\n" |
|
|
1997 |
] |
|
|
1998 |
}, |
|
|
1999 |
{ |
|
|
2000 |
"name": "stderr", |
|
|
2001 |
"output_type": "stream", |
|
|
2002 |
"text": [ |
|
|
2003 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2004 |
] |
|
|
2005 |
}, |
|
|
2006 |
{ |
|
|
2007 |
"name": "stdout", |
|
|
2008 |
"output_type": "stream", |
|
|
2009 |
"text": [ |
|
|
2010 |
"patient_226.npz\n" |
|
|
2011 |
] |
|
|
2012 |
}, |
|
|
2013 |
{ |
|
|
2014 |
"name": "stderr", |
|
|
2015 |
"output_type": "stream", |
|
|
2016 |
"text": [ |
|
|
2017 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2018 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2019 |
] |
|
|
2020 |
}, |
|
|
2021 |
{ |
|
|
2022 |
"name": "stdout", |
|
|
2023 |
"output_type": "stream", |
|
|
2024 |
"text": [ |
|
|
2025 |
"patient_227.npz\n", |
|
|
2026 |
"patient_228.npz\n" |
|
|
2027 |
] |
|
|
2028 |
}, |
|
|
2029 |
{ |
|
|
2030 |
"name": "stderr", |
|
|
2031 |
"output_type": "stream", |
|
|
2032 |
"text": [ |
|
|
2033 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2034 |
] |
|
|
2035 |
}, |
|
|
2036 |
{ |
|
|
2037 |
"name": "stdout", |
|
|
2038 |
"output_type": "stream", |
|
|
2039 |
"text": [ |
|
|
2040 |
"patient_229.npz\n" |
|
|
2041 |
] |
|
|
2042 |
}, |
|
|
2043 |
{ |
|
|
2044 |
"name": "stderr", |
|
|
2045 |
"output_type": "stream", |
|
|
2046 |
"text": [ |
|
|
2047 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2048 |
] |
|
|
2049 |
}, |
|
|
2050 |
{ |
|
|
2051 |
"name": "stdout", |
|
|
2052 |
"output_type": "stream", |
|
|
2053 |
"text": [ |
|
|
2054 |
"patient_231.npz\n" |
|
|
2055 |
] |
|
|
2056 |
}, |
|
|
2057 |
{ |
|
|
2058 |
"name": "stderr", |
|
|
2059 |
"output_type": "stream", |
|
|
2060 |
"text": [ |
|
|
2061 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2062 |
] |
|
|
2063 |
}, |
|
|
2064 |
{ |
|
|
2065 |
"name": "stdout", |
|
|
2066 |
"output_type": "stream", |
|
|
2067 |
"text": [ |
|
|
2068 |
"patient_233.npz\n" |
|
|
2069 |
] |
|
|
2070 |
}, |
|
|
2071 |
{ |
|
|
2072 |
"name": "stderr", |
|
|
2073 |
"output_type": "stream", |
|
|
2074 |
"text": [ |
|
|
2075 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2076 |
] |
|
|
2077 |
}, |
|
|
2078 |
{ |
|
|
2079 |
"name": "stdout", |
|
|
2080 |
"output_type": "stream", |
|
|
2081 |
"text": [ |
|
|
2082 |
"patient_235.npz\n" |
|
|
2083 |
] |
|
|
2084 |
}, |
|
|
2085 |
{ |
|
|
2086 |
"name": "stderr", |
|
|
2087 |
"output_type": "stream", |
|
|
2088 |
"text": [ |
|
|
2089 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2090 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2091 |
] |
|
|
2092 |
}, |
|
|
2093 |
{ |
|
|
2094 |
"name": "stdout", |
|
|
2095 |
"output_type": "stream", |
|
|
2096 |
"text": [ |
|
|
2097 |
"patient_236.npz\n", |
|
|
2098 |
"patient_237.npz\n" |
|
|
2099 |
] |
|
|
2100 |
}, |
|
|
2101 |
{ |
|
|
2102 |
"name": "stderr", |
|
|
2103 |
"output_type": "stream", |
|
|
2104 |
"text": [ |
|
|
2105 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2106 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2107 |
] |
|
|
2108 |
}, |
|
|
2109 |
{ |
|
|
2110 |
"name": "stdout", |
|
|
2111 |
"output_type": "stream", |
|
|
2112 |
"text": [ |
|
|
2113 |
"patient_238.npz\n", |
|
|
2114 |
"patient_240.npz\n" |
|
|
2115 |
] |
|
|
2116 |
}, |
|
|
2117 |
{ |
|
|
2118 |
"name": "stderr", |
|
|
2119 |
"output_type": "stream", |
|
|
2120 |
"text": [ |
|
|
2121 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2122 |
] |
|
|
2123 |
}, |
|
|
2124 |
{ |
|
|
2125 |
"name": "stdout", |
|
|
2126 |
"output_type": "stream", |
|
|
2127 |
"text": [ |
|
|
2128 |
"patient_242.npz\n" |
|
|
2129 |
] |
|
|
2130 |
}, |
|
|
2131 |
{ |
|
|
2132 |
"name": "stderr", |
|
|
2133 |
"output_type": "stream", |
|
|
2134 |
"text": [ |
|
|
2135 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2136 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2137 |
] |
|
|
2138 |
}, |
|
|
2139 |
{ |
|
|
2140 |
"name": "stdout", |
|
|
2141 |
"output_type": "stream", |
|
|
2142 |
"text": [ |
|
|
2143 |
"patient_244.npz\n", |
|
|
2144 |
"patient_246.npz\n" |
|
|
2145 |
] |
|
|
2146 |
}, |
|
|
2147 |
{ |
|
|
2148 |
"name": "stderr", |
|
|
2149 |
"output_type": "stream", |
|
|
2150 |
"text": [ |
|
|
2151 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2152 |
] |
|
|
2153 |
}, |
|
|
2154 |
{ |
|
|
2155 |
"name": "stdout", |
|
|
2156 |
"output_type": "stream", |
|
|
2157 |
"text": [ |
|
|
2158 |
"patient_247.npz\n" |
|
|
2159 |
] |
|
|
2160 |
}, |
|
|
2161 |
{ |
|
|
2162 |
"name": "stderr", |
|
|
2163 |
"output_type": "stream", |
|
|
2164 |
"text": [ |
|
|
2165 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2166 |
] |
|
|
2167 |
}, |
|
|
2168 |
{ |
|
|
2169 |
"name": "stdout", |
|
|
2170 |
"output_type": "stream", |
|
|
2171 |
"text": [ |
|
|
2172 |
"patient_248.npz\n" |
|
|
2173 |
] |
|
|
2174 |
}, |
|
|
2175 |
{ |
|
|
2176 |
"name": "stderr", |
|
|
2177 |
"output_type": "stream", |
|
|
2178 |
"text": [ |
|
|
2179 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2180 |
] |
|
|
2181 |
}, |
|
|
2182 |
{ |
|
|
2183 |
"name": "stdout", |
|
|
2184 |
"output_type": "stream", |
|
|
2185 |
"text": [ |
|
|
2186 |
"patient_249.npz\n" |
|
|
2187 |
] |
|
|
2188 |
}, |
|
|
2189 |
{ |
|
|
2190 |
"name": "stderr", |
|
|
2191 |
"output_type": "stream", |
|
|
2192 |
"text": [ |
|
|
2193 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2194 |
] |
|
|
2195 |
}, |
|
|
2196 |
{ |
|
|
2197 |
"name": "stdout", |
|
|
2198 |
"output_type": "stream", |
|
|
2199 |
"text": [ |
|
|
2200 |
"patient_250.npz\n" |
|
|
2201 |
] |
|
|
2202 |
}, |
|
|
2203 |
{ |
|
|
2204 |
"name": "stderr", |
|
|
2205 |
"output_type": "stream", |
|
|
2206 |
"text": [ |
|
|
2207 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2208 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2209 |
] |
|
|
2210 |
}, |
|
|
2211 |
{ |
|
|
2212 |
"name": "stdout", |
|
|
2213 |
"output_type": "stream", |
|
|
2214 |
"text": [ |
|
|
2215 |
"patient_251.npz\n", |
|
|
2216 |
"patient_252.npz\n" |
|
|
2217 |
] |
|
|
2218 |
}, |
|
|
2219 |
{ |
|
|
2220 |
"name": "stderr", |
|
|
2221 |
"output_type": "stream", |
|
|
2222 |
"text": [ |
|
|
2223 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2224 |
] |
|
|
2225 |
}, |
|
|
2226 |
{ |
|
|
2227 |
"name": "stdout", |
|
|
2228 |
"output_type": "stream", |
|
|
2229 |
"text": [ |
|
|
2230 |
"patient_253.npz\n" |
|
|
2231 |
] |
|
|
2232 |
}, |
|
|
2233 |
{ |
|
|
2234 |
"name": "stderr", |
|
|
2235 |
"output_type": "stream", |
|
|
2236 |
"text": [ |
|
|
2237 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2238 |
] |
|
|
2239 |
}, |
|
|
2240 |
{ |
|
|
2241 |
"name": "stdout", |
|
|
2242 |
"output_type": "stream", |
|
|
2243 |
"text": [ |
|
|
2244 |
"patient_255.npz\n" |
|
|
2245 |
] |
|
|
2246 |
}, |
|
|
2247 |
{ |
|
|
2248 |
"name": "stderr", |
|
|
2249 |
"output_type": "stream", |
|
|
2250 |
"text": [ |
|
|
2251 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2252 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2253 |
] |
|
|
2254 |
}, |
|
|
2255 |
{ |
|
|
2256 |
"name": "stdout", |
|
|
2257 |
"output_type": "stream", |
|
|
2258 |
"text": [ |
|
|
2259 |
"patient_257.npz\n", |
|
|
2260 |
"patient_258.npz\n" |
|
|
2261 |
] |
|
|
2262 |
}, |
|
|
2263 |
{ |
|
|
2264 |
"name": "stderr", |
|
|
2265 |
"output_type": "stream", |
|
|
2266 |
"text": [ |
|
|
2267 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2268 |
] |
|
|
2269 |
}, |
|
|
2270 |
{ |
|
|
2271 |
"name": "stdout", |
|
|
2272 |
"output_type": "stream", |
|
|
2273 |
"text": [ |
|
|
2274 |
"patient_259.npz\n" |
|
|
2275 |
] |
|
|
2276 |
}, |
|
|
2277 |
{ |
|
|
2278 |
"name": "stderr", |
|
|
2279 |
"output_type": "stream", |
|
|
2280 |
"text": [ |
|
|
2281 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2282 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2283 |
] |
|
|
2284 |
}, |
|
|
2285 |
{ |
|
|
2286 |
"name": "stdout", |
|
|
2287 |
"output_type": "stream", |
|
|
2288 |
"text": [ |
|
|
2289 |
"patient_261.npz\n", |
|
|
2290 |
"patient_262.npz\n" |
|
|
2291 |
] |
|
|
2292 |
}, |
|
|
2293 |
{ |
|
|
2294 |
"name": "stderr", |
|
|
2295 |
"output_type": "stream", |
|
|
2296 |
"text": [ |
|
|
2297 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2298 |
] |
|
|
2299 |
}, |
|
|
2300 |
{ |
|
|
2301 |
"name": "stdout", |
|
|
2302 |
"output_type": "stream", |
|
|
2303 |
"text": [ |
|
|
2304 |
"patient_264.npz\n" |
|
|
2305 |
] |
|
|
2306 |
}, |
|
|
2307 |
{ |
|
|
2308 |
"name": "stderr", |
|
|
2309 |
"output_type": "stream", |
|
|
2310 |
"text": [ |
|
|
2311 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2312 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2313 |
] |
|
|
2314 |
}, |
|
|
2315 |
{ |
|
|
2316 |
"name": "stdout", |
|
|
2317 |
"output_type": "stream", |
|
|
2318 |
"text": [ |
|
|
2319 |
"patient_266.npz\n" |
|
|
2320 |
] |
|
|
2321 |
}, |
|
|
2322 |
{ |
|
|
2323 |
"name": "stderr", |
|
|
2324 |
"output_type": "stream", |
|
|
2325 |
"text": [ |
|
|
2326 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2327 |
] |
|
|
2328 |
}, |
|
|
2329 |
{ |
|
|
2330 |
"name": "stdout", |
|
|
2331 |
"output_type": "stream", |
|
|
2332 |
"text": [ |
|
|
2333 |
"patient_268.npz\n", |
|
|
2334 |
"patient_269.npz\n" |
|
|
2335 |
] |
|
|
2336 |
}, |
|
|
2337 |
{ |
|
|
2338 |
"name": "stderr", |
|
|
2339 |
"output_type": "stream", |
|
|
2340 |
"text": [ |
|
|
2341 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2342 |
] |
|
|
2343 |
}, |
|
|
2344 |
{ |
|
|
2345 |
"name": "stdout", |
|
|
2346 |
"output_type": "stream", |
|
|
2347 |
"text": [ |
|
|
2348 |
"patient_272.npz\n" |
|
|
2349 |
] |
|
|
2350 |
}, |
|
|
2351 |
{ |
|
|
2352 |
"name": "stderr", |
|
|
2353 |
"output_type": "stream", |
|
|
2354 |
"text": [ |
|
|
2355 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2356 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2357 |
] |
|
|
2358 |
}, |
|
|
2359 |
{ |
|
|
2360 |
"name": "stdout", |
|
|
2361 |
"output_type": "stream", |
|
|
2362 |
"text": [ |
|
|
2363 |
"patient_273.npz\n", |
|
|
2364 |
"patient_275.npz\n" |
|
|
2365 |
] |
|
|
2366 |
}, |
|
|
2367 |
{ |
|
|
2368 |
"name": "stderr", |
|
|
2369 |
"output_type": "stream", |
|
|
2370 |
"text": [ |
|
|
2371 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2372 |
] |
|
|
2373 |
}, |
|
|
2374 |
{ |
|
|
2375 |
"name": "stdout", |
|
|
2376 |
"output_type": "stream", |
|
|
2377 |
"text": [ |
|
|
2378 |
"patient_276.npz\n" |
|
|
2379 |
] |
|
|
2380 |
}, |
|
|
2381 |
{ |
|
|
2382 |
"name": "stderr", |
|
|
2383 |
"output_type": "stream", |
|
|
2384 |
"text": [ |
|
|
2385 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2386 |
] |
|
|
2387 |
}, |
|
|
2388 |
{ |
|
|
2389 |
"name": "stdout", |
|
|
2390 |
"output_type": "stream", |
|
|
2391 |
"text": [ |
|
|
2392 |
"patient_277.npz\n" |
|
|
2393 |
] |
|
|
2394 |
}, |
|
|
2395 |
{ |
|
|
2396 |
"name": "stderr", |
|
|
2397 |
"output_type": "stream", |
|
|
2398 |
"text": [ |
|
|
2399 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2400 |
] |
|
|
2401 |
}, |
|
|
2402 |
{ |
|
|
2403 |
"name": "stdout", |
|
|
2404 |
"output_type": "stream", |
|
|
2405 |
"text": [ |
|
|
2406 |
"patient_279.npz\n" |
|
|
2407 |
] |
|
|
2408 |
}, |
|
|
2409 |
{ |
|
|
2410 |
"name": "stderr", |
|
|
2411 |
"output_type": "stream", |
|
|
2412 |
"text": [ |
|
|
2413 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2414 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2415 |
] |
|
|
2416 |
}, |
|
|
2417 |
{ |
|
|
2418 |
"name": "stdout", |
|
|
2419 |
"output_type": "stream", |
|
|
2420 |
"text": [ |
|
|
2421 |
"patient_280.npz\n", |
|
|
2422 |
"patient_282.npz\n" |
|
|
2423 |
] |
|
|
2424 |
}, |
|
|
2425 |
{ |
|
|
2426 |
"name": "stderr", |
|
|
2427 |
"output_type": "stream", |
|
|
2428 |
"text": [ |
|
|
2429 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2430 |
] |
|
|
2431 |
}, |
|
|
2432 |
{ |
|
|
2433 |
"name": "stdout", |
|
|
2434 |
"output_type": "stream", |
|
|
2435 |
"text": [ |
|
|
2436 |
"patient_283.npz\n" |
|
|
2437 |
] |
|
|
2438 |
}, |
|
|
2439 |
{ |
|
|
2440 |
"name": "stderr", |
|
|
2441 |
"output_type": "stream", |
|
|
2442 |
"text": [ |
|
|
2443 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2444 |
] |
|
|
2445 |
}, |
|
|
2446 |
{ |
|
|
2447 |
"name": "stdout", |
|
|
2448 |
"output_type": "stream", |
|
|
2449 |
"text": [ |
|
|
2450 |
"patient_284.npz\n" |
|
|
2451 |
] |
|
|
2452 |
}, |
|
|
2453 |
{ |
|
|
2454 |
"name": "stderr", |
|
|
2455 |
"output_type": "stream", |
|
|
2456 |
"text": [ |
|
|
2457 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2458 |
] |
|
|
2459 |
}, |
|
|
2460 |
{ |
|
|
2461 |
"name": "stdout", |
|
|
2462 |
"output_type": "stream", |
|
|
2463 |
"text": [ |
|
|
2464 |
"patient_285.npz\n" |
|
|
2465 |
] |
|
|
2466 |
}, |
|
|
2467 |
{ |
|
|
2468 |
"name": "stderr", |
|
|
2469 |
"output_type": "stream", |
|
|
2470 |
"text": [ |
|
|
2471 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2472 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2473 |
] |
|
|
2474 |
}, |
|
|
2475 |
{ |
|
|
2476 |
"name": "stdout", |
|
|
2477 |
"output_type": "stream", |
|
|
2478 |
"text": [ |
|
|
2479 |
"patient_286.npz\n", |
|
|
2480 |
"patient_288.npz\n" |
|
|
2481 |
] |
|
|
2482 |
}, |
|
|
2483 |
{ |
|
|
2484 |
"name": "stderr", |
|
|
2485 |
"output_type": "stream", |
|
|
2486 |
"text": [ |
|
|
2487 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2488 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2489 |
] |
|
|
2490 |
}, |
|
|
2491 |
{ |
|
|
2492 |
"name": "stdout", |
|
|
2493 |
"output_type": "stream", |
|
|
2494 |
"text": [ |
|
|
2495 |
"patient_290.npz\n", |
|
|
2496 |
"patient_293.npz\n" |
|
|
2497 |
] |
|
|
2498 |
}, |
|
|
2499 |
{ |
|
|
2500 |
"name": "stderr", |
|
|
2501 |
"output_type": "stream", |
|
|
2502 |
"text": [ |
|
|
2503 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2504 |
] |
|
|
2505 |
}, |
|
|
2506 |
{ |
|
|
2507 |
"name": "stdout", |
|
|
2508 |
"output_type": "stream", |
|
|
2509 |
"text": [ |
|
|
2510 |
"patient_294.npz\n" |
|
|
2511 |
] |
|
|
2512 |
}, |
|
|
2513 |
{ |
|
|
2514 |
"name": "stderr", |
|
|
2515 |
"output_type": "stream", |
|
|
2516 |
"text": [ |
|
|
2517 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2518 |
] |
|
|
2519 |
}, |
|
|
2520 |
{ |
|
|
2521 |
"name": "stdout", |
|
|
2522 |
"output_type": "stream", |
|
|
2523 |
"text": [ |
|
|
2524 |
"patient_295.npz\n" |
|
|
2525 |
] |
|
|
2526 |
}, |
|
|
2527 |
{ |
|
|
2528 |
"name": "stderr", |
|
|
2529 |
"output_type": "stream", |
|
|
2530 |
"text": [ |
|
|
2531 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2532 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2533 |
] |
|
|
2534 |
}, |
|
|
2535 |
{ |
|
|
2536 |
"name": "stdout", |
|
|
2537 |
"output_type": "stream", |
|
|
2538 |
"text": [ |
|
|
2539 |
"patient_297.npz\n", |
|
|
2540 |
"patient_298.npz\n" |
|
|
2541 |
] |
|
|
2542 |
}, |
|
|
2543 |
{ |
|
|
2544 |
"name": "stderr", |
|
|
2545 |
"output_type": "stream", |
|
|
2546 |
"text": [ |
|
|
2547 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2548 |
] |
|
|
2549 |
}, |
|
|
2550 |
{ |
|
|
2551 |
"name": "stdout", |
|
|
2552 |
"output_type": "stream", |
|
|
2553 |
"text": [ |
|
|
2554 |
"patient_299.npz\n" |
|
|
2555 |
] |
|
|
2556 |
}, |
|
|
2557 |
{ |
|
|
2558 |
"name": "stderr", |
|
|
2559 |
"output_type": "stream", |
|
|
2560 |
"text": [ |
|
|
2561 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2562 |
] |
|
|
2563 |
}, |
|
|
2564 |
{ |
|
|
2565 |
"name": "stdout", |
|
|
2566 |
"output_type": "stream", |
|
|
2567 |
"text": [ |
|
|
2568 |
"patient_300.npz\n" |
|
|
2569 |
] |
|
|
2570 |
}, |
|
|
2571 |
{ |
|
|
2572 |
"name": "stderr", |
|
|
2573 |
"output_type": "stream", |
|
|
2574 |
"text": [ |
|
|
2575 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2576 |
] |
|
|
2577 |
}, |
|
|
2578 |
{ |
|
|
2579 |
"name": "stdout", |
|
|
2580 |
"output_type": "stream", |
|
|
2581 |
"text": [ |
|
|
2582 |
"patient_302.npz\n" |
|
|
2583 |
] |
|
|
2584 |
}, |
|
|
2585 |
{ |
|
|
2586 |
"name": "stderr", |
|
|
2587 |
"output_type": "stream", |
|
|
2588 |
"text": [ |
|
|
2589 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2590 |
] |
|
|
2591 |
}, |
|
|
2592 |
{ |
|
|
2593 |
"name": "stdout", |
|
|
2594 |
"output_type": "stream", |
|
|
2595 |
"text": [ |
|
|
2596 |
"patient_303.npz\n" |
|
|
2597 |
] |
|
|
2598 |
}, |
|
|
2599 |
{ |
|
|
2600 |
"name": "stderr", |
|
|
2601 |
"output_type": "stream", |
|
|
2602 |
"text": [ |
|
|
2603 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2604 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2605 |
] |
|
|
2606 |
}, |
|
|
2607 |
{ |
|
|
2608 |
"name": "stdout", |
|
|
2609 |
"output_type": "stream", |
|
|
2610 |
"text": [ |
|
|
2611 |
"patient_304.npz\n" |
|
|
2612 |
] |
|
|
2613 |
}, |
|
|
2614 |
{ |
|
|
2615 |
"name": "stderr", |
|
|
2616 |
"output_type": "stream", |
|
|
2617 |
"text": [ |
|
|
2618 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2619 |
] |
|
|
2620 |
}, |
|
|
2621 |
{ |
|
|
2622 |
"name": "stdout", |
|
|
2623 |
"output_type": "stream", |
|
|
2624 |
"text": [ |
|
|
2625 |
"patient_305.npz\n", |
|
|
2626 |
"patient_306.npz\n" |
|
|
2627 |
] |
|
|
2628 |
}, |
|
|
2629 |
{ |
|
|
2630 |
"name": "stderr", |
|
|
2631 |
"output_type": "stream", |
|
|
2632 |
"text": [ |
|
|
2633 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2634 |
] |
|
|
2635 |
}, |
|
|
2636 |
{ |
|
|
2637 |
"name": "stdout", |
|
|
2638 |
"output_type": "stream", |
|
|
2639 |
"text": [ |
|
|
2640 |
"patient_307.npz\n" |
|
|
2641 |
] |
|
|
2642 |
}, |
|
|
2643 |
{ |
|
|
2644 |
"name": "stderr", |
|
|
2645 |
"output_type": "stream", |
|
|
2646 |
"text": [ |
|
|
2647 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2648 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2649 |
] |
|
|
2650 |
}, |
|
|
2651 |
{ |
|
|
2652 |
"name": "stdout", |
|
|
2653 |
"output_type": "stream", |
|
|
2654 |
"text": [ |
|
|
2655 |
"patient_308.npz\n", |
|
|
2656 |
"patient_309.npz\n" |
|
|
2657 |
] |
|
|
2658 |
}, |
|
|
2659 |
{ |
|
|
2660 |
"name": "stderr", |
|
|
2661 |
"output_type": "stream", |
|
|
2662 |
"text": [ |
|
|
2663 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2664 |
] |
|
|
2665 |
}, |
|
|
2666 |
{ |
|
|
2667 |
"name": "stdout", |
|
|
2668 |
"output_type": "stream", |
|
|
2669 |
"text": [ |
|
|
2670 |
"patient_310.npz\n" |
|
|
2671 |
] |
|
|
2672 |
}, |
|
|
2673 |
{ |
|
|
2674 |
"name": "stderr", |
|
|
2675 |
"output_type": "stream", |
|
|
2676 |
"text": [ |
|
|
2677 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2678 |
] |
|
|
2679 |
}, |
|
|
2680 |
{ |
|
|
2681 |
"name": "stdout", |
|
|
2682 |
"output_type": "stream", |
|
|
2683 |
"text": [ |
|
|
2684 |
"patient_312.npz\n" |
|
|
2685 |
] |
|
|
2686 |
}, |
|
|
2687 |
{ |
|
|
2688 |
"name": "stderr", |
|
|
2689 |
"output_type": "stream", |
|
|
2690 |
"text": [ |
|
|
2691 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2692 |
] |
|
|
2693 |
}, |
|
|
2694 |
{ |
|
|
2695 |
"name": "stdout", |
|
|
2696 |
"output_type": "stream", |
|
|
2697 |
"text": [ |
|
|
2698 |
"patient_313.npz\n" |
|
|
2699 |
] |
|
|
2700 |
}, |
|
|
2701 |
{ |
|
|
2702 |
"name": "stderr", |
|
|
2703 |
"output_type": "stream", |
|
|
2704 |
"text": [ |
|
|
2705 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2706 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2707 |
] |
|
|
2708 |
}, |
|
|
2709 |
{ |
|
|
2710 |
"name": "stdout", |
|
|
2711 |
"output_type": "stream", |
|
|
2712 |
"text": [ |
|
|
2713 |
"patient_314.npz\n" |
|
|
2714 |
] |
|
|
2715 |
}, |
|
|
2716 |
{ |
|
|
2717 |
"name": "stderr", |
|
|
2718 |
"output_type": "stream", |
|
|
2719 |
"text": [ |
|
|
2720 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2721 |
] |
|
|
2722 |
}, |
|
|
2723 |
{ |
|
|
2724 |
"name": "stdout", |
|
|
2725 |
"output_type": "stream", |
|
|
2726 |
"text": [ |
|
|
2727 |
"patient_315.npz\n", |
|
|
2728 |
"patient_316.npz\n" |
|
|
2729 |
] |
|
|
2730 |
}, |
|
|
2731 |
{ |
|
|
2732 |
"name": "stderr", |
|
|
2733 |
"output_type": "stream", |
|
|
2734 |
"text": [ |
|
|
2735 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2736 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2737 |
] |
|
|
2738 |
}, |
|
|
2739 |
{ |
|
|
2740 |
"name": "stdout", |
|
|
2741 |
"output_type": "stream", |
|
|
2742 |
"text": [ |
|
|
2743 |
"patient_317.npz\n", |
|
|
2744 |
"patient_318.npz\n" |
|
|
2745 |
] |
|
|
2746 |
}, |
|
|
2747 |
{ |
|
|
2748 |
"name": "stderr", |
|
|
2749 |
"output_type": "stream", |
|
|
2750 |
"text": [ |
|
|
2751 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2752 |
] |
|
|
2753 |
}, |
|
|
2754 |
{ |
|
|
2755 |
"name": "stdout", |
|
|
2756 |
"output_type": "stream", |
|
|
2757 |
"text": [ |
|
|
2758 |
"patient_320.npz\n" |
|
|
2759 |
] |
|
|
2760 |
}, |
|
|
2761 |
{ |
|
|
2762 |
"name": "stderr", |
|
|
2763 |
"output_type": "stream", |
|
|
2764 |
"text": [ |
|
|
2765 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2766 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2767 |
] |
|
|
2768 |
}, |
|
|
2769 |
{ |
|
|
2770 |
"name": "stdout", |
|
|
2771 |
"output_type": "stream", |
|
|
2772 |
"text": [ |
|
|
2773 |
"patient_321.npz\n" |
|
|
2774 |
] |
|
|
2775 |
}, |
|
|
2776 |
{ |
|
|
2777 |
"name": "stderr", |
|
|
2778 |
"output_type": "stream", |
|
|
2779 |
"text": [ |
|
|
2780 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2781 |
] |
|
|
2782 |
}, |
|
|
2783 |
{ |
|
|
2784 |
"name": "stdout", |
|
|
2785 |
"output_type": "stream", |
|
|
2786 |
"text": [ |
|
|
2787 |
"patient_323.npz\n" |
|
|
2788 |
] |
|
|
2789 |
}, |
|
|
2790 |
{ |
|
|
2791 |
"name": "stderr", |
|
|
2792 |
"output_type": "stream", |
|
|
2793 |
"text": [ |
|
|
2794 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2795 |
] |
|
|
2796 |
}, |
|
|
2797 |
{ |
|
|
2798 |
"name": "stdout", |
|
|
2799 |
"output_type": "stream", |
|
|
2800 |
"text": [ |
|
|
2801 |
"patient_325.npz\n", |
|
|
2802 |
"patient_328.npz\n" |
|
|
2803 |
] |
|
|
2804 |
}, |
|
|
2805 |
{ |
|
|
2806 |
"name": "stderr", |
|
|
2807 |
"output_type": "stream", |
|
|
2808 |
"text": [ |
|
|
2809 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2810 |
] |
|
|
2811 |
}, |
|
|
2812 |
{ |
|
|
2813 |
"name": "stdout", |
|
|
2814 |
"output_type": "stream", |
|
|
2815 |
"text": [ |
|
|
2816 |
"patient_329.npz\n" |
|
|
2817 |
] |
|
|
2818 |
}, |
|
|
2819 |
{ |
|
|
2820 |
"name": "stderr", |
|
|
2821 |
"output_type": "stream", |
|
|
2822 |
"text": [ |
|
|
2823 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2824 |
] |
|
|
2825 |
}, |
|
|
2826 |
{ |
|
|
2827 |
"name": "stdout", |
|
|
2828 |
"output_type": "stream", |
|
|
2829 |
"text": [ |
|
|
2830 |
"patient_330.npz\n" |
|
|
2831 |
] |
|
|
2832 |
}, |
|
|
2833 |
{ |
|
|
2834 |
"name": "stderr", |
|
|
2835 |
"output_type": "stream", |
|
|
2836 |
"text": [ |
|
|
2837 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2838 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2839 |
] |
|
|
2840 |
}, |
|
|
2841 |
{ |
|
|
2842 |
"name": "stdout", |
|
|
2843 |
"output_type": "stream", |
|
|
2844 |
"text": [ |
|
|
2845 |
"patient_331.npz\n", |
|
|
2846 |
"patient_333.npz\n" |
|
|
2847 |
] |
|
|
2848 |
}, |
|
|
2849 |
{ |
|
|
2850 |
"name": "stderr", |
|
|
2851 |
"output_type": "stream", |
|
|
2852 |
"text": [ |
|
|
2853 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2854 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2855 |
] |
|
|
2856 |
}, |
|
|
2857 |
{ |
|
|
2858 |
"name": "stdout", |
|
|
2859 |
"output_type": "stream", |
|
|
2860 |
"text": [ |
|
|
2861 |
"patient_334.npz\n", |
|
|
2862 |
"patient_335.npz\n" |
|
|
2863 |
] |
|
|
2864 |
}, |
|
|
2865 |
{ |
|
|
2866 |
"name": "stderr", |
|
|
2867 |
"output_type": "stream", |
|
|
2868 |
"text": [ |
|
|
2869 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2870 |
] |
|
|
2871 |
}, |
|
|
2872 |
{ |
|
|
2873 |
"name": "stdout", |
|
|
2874 |
"output_type": "stream", |
|
|
2875 |
"text": [ |
|
|
2876 |
"patient_336.npz\n" |
|
|
2877 |
] |
|
|
2878 |
}, |
|
|
2879 |
{ |
|
|
2880 |
"name": "stderr", |
|
|
2881 |
"output_type": "stream", |
|
|
2882 |
"text": [ |
|
|
2883 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2884 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2885 |
] |
|
|
2886 |
}, |
|
|
2887 |
{ |
|
|
2888 |
"name": "stdout", |
|
|
2889 |
"output_type": "stream", |
|
|
2890 |
"text": [ |
|
|
2891 |
"patient_338.npz\n", |
|
|
2892 |
"patient_340.npz\n" |
|
|
2893 |
] |
|
|
2894 |
}, |
|
|
2895 |
{ |
|
|
2896 |
"name": "stderr", |
|
|
2897 |
"output_type": "stream", |
|
|
2898 |
"text": [ |
|
|
2899 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2900 |
] |
|
|
2901 |
}, |
|
|
2902 |
{ |
|
|
2903 |
"name": "stdout", |
|
|
2904 |
"output_type": "stream", |
|
|
2905 |
"text": [ |
|
|
2906 |
"patient_341.npz\n" |
|
|
2907 |
] |
|
|
2908 |
}, |
|
|
2909 |
{ |
|
|
2910 |
"name": "stderr", |
|
|
2911 |
"output_type": "stream", |
|
|
2912 |
"text": [ |
|
|
2913 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2914 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2915 |
] |
|
|
2916 |
}, |
|
|
2917 |
{ |
|
|
2918 |
"name": "stdout", |
|
|
2919 |
"output_type": "stream", |
|
|
2920 |
"text": [ |
|
|
2921 |
"patient_343.npz\n", |
|
|
2922 |
"patient_345.npz\n" |
|
|
2923 |
] |
|
|
2924 |
}, |
|
|
2925 |
{ |
|
|
2926 |
"name": "stderr", |
|
|
2927 |
"output_type": "stream", |
|
|
2928 |
"text": [ |
|
|
2929 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2930 |
] |
|
|
2931 |
}, |
|
|
2932 |
{ |
|
|
2933 |
"name": "stdout", |
|
|
2934 |
"output_type": "stream", |
|
|
2935 |
"text": [ |
|
|
2936 |
"patient_346.npz\n" |
|
|
2937 |
] |
|
|
2938 |
}, |
|
|
2939 |
{ |
|
|
2940 |
"name": "stderr", |
|
|
2941 |
"output_type": "stream", |
|
|
2942 |
"text": [ |
|
|
2943 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2944 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2945 |
] |
|
|
2946 |
}, |
|
|
2947 |
{ |
|
|
2948 |
"name": "stdout", |
|
|
2949 |
"output_type": "stream", |
|
|
2950 |
"text": [ |
|
|
2951 |
"patient_347.npz\n", |
|
|
2952 |
"patient_348.npz\n" |
|
|
2953 |
] |
|
|
2954 |
}, |
|
|
2955 |
{ |
|
|
2956 |
"name": "stderr", |
|
|
2957 |
"output_type": "stream", |
|
|
2958 |
"text": [ |
|
|
2959 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2960 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2961 |
] |
|
|
2962 |
}, |
|
|
2963 |
{ |
|
|
2964 |
"name": "stdout", |
|
|
2965 |
"output_type": "stream", |
|
|
2966 |
"text": [ |
|
|
2967 |
"patient_349.npz\n", |
|
|
2968 |
"patient_350.npz\n" |
|
|
2969 |
] |
|
|
2970 |
}, |
|
|
2971 |
{ |
|
|
2972 |
"name": "stderr", |
|
|
2973 |
"output_type": "stream", |
|
|
2974 |
"text": [ |
|
|
2975 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
2976 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2977 |
] |
|
|
2978 |
}, |
|
|
2979 |
{ |
|
|
2980 |
"name": "stdout", |
|
|
2981 |
"output_type": "stream", |
|
|
2982 |
"text": [ |
|
|
2983 |
"patient_353.npz\n", |
|
|
2984 |
"patient_354.npz\n" |
|
|
2985 |
] |
|
|
2986 |
}, |
|
|
2987 |
{ |
|
|
2988 |
"name": "stderr", |
|
|
2989 |
"output_type": "stream", |
|
|
2990 |
"text": [ |
|
|
2991 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
2992 |
] |
|
|
2993 |
}, |
|
|
2994 |
{ |
|
|
2995 |
"name": "stdout", |
|
|
2996 |
"output_type": "stream", |
|
|
2997 |
"text": [ |
|
|
2998 |
"patient_355.npz\n" |
|
|
2999 |
] |
|
|
3000 |
}, |
|
|
3001 |
{ |
|
|
3002 |
"name": "stderr", |
|
|
3003 |
"output_type": "stream", |
|
|
3004 |
"text": [ |
|
|
3005 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3006 |
] |
|
|
3007 |
}, |
|
|
3008 |
{ |
|
|
3009 |
"name": "stdout", |
|
|
3010 |
"output_type": "stream", |
|
|
3011 |
"text": [ |
|
|
3012 |
"patient_356.npz\n" |
|
|
3013 |
] |
|
|
3014 |
}, |
|
|
3015 |
{ |
|
|
3016 |
"name": "stderr", |
|
|
3017 |
"output_type": "stream", |
|
|
3018 |
"text": [ |
|
|
3019 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3020 |
] |
|
|
3021 |
}, |
|
|
3022 |
{ |
|
|
3023 |
"name": "stdout", |
|
|
3024 |
"output_type": "stream", |
|
|
3025 |
"text": [ |
|
|
3026 |
"patient_357.npz\n" |
|
|
3027 |
] |
|
|
3028 |
}, |
|
|
3029 |
{ |
|
|
3030 |
"name": "stderr", |
|
|
3031 |
"output_type": "stream", |
|
|
3032 |
"text": [ |
|
|
3033 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3034 |
] |
|
|
3035 |
}, |
|
|
3036 |
{ |
|
|
3037 |
"name": "stdout", |
|
|
3038 |
"output_type": "stream", |
|
|
3039 |
"text": [ |
|
|
3040 |
"patient_358.npz\n" |
|
|
3041 |
] |
|
|
3042 |
}, |
|
|
3043 |
{ |
|
|
3044 |
"name": "stderr", |
|
|
3045 |
"output_type": "stream", |
|
|
3046 |
"text": [ |
|
|
3047 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3048 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3049 |
] |
|
|
3050 |
}, |
|
|
3051 |
{ |
|
|
3052 |
"name": "stdout", |
|
|
3053 |
"output_type": "stream", |
|
|
3054 |
"text": [ |
|
|
3055 |
"patient_359.npz\n", |
|
|
3056 |
"patient_361.npz\n" |
|
|
3057 |
] |
|
|
3058 |
}, |
|
|
3059 |
{ |
|
|
3060 |
"name": "stderr", |
|
|
3061 |
"output_type": "stream", |
|
|
3062 |
"text": [ |
|
|
3063 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3064 |
] |
|
|
3065 |
}, |
|
|
3066 |
{ |
|
|
3067 |
"name": "stdout", |
|
|
3068 |
"output_type": "stream", |
|
|
3069 |
"text": [ |
|
|
3070 |
"patient_362.npz\n" |
|
|
3071 |
] |
|
|
3072 |
}, |
|
|
3073 |
{ |
|
|
3074 |
"name": "stderr", |
|
|
3075 |
"output_type": "stream", |
|
|
3076 |
"text": [ |
|
|
3077 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3078 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3079 |
] |
|
|
3080 |
}, |
|
|
3081 |
{ |
|
|
3082 |
"name": "stdout", |
|
|
3083 |
"output_type": "stream", |
|
|
3084 |
"text": [ |
|
|
3085 |
"patient_365.npz\n", |
|
|
3086 |
"patient_366.npz\n" |
|
|
3087 |
] |
|
|
3088 |
}, |
|
|
3089 |
{ |
|
|
3090 |
"name": "stderr", |
|
|
3091 |
"output_type": "stream", |
|
|
3092 |
"text": [ |
|
|
3093 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3094 |
] |
|
|
3095 |
}, |
|
|
3096 |
{ |
|
|
3097 |
"name": "stdout", |
|
|
3098 |
"output_type": "stream", |
|
|
3099 |
"text": [ |
|
|
3100 |
"patient_367.npz\n" |
|
|
3101 |
] |
|
|
3102 |
}, |
|
|
3103 |
{ |
|
|
3104 |
"name": "stderr", |
|
|
3105 |
"output_type": "stream", |
|
|
3106 |
"text": [ |
|
|
3107 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3108 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3109 |
] |
|
|
3110 |
}, |
|
|
3111 |
{ |
|
|
3112 |
"name": "stdout", |
|
|
3113 |
"output_type": "stream", |
|
|
3114 |
"text": [ |
|
|
3115 |
"patient_368.npz\n", |
|
|
3116 |
"patient_371.npz\n" |
|
|
3117 |
] |
|
|
3118 |
}, |
|
|
3119 |
{ |
|
|
3120 |
"name": "stderr", |
|
|
3121 |
"output_type": "stream", |
|
|
3122 |
"text": [ |
|
|
3123 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3124 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3125 |
] |
|
|
3126 |
}, |
|
|
3127 |
{ |
|
|
3128 |
"name": "stdout", |
|
|
3129 |
"output_type": "stream", |
|
|
3130 |
"text": [ |
|
|
3131 |
"patient_372.npz\n", |
|
|
3132 |
"patient_373.npz\n" |
|
|
3133 |
] |
|
|
3134 |
}, |
|
|
3135 |
{ |
|
|
3136 |
"name": "stderr", |
|
|
3137 |
"output_type": "stream", |
|
|
3138 |
"text": [ |
|
|
3139 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3140 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3141 |
] |
|
|
3142 |
}, |
|
|
3143 |
{ |
|
|
3144 |
"name": "stdout", |
|
|
3145 |
"output_type": "stream", |
|
|
3146 |
"text": [ |
|
|
3147 |
"patient_375.npz\n", |
|
|
3148 |
"patient_376.npz\n" |
|
|
3149 |
] |
|
|
3150 |
}, |
|
|
3151 |
{ |
|
|
3152 |
"name": "stderr", |
|
|
3153 |
"output_type": "stream", |
|
|
3154 |
"text": [ |
|
|
3155 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3156 |
] |
|
|
3157 |
}, |
|
|
3158 |
{ |
|
|
3159 |
"name": "stdout", |
|
|
3160 |
"output_type": "stream", |
|
|
3161 |
"text": [ |
|
|
3162 |
"patient_378.npz\n" |
|
|
3163 |
] |
|
|
3164 |
}, |
|
|
3165 |
{ |
|
|
3166 |
"name": "stderr", |
|
|
3167 |
"output_type": "stream", |
|
|
3168 |
"text": [ |
|
|
3169 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3170 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3171 |
] |
|
|
3172 |
}, |
|
|
3173 |
{ |
|
|
3174 |
"name": "stdout", |
|
|
3175 |
"output_type": "stream", |
|
|
3176 |
"text": [ |
|
|
3177 |
"patient_380.npz\n" |
|
|
3178 |
] |
|
|
3179 |
}, |
|
|
3180 |
{ |
|
|
3181 |
"name": "stderr", |
|
|
3182 |
"output_type": "stream", |
|
|
3183 |
"text": [ |
|
|
3184 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3185 |
] |
|
|
3186 |
}, |
|
|
3187 |
{ |
|
|
3188 |
"name": "stdout", |
|
|
3189 |
"output_type": "stream", |
|
|
3190 |
"text": [ |
|
|
3191 |
"patient_381.npz\n", |
|
|
3192 |
"patient_382.npz\n" |
|
|
3193 |
] |
|
|
3194 |
}, |
|
|
3195 |
{ |
|
|
3196 |
"name": "stderr", |
|
|
3197 |
"output_type": "stream", |
|
|
3198 |
"text": [ |
|
|
3199 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3200 |
] |
|
|
3201 |
}, |
|
|
3202 |
{ |
|
|
3203 |
"name": "stdout", |
|
|
3204 |
"output_type": "stream", |
|
|
3205 |
"text": [ |
|
|
3206 |
"patient_383.npz\n" |
|
|
3207 |
] |
|
|
3208 |
}, |
|
|
3209 |
{ |
|
|
3210 |
"name": "stderr", |
|
|
3211 |
"output_type": "stream", |
|
|
3212 |
"text": [ |
|
|
3213 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3214 |
] |
|
|
3215 |
}, |
|
|
3216 |
{ |
|
|
3217 |
"name": "stdout", |
|
|
3218 |
"output_type": "stream", |
|
|
3219 |
"text": [ |
|
|
3220 |
"patient_384.npz\n" |
|
|
3221 |
] |
|
|
3222 |
}, |
|
|
3223 |
{ |
|
|
3224 |
"name": "stderr", |
|
|
3225 |
"output_type": "stream", |
|
|
3226 |
"text": [ |
|
|
3227 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3228 |
] |
|
|
3229 |
}, |
|
|
3230 |
{ |
|
|
3231 |
"name": "stdout", |
|
|
3232 |
"output_type": "stream", |
|
|
3233 |
"text": [ |
|
|
3234 |
"patient_385.npz\n" |
|
|
3235 |
] |
|
|
3236 |
}, |
|
|
3237 |
{ |
|
|
3238 |
"name": "stderr", |
|
|
3239 |
"output_type": "stream", |
|
|
3240 |
"text": [ |
|
|
3241 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3242 |
] |
|
|
3243 |
}, |
|
|
3244 |
{ |
|
|
3245 |
"name": "stdout", |
|
|
3246 |
"output_type": "stream", |
|
|
3247 |
"text": [ |
|
|
3248 |
"patient_386.npz\n" |
|
|
3249 |
] |
|
|
3250 |
}, |
|
|
3251 |
{ |
|
|
3252 |
"name": "stderr", |
|
|
3253 |
"output_type": "stream", |
|
|
3254 |
"text": [ |
|
|
3255 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3256 |
] |
|
|
3257 |
}, |
|
|
3258 |
{ |
|
|
3259 |
"name": "stdout", |
|
|
3260 |
"output_type": "stream", |
|
|
3261 |
"text": [ |
|
|
3262 |
"patient_388.npz\n" |
|
|
3263 |
] |
|
|
3264 |
}, |
|
|
3265 |
{ |
|
|
3266 |
"name": "stderr", |
|
|
3267 |
"output_type": "stream", |
|
|
3268 |
"text": [ |
|
|
3269 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3270 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3271 |
] |
|
|
3272 |
}, |
|
|
3273 |
{ |
|
|
3274 |
"name": "stdout", |
|
|
3275 |
"output_type": "stream", |
|
|
3276 |
"text": [ |
|
|
3277 |
"patient_389.npz\n" |
|
|
3278 |
] |
|
|
3279 |
}, |
|
|
3280 |
{ |
|
|
3281 |
"name": "stderr", |
|
|
3282 |
"output_type": "stream", |
|
|
3283 |
"text": [ |
|
|
3284 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3285 |
] |
|
|
3286 |
}, |
|
|
3287 |
{ |
|
|
3288 |
"name": "stdout", |
|
|
3289 |
"output_type": "stream", |
|
|
3290 |
"text": [ |
|
|
3291 |
"patient_390.npz\n", |
|
|
3292 |
"patient_392.npz\n" |
|
|
3293 |
] |
|
|
3294 |
}, |
|
|
3295 |
{ |
|
|
3296 |
"name": "stderr", |
|
|
3297 |
"output_type": "stream", |
|
|
3298 |
"text": [ |
|
|
3299 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3300 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3301 |
] |
|
|
3302 |
}, |
|
|
3303 |
{ |
|
|
3304 |
"name": "stdout", |
|
|
3305 |
"output_type": "stream", |
|
|
3306 |
"text": [ |
|
|
3307 |
"patient_393.npz\n" |
|
|
3308 |
] |
|
|
3309 |
}, |
|
|
3310 |
{ |
|
|
3311 |
"name": "stderr", |
|
|
3312 |
"output_type": "stream", |
|
|
3313 |
"text": [ |
|
|
3314 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3315 |
] |
|
|
3316 |
}, |
|
|
3317 |
{ |
|
|
3318 |
"name": "stdout", |
|
|
3319 |
"output_type": "stream", |
|
|
3320 |
"text": [ |
|
|
3321 |
"patient_394.npz\n", |
|
|
3322 |
"patient_395.npz\n" |
|
|
3323 |
] |
|
|
3324 |
}, |
|
|
3325 |
{ |
|
|
3326 |
"name": "stderr", |
|
|
3327 |
"output_type": "stream", |
|
|
3328 |
"text": [ |
|
|
3329 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3330 |
] |
|
|
3331 |
}, |
|
|
3332 |
{ |
|
|
3333 |
"name": "stdout", |
|
|
3334 |
"output_type": "stream", |
|
|
3335 |
"text": [ |
|
|
3336 |
"patient_396.npz\n" |
|
|
3337 |
] |
|
|
3338 |
}, |
|
|
3339 |
{ |
|
|
3340 |
"name": "stderr", |
|
|
3341 |
"output_type": "stream", |
|
|
3342 |
"text": [ |
|
|
3343 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3344 |
] |
|
|
3345 |
}, |
|
|
3346 |
{ |
|
|
3347 |
"name": "stdout", |
|
|
3348 |
"output_type": "stream", |
|
|
3349 |
"text": [ |
|
|
3350 |
"patient_397.npz\n" |
|
|
3351 |
] |
|
|
3352 |
}, |
|
|
3353 |
{ |
|
|
3354 |
"name": "stderr", |
|
|
3355 |
"output_type": "stream", |
|
|
3356 |
"text": [ |
|
|
3357 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3358 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3359 |
] |
|
|
3360 |
}, |
|
|
3361 |
{ |
|
|
3362 |
"name": "stdout", |
|
|
3363 |
"output_type": "stream", |
|
|
3364 |
"text": [ |
|
|
3365 |
"patient_399.npz\n", |
|
|
3366 |
"patient_400.npz\n" |
|
|
3367 |
] |
|
|
3368 |
}, |
|
|
3369 |
{ |
|
|
3370 |
"name": "stderr", |
|
|
3371 |
"output_type": "stream", |
|
|
3372 |
"text": [ |
|
|
3373 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3374 |
] |
|
|
3375 |
}, |
|
|
3376 |
{ |
|
|
3377 |
"name": "stdout", |
|
|
3378 |
"output_type": "stream", |
|
|
3379 |
"text": [ |
|
|
3380 |
"patient_401.npz\n" |
|
|
3381 |
] |
|
|
3382 |
}, |
|
|
3383 |
{ |
|
|
3384 |
"name": "stderr", |
|
|
3385 |
"output_type": "stream", |
|
|
3386 |
"text": [ |
|
|
3387 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3388 |
] |
|
|
3389 |
}, |
|
|
3390 |
{ |
|
|
3391 |
"name": "stdout", |
|
|
3392 |
"output_type": "stream", |
|
|
3393 |
"text": [ |
|
|
3394 |
"patient_402.npz\n" |
|
|
3395 |
] |
|
|
3396 |
}, |
|
|
3397 |
{ |
|
|
3398 |
"name": "stderr", |
|
|
3399 |
"output_type": "stream", |
|
|
3400 |
"text": [ |
|
|
3401 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3402 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3403 |
] |
|
|
3404 |
}, |
|
|
3405 |
{ |
|
|
3406 |
"name": "stdout", |
|
|
3407 |
"output_type": "stream", |
|
|
3408 |
"text": [ |
|
|
3409 |
"patient_403.npz\n" |
|
|
3410 |
] |
|
|
3411 |
}, |
|
|
3412 |
{ |
|
|
3413 |
"name": "stderr", |
|
|
3414 |
"output_type": "stream", |
|
|
3415 |
"text": [ |
|
|
3416 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3417 |
] |
|
|
3418 |
}, |
|
|
3419 |
{ |
|
|
3420 |
"name": "stdout", |
|
|
3421 |
"output_type": "stream", |
|
|
3422 |
"text": [ |
|
|
3423 |
"patient_406.npz\n", |
|
|
3424 |
"patient_409.npz\n" |
|
|
3425 |
] |
|
|
3426 |
}, |
|
|
3427 |
{ |
|
|
3428 |
"name": "stderr", |
|
|
3429 |
"output_type": "stream", |
|
|
3430 |
"text": [ |
|
|
3431 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3432 |
] |
|
|
3433 |
}, |
|
|
3434 |
{ |
|
|
3435 |
"name": "stdout", |
|
|
3436 |
"output_type": "stream", |
|
|
3437 |
"text": [ |
|
|
3438 |
"patient_414.npz\n" |
|
|
3439 |
] |
|
|
3440 |
}, |
|
|
3441 |
{ |
|
|
3442 |
"name": "stderr", |
|
|
3443 |
"output_type": "stream", |
|
|
3444 |
"text": [ |
|
|
3445 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3446 |
] |
|
|
3447 |
}, |
|
|
3448 |
{ |
|
|
3449 |
"name": "stdout", |
|
|
3450 |
"output_type": "stream", |
|
|
3451 |
"text": [ |
|
|
3452 |
"patient_416.npz\n" |
|
|
3453 |
] |
|
|
3454 |
}, |
|
|
3455 |
{ |
|
|
3456 |
"name": "stderr", |
|
|
3457 |
"output_type": "stream", |
|
|
3458 |
"text": [ |
|
|
3459 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3460 |
] |
|
|
3461 |
}, |
|
|
3462 |
{ |
|
|
3463 |
"name": "stdout", |
|
|
3464 |
"output_type": "stream", |
|
|
3465 |
"text": [ |
|
|
3466 |
"patient_417.npz\n" |
|
|
3467 |
] |
|
|
3468 |
}, |
|
|
3469 |
{ |
|
|
3470 |
"name": "stderr", |
|
|
3471 |
"output_type": "stream", |
|
|
3472 |
"text": [ |
|
|
3473 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3474 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3475 |
] |
|
|
3476 |
}, |
|
|
3477 |
{ |
|
|
3478 |
"name": "stdout", |
|
|
3479 |
"output_type": "stream", |
|
|
3480 |
"text": [ |
|
|
3481 |
"patient_418.npz\n" |
|
|
3482 |
] |
|
|
3483 |
}, |
|
|
3484 |
{ |
|
|
3485 |
"name": "stderr", |
|
|
3486 |
"output_type": "stream", |
|
|
3487 |
"text": [ |
|
|
3488 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3489 |
] |
|
|
3490 |
}, |
|
|
3491 |
{ |
|
|
3492 |
"name": "stdout", |
|
|
3493 |
"output_type": "stream", |
|
|
3494 |
"text": [ |
|
|
3495 |
"patient_420.npz\n", |
|
|
3496 |
"patient_421.npz\n" |
|
|
3497 |
] |
|
|
3498 |
}, |
|
|
3499 |
{ |
|
|
3500 |
"name": "stderr", |
|
|
3501 |
"output_type": "stream", |
|
|
3502 |
"text": [ |
|
|
3503 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3504 |
] |
|
|
3505 |
}, |
|
|
3506 |
{ |
|
|
3507 |
"name": "stdout", |
|
|
3508 |
"output_type": "stream", |
|
|
3509 |
"text": [ |
|
|
3510 |
"patient_422.npz\n" |
|
|
3511 |
] |
|
|
3512 |
}, |
|
|
3513 |
{ |
|
|
3514 |
"name": "stderr", |
|
|
3515 |
"output_type": "stream", |
|
|
3516 |
"text": [ |
|
|
3517 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3518 |
] |
|
|
3519 |
}, |
|
|
3520 |
{ |
|
|
3521 |
"name": "stdout", |
|
|
3522 |
"output_type": "stream", |
|
|
3523 |
"text": [ |
|
|
3524 |
"patient_423.npz\n" |
|
|
3525 |
] |
|
|
3526 |
}, |
|
|
3527 |
{ |
|
|
3528 |
"name": "stderr", |
|
|
3529 |
"output_type": "stream", |
|
|
3530 |
"text": [ |
|
|
3531 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3532 |
] |
|
|
3533 |
}, |
|
|
3534 |
{ |
|
|
3535 |
"name": "stdout", |
|
|
3536 |
"output_type": "stream", |
|
|
3537 |
"text": [ |
|
|
3538 |
"patient_424.npz\n" |
|
|
3539 |
] |
|
|
3540 |
}, |
|
|
3541 |
{ |
|
|
3542 |
"name": "stderr", |
|
|
3543 |
"output_type": "stream", |
|
|
3544 |
"text": [ |
|
|
3545 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3546 |
] |
|
|
3547 |
} |
|
|
3548 |
], |
|
|
3549 |
"source": [ |
|
|
3550 |
"# Extract features on all images\n", |
|
|
3551 |
"filenames = os.listdir(\"Chal/train_data/images\")\n", |
|
|
3552 |
"\n", |
|
|
3553 |
"features_names = list(result.keys())+[\"patient_number\"]\n", |
|
|
3554 |
"features_list = dict.fromkeys(features_names)\n", |
|
|
3555 |
"for feature in features_names:\n", |
|
|
3556 |
" features_list[feature] = []\n", |
|
|
3557 |
"\n", |
|
|
3558 |
"for file in filenames:\n", |
|
|
3559 |
" if file.split(\".\")[-1]==\"npz\":\n", |
|
|
3560 |
" features_list[\"patient_number\"].append(file.split(\".\")[-2].split(\"_\")[1])\n", |
|
|
3561 |
"\n", |
|
|
3562 |
"for file in filenames:\n", |
|
|
3563 |
" if file.split(\".\")[-1]!=\"npz\":\n", |
|
|
3564 |
" continue\n", |
|
|
3565 |
" \"\"\"if int(file.split(\"_\")[1].split(\".\")[0])==395:\n", |
|
|
3566 |
" for feature in features_names:\n", |
|
|
3567 |
" features_list[feature].append(None)\n", |
|
|
3568 |
" continue\"\"\"\n", |
|
|
3569 |
" scan_path = \"Chal/train_data/images/\"+file.split(\".\")[0]+\"_sikt_scan.nrrd\"\n", |
|
|
3570 |
" mask_path = \"Chal/train_data/images/\"+file.split(\".\")[0]+\"_sikt_mask.nrrd\"\n", |
|
|
3571 |
" if len(np.unique(sitk.GetArrayFromImage(sitk.ReadImage(mask_path))))<2:\n", |
|
|
3572 |
" for feature in features_names:\n", |
|
|
3573 |
" if feature!=\"patient_number\":\n", |
|
|
3574 |
" features_list[feature].append(None)\n", |
|
|
3575 |
" continue\n", |
|
|
3576 |
" print(file)\n", |
|
|
3577 |
" result = extractor.execute(scan_path, mask_path)\n", |
|
|
3578 |
" for key, value in result.items():\n", |
|
|
3579 |
" features_list[key].append(value)" |
|
|
3580 |
] |
|
|
3581 |
}, |
|
|
3582 |
{ |
|
|
3583 |
"cell_type": "code", |
|
|
3584 |
"execution_count": 97, |
|
|
3585 |
"metadata": {}, |
|
|
3586 |
"outputs": [ |
|
|
3587 |
{ |
|
|
3588 |
"name": "stderr", |
|
|
3589 |
"output_type": "stream", |
|
|
3590 |
"text": [ |
|
|
3591 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3592 |
] |
|
|
3593 |
}, |
|
|
3594 |
{ |
|
|
3595 |
"name": "stdout", |
|
|
3596 |
"output_type": "stream", |
|
|
3597 |
"text": [ |
|
|
3598 |
"patient_000.npz\n", |
|
|
3599 |
"patient_001.npz\n" |
|
|
3600 |
] |
|
|
3601 |
}, |
|
|
3602 |
{ |
|
|
3603 |
"name": "stderr", |
|
|
3604 |
"output_type": "stream", |
|
|
3605 |
"text": [ |
|
|
3606 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3607 |
] |
|
|
3608 |
}, |
|
|
3609 |
{ |
|
|
3610 |
"name": "stdout", |
|
|
3611 |
"output_type": "stream", |
|
|
3612 |
"text": [ |
|
|
3613 |
"patient_006.npz\n" |
|
|
3614 |
] |
|
|
3615 |
}, |
|
|
3616 |
{ |
|
|
3617 |
"name": "stderr", |
|
|
3618 |
"output_type": "stream", |
|
|
3619 |
"text": [ |
|
|
3620 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3621 |
] |
|
|
3622 |
}, |
|
|
3623 |
{ |
|
|
3624 |
"name": "stdout", |
|
|
3625 |
"output_type": "stream", |
|
|
3626 |
"text": [ |
|
|
3627 |
"patient_009.npz\n" |
|
|
3628 |
] |
|
|
3629 |
}, |
|
|
3630 |
{ |
|
|
3631 |
"name": "stderr", |
|
|
3632 |
"output_type": "stream", |
|
|
3633 |
"text": [ |
|
|
3634 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3635 |
] |
|
|
3636 |
}, |
|
|
3637 |
{ |
|
|
3638 |
"name": "stdout", |
|
|
3639 |
"output_type": "stream", |
|
|
3640 |
"text": [ |
|
|
3641 |
"patient_010.npz\n" |
|
|
3642 |
] |
|
|
3643 |
}, |
|
|
3644 |
{ |
|
|
3645 |
"name": "stderr", |
|
|
3646 |
"output_type": "stream", |
|
|
3647 |
"text": [ |
|
|
3648 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3649 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3650 |
] |
|
|
3651 |
}, |
|
|
3652 |
{ |
|
|
3653 |
"name": "stdout", |
|
|
3654 |
"output_type": "stream", |
|
|
3655 |
"text": [ |
|
|
3656 |
"patient_012.npz\n", |
|
|
3657 |
"patient_013.npz\n" |
|
|
3658 |
] |
|
|
3659 |
}, |
|
|
3660 |
{ |
|
|
3661 |
"name": "stderr", |
|
|
3662 |
"output_type": "stream", |
|
|
3663 |
"text": [ |
|
|
3664 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3665 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3666 |
] |
|
|
3667 |
}, |
|
|
3668 |
{ |
|
|
3669 |
"name": "stdout", |
|
|
3670 |
"output_type": "stream", |
|
|
3671 |
"text": [ |
|
|
3672 |
"patient_019.npz\n", |
|
|
3673 |
"patient_027.npz\n" |
|
|
3674 |
] |
|
|
3675 |
}, |
|
|
3676 |
{ |
|
|
3677 |
"name": "stderr", |
|
|
3678 |
"output_type": "stream", |
|
|
3679 |
"text": [ |
|
|
3680 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3681 |
] |
|
|
3682 |
}, |
|
|
3683 |
{ |
|
|
3684 |
"name": "stdout", |
|
|
3685 |
"output_type": "stream", |
|
|
3686 |
"text": [ |
|
|
3687 |
"patient_028.npz\n" |
|
|
3688 |
] |
|
|
3689 |
}, |
|
|
3690 |
{ |
|
|
3691 |
"name": "stderr", |
|
|
3692 |
"output_type": "stream", |
|
|
3693 |
"text": [ |
|
|
3694 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3695 |
] |
|
|
3696 |
}, |
|
|
3697 |
{ |
|
|
3698 |
"name": "stdout", |
|
|
3699 |
"output_type": "stream", |
|
|
3700 |
"text": [ |
|
|
3701 |
"patient_034.npz\n" |
|
|
3702 |
] |
|
|
3703 |
}, |
|
|
3704 |
{ |
|
|
3705 |
"name": "stderr", |
|
|
3706 |
"output_type": "stream", |
|
|
3707 |
"text": [ |
|
|
3708 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3709 |
] |
|
|
3710 |
}, |
|
|
3711 |
{ |
|
|
3712 |
"name": "stdout", |
|
|
3713 |
"output_type": "stream", |
|
|
3714 |
"text": [ |
|
|
3715 |
"patient_038.npz\n" |
|
|
3716 |
] |
|
|
3717 |
}, |
|
|
3718 |
{ |
|
|
3719 |
"name": "stderr", |
|
|
3720 |
"output_type": "stream", |
|
|
3721 |
"text": [ |
|
|
3722 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3723 |
] |
|
|
3724 |
}, |
|
|
3725 |
{ |
|
|
3726 |
"name": "stdout", |
|
|
3727 |
"output_type": "stream", |
|
|
3728 |
"text": [ |
|
|
3729 |
"patient_041.npz\n" |
|
|
3730 |
] |
|
|
3731 |
}, |
|
|
3732 |
{ |
|
|
3733 |
"name": "stderr", |
|
|
3734 |
"output_type": "stream", |
|
|
3735 |
"text": [ |
|
|
3736 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3737 |
] |
|
|
3738 |
}, |
|
|
3739 |
{ |
|
|
3740 |
"name": "stdout", |
|
|
3741 |
"output_type": "stream", |
|
|
3742 |
"text": [ |
|
|
3743 |
"patient_046.npz\n" |
|
|
3744 |
] |
|
|
3745 |
}, |
|
|
3746 |
{ |
|
|
3747 |
"name": "stderr", |
|
|
3748 |
"output_type": "stream", |
|
|
3749 |
"text": [ |
|
|
3750 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3751 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3752 |
] |
|
|
3753 |
}, |
|
|
3754 |
{ |
|
|
3755 |
"name": "stdout", |
|
|
3756 |
"output_type": "stream", |
|
|
3757 |
"text": [ |
|
|
3758 |
"patient_049.npz\n", |
|
|
3759 |
"patient_054.npz\n" |
|
|
3760 |
] |
|
|
3761 |
}, |
|
|
3762 |
{ |
|
|
3763 |
"name": "stderr", |
|
|
3764 |
"output_type": "stream", |
|
|
3765 |
"text": [ |
|
|
3766 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3767 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3768 |
] |
|
|
3769 |
}, |
|
|
3770 |
{ |
|
|
3771 |
"name": "stdout", |
|
|
3772 |
"output_type": "stream", |
|
|
3773 |
"text": [ |
|
|
3774 |
"patient_055.npz\n", |
|
|
3775 |
"patient_059.npz\n" |
|
|
3776 |
] |
|
|
3777 |
}, |
|
|
3778 |
{ |
|
|
3779 |
"name": "stderr", |
|
|
3780 |
"output_type": "stream", |
|
|
3781 |
"text": [ |
|
|
3782 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3783 |
] |
|
|
3784 |
}, |
|
|
3785 |
{ |
|
|
3786 |
"name": "stdout", |
|
|
3787 |
"output_type": "stream", |
|
|
3788 |
"text": [ |
|
|
3789 |
"patient_060.npz\n" |
|
|
3790 |
] |
|
|
3791 |
}, |
|
|
3792 |
{ |
|
|
3793 |
"name": "stderr", |
|
|
3794 |
"output_type": "stream", |
|
|
3795 |
"text": [ |
|
|
3796 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3797 |
] |
|
|
3798 |
}, |
|
|
3799 |
{ |
|
|
3800 |
"name": "stdout", |
|
|
3801 |
"output_type": "stream", |
|
|
3802 |
"text": [ |
|
|
3803 |
"patient_062.npz\n" |
|
|
3804 |
] |
|
|
3805 |
}, |
|
|
3806 |
{ |
|
|
3807 |
"name": "stderr", |
|
|
3808 |
"output_type": "stream", |
|
|
3809 |
"text": [ |
|
|
3810 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3811 |
] |
|
|
3812 |
}, |
|
|
3813 |
{ |
|
|
3814 |
"name": "stdout", |
|
|
3815 |
"output_type": "stream", |
|
|
3816 |
"text": [ |
|
|
3817 |
"patient_065.npz\n" |
|
|
3818 |
] |
|
|
3819 |
}, |
|
|
3820 |
{ |
|
|
3821 |
"name": "stderr", |
|
|
3822 |
"output_type": "stream", |
|
|
3823 |
"text": [ |
|
|
3824 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3825 |
] |
|
|
3826 |
}, |
|
|
3827 |
{ |
|
|
3828 |
"name": "stdout", |
|
|
3829 |
"output_type": "stream", |
|
|
3830 |
"text": [ |
|
|
3831 |
"patient_066.npz\n" |
|
|
3832 |
] |
|
|
3833 |
}, |
|
|
3834 |
{ |
|
|
3835 |
"name": "stderr", |
|
|
3836 |
"output_type": "stream", |
|
|
3837 |
"text": [ |
|
|
3838 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3839 |
] |
|
|
3840 |
}, |
|
|
3841 |
{ |
|
|
3842 |
"name": "stdout", |
|
|
3843 |
"output_type": "stream", |
|
|
3844 |
"text": [ |
|
|
3845 |
"patient_071.npz\n" |
|
|
3846 |
] |
|
|
3847 |
}, |
|
|
3848 |
{ |
|
|
3849 |
"name": "stderr", |
|
|
3850 |
"output_type": "stream", |
|
|
3851 |
"text": [ |
|
|
3852 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3853 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3854 |
] |
|
|
3855 |
}, |
|
|
3856 |
{ |
|
|
3857 |
"name": "stdout", |
|
|
3858 |
"output_type": "stream", |
|
|
3859 |
"text": [ |
|
|
3860 |
"patient_074.npz\n", |
|
|
3861 |
"patient_075.npz\n" |
|
|
3862 |
] |
|
|
3863 |
}, |
|
|
3864 |
{ |
|
|
3865 |
"name": "stderr", |
|
|
3866 |
"output_type": "stream", |
|
|
3867 |
"text": [ |
|
|
3868 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3869 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3870 |
] |
|
|
3871 |
}, |
|
|
3872 |
{ |
|
|
3873 |
"name": "stdout", |
|
|
3874 |
"output_type": "stream", |
|
|
3875 |
"text": [ |
|
|
3876 |
"patient_080.npz\n", |
|
|
3877 |
"patient_085.npz\n" |
|
|
3878 |
] |
|
|
3879 |
}, |
|
|
3880 |
{ |
|
|
3881 |
"name": "stderr", |
|
|
3882 |
"output_type": "stream", |
|
|
3883 |
"text": [ |
|
|
3884 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3885 |
] |
|
|
3886 |
}, |
|
|
3887 |
{ |
|
|
3888 |
"name": "stdout", |
|
|
3889 |
"output_type": "stream", |
|
|
3890 |
"text": [ |
|
|
3891 |
"patient_087.npz\n" |
|
|
3892 |
] |
|
|
3893 |
}, |
|
|
3894 |
{ |
|
|
3895 |
"name": "stderr", |
|
|
3896 |
"output_type": "stream", |
|
|
3897 |
"text": [ |
|
|
3898 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3899 |
] |
|
|
3900 |
}, |
|
|
3901 |
{ |
|
|
3902 |
"name": "stdout", |
|
|
3903 |
"output_type": "stream", |
|
|
3904 |
"text": [ |
|
|
3905 |
"patient_097.npz\n" |
|
|
3906 |
] |
|
|
3907 |
}, |
|
|
3908 |
{ |
|
|
3909 |
"name": "stderr", |
|
|
3910 |
"output_type": "stream", |
|
|
3911 |
"text": [ |
|
|
3912 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3913 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3914 |
] |
|
|
3915 |
}, |
|
|
3916 |
{ |
|
|
3917 |
"name": "stdout", |
|
|
3918 |
"output_type": "stream", |
|
|
3919 |
"text": [ |
|
|
3920 |
"patient_099.npz\n" |
|
|
3921 |
] |
|
|
3922 |
}, |
|
|
3923 |
{ |
|
|
3924 |
"name": "stderr", |
|
|
3925 |
"output_type": "stream", |
|
|
3926 |
"text": [ |
|
|
3927 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3928 |
] |
|
|
3929 |
}, |
|
|
3930 |
{ |
|
|
3931 |
"name": "stdout", |
|
|
3932 |
"output_type": "stream", |
|
|
3933 |
"text": [ |
|
|
3934 |
"patient_104.npz\n" |
|
|
3935 |
] |
|
|
3936 |
}, |
|
|
3937 |
{ |
|
|
3938 |
"name": "stderr", |
|
|
3939 |
"output_type": "stream", |
|
|
3940 |
"text": [ |
|
|
3941 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3942 |
] |
|
|
3943 |
}, |
|
|
3944 |
{ |
|
|
3945 |
"name": "stdout", |
|
|
3946 |
"output_type": "stream", |
|
|
3947 |
"text": [ |
|
|
3948 |
"patient_113.npz\n", |
|
|
3949 |
"patient_118.npz\n" |
|
|
3950 |
] |
|
|
3951 |
}, |
|
|
3952 |
{ |
|
|
3953 |
"name": "stderr", |
|
|
3954 |
"output_type": "stream", |
|
|
3955 |
"text": [ |
|
|
3956 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3957 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3958 |
] |
|
|
3959 |
}, |
|
|
3960 |
{ |
|
|
3961 |
"name": "stdout", |
|
|
3962 |
"output_type": "stream", |
|
|
3963 |
"text": [ |
|
|
3964 |
"patient_119.npz\n", |
|
|
3965 |
"patient_120.npz\n" |
|
|
3966 |
] |
|
|
3967 |
}, |
|
|
3968 |
{ |
|
|
3969 |
"name": "stderr", |
|
|
3970 |
"output_type": "stream", |
|
|
3971 |
"text": [ |
|
|
3972 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
3973 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3974 |
] |
|
|
3975 |
}, |
|
|
3976 |
{ |
|
|
3977 |
"name": "stdout", |
|
|
3978 |
"output_type": "stream", |
|
|
3979 |
"text": [ |
|
|
3980 |
"patient_125.npz\n", |
|
|
3981 |
"patient_127.npz\n" |
|
|
3982 |
] |
|
|
3983 |
}, |
|
|
3984 |
{ |
|
|
3985 |
"name": "stderr", |
|
|
3986 |
"output_type": "stream", |
|
|
3987 |
"text": [ |
|
|
3988 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
3989 |
] |
|
|
3990 |
}, |
|
|
3991 |
{ |
|
|
3992 |
"name": "stdout", |
|
|
3993 |
"output_type": "stream", |
|
|
3994 |
"text": [ |
|
|
3995 |
"patient_128.npz\n" |
|
|
3996 |
] |
|
|
3997 |
}, |
|
|
3998 |
{ |
|
|
3999 |
"name": "stderr", |
|
|
4000 |
"output_type": "stream", |
|
|
4001 |
"text": [ |
|
|
4002 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4003 |
] |
|
|
4004 |
}, |
|
|
4005 |
{ |
|
|
4006 |
"name": "stdout", |
|
|
4007 |
"output_type": "stream", |
|
|
4008 |
"text": [ |
|
|
4009 |
"patient_132.npz\n" |
|
|
4010 |
] |
|
|
4011 |
}, |
|
|
4012 |
{ |
|
|
4013 |
"name": "stderr", |
|
|
4014 |
"output_type": "stream", |
|
|
4015 |
"text": [ |
|
|
4016 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4017 |
] |
|
|
4018 |
}, |
|
|
4019 |
{ |
|
|
4020 |
"name": "stdout", |
|
|
4021 |
"output_type": "stream", |
|
|
4022 |
"text": [ |
|
|
4023 |
"patient_136.npz\n" |
|
|
4024 |
] |
|
|
4025 |
}, |
|
|
4026 |
{ |
|
|
4027 |
"name": "stderr", |
|
|
4028 |
"output_type": "stream", |
|
|
4029 |
"text": [ |
|
|
4030 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4031 |
] |
|
|
4032 |
}, |
|
|
4033 |
{ |
|
|
4034 |
"name": "stdout", |
|
|
4035 |
"output_type": "stream", |
|
|
4036 |
"text": [ |
|
|
4037 |
"patient_140.npz\n" |
|
|
4038 |
] |
|
|
4039 |
}, |
|
|
4040 |
{ |
|
|
4041 |
"name": "stderr", |
|
|
4042 |
"output_type": "stream", |
|
|
4043 |
"text": [ |
|
|
4044 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4045 |
] |
|
|
4046 |
}, |
|
|
4047 |
{ |
|
|
4048 |
"name": "stdout", |
|
|
4049 |
"output_type": "stream", |
|
|
4050 |
"text": [ |
|
|
4051 |
"patient_146.npz\n" |
|
|
4052 |
] |
|
|
4053 |
}, |
|
|
4054 |
{ |
|
|
4055 |
"name": "stderr", |
|
|
4056 |
"output_type": "stream", |
|
|
4057 |
"text": [ |
|
|
4058 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4059 |
] |
|
|
4060 |
}, |
|
|
4061 |
{ |
|
|
4062 |
"name": "stdout", |
|
|
4063 |
"output_type": "stream", |
|
|
4064 |
"text": [ |
|
|
4065 |
"patient_153.npz\n" |
|
|
4066 |
] |
|
|
4067 |
}, |
|
|
4068 |
{ |
|
|
4069 |
"name": "stderr", |
|
|
4070 |
"output_type": "stream", |
|
|
4071 |
"text": [ |
|
|
4072 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4073 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4074 |
] |
|
|
4075 |
}, |
|
|
4076 |
{ |
|
|
4077 |
"name": "stdout", |
|
|
4078 |
"output_type": "stream", |
|
|
4079 |
"text": [ |
|
|
4080 |
"patient_155.npz\n", |
|
|
4081 |
"patient_156.npz\n" |
|
|
4082 |
] |
|
|
4083 |
}, |
|
|
4084 |
{ |
|
|
4085 |
"name": "stderr", |
|
|
4086 |
"output_type": "stream", |
|
|
4087 |
"text": [ |
|
|
4088 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4089 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4090 |
] |
|
|
4091 |
}, |
|
|
4092 |
{ |
|
|
4093 |
"name": "stdout", |
|
|
4094 |
"output_type": "stream", |
|
|
4095 |
"text": [ |
|
|
4096 |
"patient_158.npz\n", |
|
|
4097 |
"patient_167.npz\n" |
|
|
4098 |
] |
|
|
4099 |
}, |
|
|
4100 |
{ |
|
|
4101 |
"name": "stderr", |
|
|
4102 |
"output_type": "stream", |
|
|
4103 |
"text": [ |
|
|
4104 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4105 |
] |
|
|
4106 |
}, |
|
|
4107 |
{ |
|
|
4108 |
"name": "stdout", |
|
|
4109 |
"output_type": "stream", |
|
|
4110 |
"text": [ |
|
|
4111 |
"patient_168.npz\n" |
|
|
4112 |
] |
|
|
4113 |
}, |
|
|
4114 |
{ |
|
|
4115 |
"name": "stderr", |
|
|
4116 |
"output_type": "stream", |
|
|
4117 |
"text": [ |
|
|
4118 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4119 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4120 |
] |
|
|
4121 |
}, |
|
|
4122 |
{ |
|
|
4123 |
"name": "stdout", |
|
|
4124 |
"output_type": "stream", |
|
|
4125 |
"text": [ |
|
|
4126 |
"patient_169.npz\n", |
|
|
4127 |
"patient_170.npz\n" |
|
|
4128 |
] |
|
|
4129 |
}, |
|
|
4130 |
{ |
|
|
4131 |
"name": "stderr", |
|
|
4132 |
"output_type": "stream", |
|
|
4133 |
"text": [ |
|
|
4134 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4135 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4136 |
] |
|
|
4137 |
}, |
|
|
4138 |
{ |
|
|
4139 |
"name": "stdout", |
|
|
4140 |
"output_type": "stream", |
|
|
4141 |
"text": [ |
|
|
4142 |
"patient_177.npz\n", |
|
|
4143 |
"patient_179.npz\n" |
|
|
4144 |
] |
|
|
4145 |
}, |
|
|
4146 |
{ |
|
|
4147 |
"name": "stderr", |
|
|
4148 |
"output_type": "stream", |
|
|
4149 |
"text": [ |
|
|
4150 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4151 |
] |
|
|
4152 |
}, |
|
|
4153 |
{ |
|
|
4154 |
"name": "stdout", |
|
|
4155 |
"output_type": "stream", |
|
|
4156 |
"text": [ |
|
|
4157 |
"patient_182.npz\n" |
|
|
4158 |
] |
|
|
4159 |
}, |
|
|
4160 |
{ |
|
|
4161 |
"name": "stderr", |
|
|
4162 |
"output_type": "stream", |
|
|
4163 |
"text": [ |
|
|
4164 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4165 |
] |
|
|
4166 |
}, |
|
|
4167 |
{ |
|
|
4168 |
"name": "stdout", |
|
|
4169 |
"output_type": "stream", |
|
|
4170 |
"text": [ |
|
|
4171 |
"patient_190.npz\n" |
|
|
4172 |
] |
|
|
4173 |
}, |
|
|
4174 |
{ |
|
|
4175 |
"name": "stderr", |
|
|
4176 |
"output_type": "stream", |
|
|
4177 |
"text": [ |
|
|
4178 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4179 |
] |
|
|
4180 |
}, |
|
|
4181 |
{ |
|
|
4182 |
"name": "stdout", |
|
|
4183 |
"output_type": "stream", |
|
|
4184 |
"text": [ |
|
|
4185 |
"patient_191.npz\n" |
|
|
4186 |
] |
|
|
4187 |
}, |
|
|
4188 |
{ |
|
|
4189 |
"name": "stderr", |
|
|
4190 |
"output_type": "stream", |
|
|
4191 |
"text": [ |
|
|
4192 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4193 |
] |
|
|
4194 |
}, |
|
|
4195 |
{ |
|
|
4196 |
"name": "stdout", |
|
|
4197 |
"output_type": "stream", |
|
|
4198 |
"text": [ |
|
|
4199 |
"patient_192.npz\n" |
|
|
4200 |
] |
|
|
4201 |
}, |
|
|
4202 |
{ |
|
|
4203 |
"name": "stderr", |
|
|
4204 |
"output_type": "stream", |
|
|
4205 |
"text": [ |
|
|
4206 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4207 |
] |
|
|
4208 |
}, |
|
|
4209 |
{ |
|
|
4210 |
"name": "stdout", |
|
|
4211 |
"output_type": "stream", |
|
|
4212 |
"text": [ |
|
|
4213 |
"patient_194.npz\n" |
|
|
4214 |
] |
|
|
4215 |
}, |
|
|
4216 |
{ |
|
|
4217 |
"name": "stderr", |
|
|
4218 |
"output_type": "stream", |
|
|
4219 |
"text": [ |
|
|
4220 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4221 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4222 |
] |
|
|
4223 |
}, |
|
|
4224 |
{ |
|
|
4225 |
"name": "stdout", |
|
|
4226 |
"output_type": "stream", |
|
|
4227 |
"text": [ |
|
|
4228 |
"patient_200.npz\n", |
|
|
4229 |
"patient_201.npz\n" |
|
|
4230 |
] |
|
|
4231 |
}, |
|
|
4232 |
{ |
|
|
4233 |
"name": "stderr", |
|
|
4234 |
"output_type": "stream", |
|
|
4235 |
"text": [ |
|
|
4236 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4237 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4238 |
] |
|
|
4239 |
}, |
|
|
4240 |
{ |
|
|
4241 |
"name": "stdout", |
|
|
4242 |
"output_type": "stream", |
|
|
4243 |
"text": [ |
|
|
4244 |
"patient_203.npz\n", |
|
|
4245 |
"patient_205.npz\n" |
|
|
4246 |
] |
|
|
4247 |
}, |
|
|
4248 |
{ |
|
|
4249 |
"name": "stderr", |
|
|
4250 |
"output_type": "stream", |
|
|
4251 |
"text": [ |
|
|
4252 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4253 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4254 |
] |
|
|
4255 |
}, |
|
|
4256 |
{ |
|
|
4257 |
"name": "stdout", |
|
|
4258 |
"output_type": "stream", |
|
|
4259 |
"text": [ |
|
|
4260 |
"patient_206.npz\n", |
|
|
4261 |
"patient_207.npz\n" |
|
|
4262 |
] |
|
|
4263 |
}, |
|
|
4264 |
{ |
|
|
4265 |
"name": "stderr", |
|
|
4266 |
"output_type": "stream", |
|
|
4267 |
"text": [ |
|
|
4268 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4269 |
] |
|
|
4270 |
}, |
|
|
4271 |
{ |
|
|
4272 |
"name": "stdout", |
|
|
4273 |
"output_type": "stream", |
|
|
4274 |
"text": [ |
|
|
4275 |
"patient_215.npz\n" |
|
|
4276 |
] |
|
|
4277 |
}, |
|
|
4278 |
{ |
|
|
4279 |
"name": "stderr", |
|
|
4280 |
"output_type": "stream", |
|
|
4281 |
"text": [ |
|
|
4282 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4283 |
] |
|
|
4284 |
}, |
|
|
4285 |
{ |
|
|
4286 |
"name": "stdout", |
|
|
4287 |
"output_type": "stream", |
|
|
4288 |
"text": [ |
|
|
4289 |
"patient_217.npz\n" |
|
|
4290 |
] |
|
|
4291 |
}, |
|
|
4292 |
{ |
|
|
4293 |
"name": "stderr", |
|
|
4294 |
"output_type": "stream", |
|
|
4295 |
"text": [ |
|
|
4296 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4297 |
] |
|
|
4298 |
}, |
|
|
4299 |
{ |
|
|
4300 |
"name": "stdout", |
|
|
4301 |
"output_type": "stream", |
|
|
4302 |
"text": [ |
|
|
4303 |
"patient_219.npz\n" |
|
|
4304 |
] |
|
|
4305 |
}, |
|
|
4306 |
{ |
|
|
4307 |
"name": "stderr", |
|
|
4308 |
"output_type": "stream", |
|
|
4309 |
"text": [ |
|
|
4310 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4311 |
] |
|
|
4312 |
}, |
|
|
4313 |
{ |
|
|
4314 |
"name": "stdout", |
|
|
4315 |
"output_type": "stream", |
|
|
4316 |
"text": [ |
|
|
4317 |
"patient_220.npz\n" |
|
|
4318 |
] |
|
|
4319 |
}, |
|
|
4320 |
{ |
|
|
4321 |
"name": "stderr", |
|
|
4322 |
"output_type": "stream", |
|
|
4323 |
"text": [ |
|
|
4324 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4325 |
] |
|
|
4326 |
}, |
|
|
4327 |
{ |
|
|
4328 |
"name": "stdout", |
|
|
4329 |
"output_type": "stream", |
|
|
4330 |
"text": [ |
|
|
4331 |
"patient_223.npz\n" |
|
|
4332 |
] |
|
|
4333 |
}, |
|
|
4334 |
{ |
|
|
4335 |
"name": "stderr", |
|
|
4336 |
"output_type": "stream", |
|
|
4337 |
"text": [ |
|
|
4338 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4339 |
] |
|
|
4340 |
}, |
|
|
4341 |
{ |
|
|
4342 |
"name": "stdout", |
|
|
4343 |
"output_type": "stream", |
|
|
4344 |
"text": [ |
|
|
4345 |
"patient_230.npz\n" |
|
|
4346 |
] |
|
|
4347 |
}, |
|
|
4348 |
{ |
|
|
4349 |
"name": "stderr", |
|
|
4350 |
"output_type": "stream", |
|
|
4351 |
"text": [ |
|
|
4352 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4353 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4354 |
] |
|
|
4355 |
}, |
|
|
4356 |
{ |
|
|
4357 |
"name": "stdout", |
|
|
4358 |
"output_type": "stream", |
|
|
4359 |
"text": [ |
|
|
4360 |
"patient_232.npz\n", |
|
|
4361 |
"patient_239.npz\n" |
|
|
4362 |
] |
|
|
4363 |
}, |
|
|
4364 |
{ |
|
|
4365 |
"name": "stderr", |
|
|
4366 |
"output_type": "stream", |
|
|
4367 |
"text": [ |
|
|
4368 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4369 |
] |
|
|
4370 |
}, |
|
|
4371 |
{ |
|
|
4372 |
"name": "stdout", |
|
|
4373 |
"output_type": "stream", |
|
|
4374 |
"text": [ |
|
|
4375 |
"patient_241.npz\n" |
|
|
4376 |
] |
|
|
4377 |
}, |
|
|
4378 |
{ |
|
|
4379 |
"name": "stderr", |
|
|
4380 |
"output_type": "stream", |
|
|
4381 |
"text": [ |
|
|
4382 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4383 |
] |
|
|
4384 |
}, |
|
|
4385 |
{ |
|
|
4386 |
"name": "stdout", |
|
|
4387 |
"output_type": "stream", |
|
|
4388 |
"text": [ |
|
|
4389 |
"patient_243.npz\n" |
|
|
4390 |
] |
|
|
4391 |
}, |
|
|
4392 |
{ |
|
|
4393 |
"name": "stderr", |
|
|
4394 |
"output_type": "stream", |
|
|
4395 |
"text": [ |
|
|
4396 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4397 |
] |
|
|
4398 |
}, |
|
|
4399 |
{ |
|
|
4400 |
"name": "stdout", |
|
|
4401 |
"output_type": "stream", |
|
|
4402 |
"text": [ |
|
|
4403 |
"patient_245.npz\n" |
|
|
4404 |
] |
|
|
4405 |
}, |
|
|
4406 |
{ |
|
|
4407 |
"name": "stderr", |
|
|
4408 |
"output_type": "stream", |
|
|
4409 |
"text": [ |
|
|
4410 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4411 |
] |
|
|
4412 |
}, |
|
|
4413 |
{ |
|
|
4414 |
"name": "stdout", |
|
|
4415 |
"output_type": "stream", |
|
|
4416 |
"text": [ |
|
|
4417 |
"patient_254.npz\n" |
|
|
4418 |
] |
|
|
4419 |
}, |
|
|
4420 |
{ |
|
|
4421 |
"name": "stderr", |
|
|
4422 |
"output_type": "stream", |
|
|
4423 |
"text": [ |
|
|
4424 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4425 |
] |
|
|
4426 |
}, |
|
|
4427 |
{ |
|
|
4428 |
"name": "stdout", |
|
|
4429 |
"output_type": "stream", |
|
|
4430 |
"text": [ |
|
|
4431 |
"patient_260.npz\n" |
|
|
4432 |
] |
|
|
4433 |
}, |
|
|
4434 |
{ |
|
|
4435 |
"name": "stderr", |
|
|
4436 |
"output_type": "stream", |
|
|
4437 |
"text": [ |
|
|
4438 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4439 |
] |
|
|
4440 |
}, |
|
|
4441 |
{ |
|
|
4442 |
"name": "stdout", |
|
|
4443 |
"output_type": "stream", |
|
|
4444 |
"text": [ |
|
|
4445 |
"patient_265.npz\n" |
|
|
4446 |
] |
|
|
4447 |
}, |
|
|
4448 |
{ |
|
|
4449 |
"name": "stderr", |
|
|
4450 |
"output_type": "stream", |
|
|
4451 |
"text": [ |
|
|
4452 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4453 |
] |
|
|
4454 |
}, |
|
|
4455 |
{ |
|
|
4456 |
"name": "stdout", |
|
|
4457 |
"output_type": "stream", |
|
|
4458 |
"text": [ |
|
|
4459 |
"patient_267.npz\n" |
|
|
4460 |
] |
|
|
4461 |
}, |
|
|
4462 |
{ |
|
|
4463 |
"name": "stderr", |
|
|
4464 |
"output_type": "stream", |
|
|
4465 |
"text": [ |
|
|
4466 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4467 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4468 |
] |
|
|
4469 |
}, |
|
|
4470 |
{ |
|
|
4471 |
"name": "stdout", |
|
|
4472 |
"output_type": "stream", |
|
|
4473 |
"text": [ |
|
|
4474 |
"patient_270.npz\n", |
|
|
4475 |
"patient_271.npz\n" |
|
|
4476 |
] |
|
|
4477 |
}, |
|
|
4478 |
{ |
|
|
4479 |
"name": "stderr", |
|
|
4480 |
"output_type": "stream", |
|
|
4481 |
"text": [ |
|
|
4482 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4483 |
] |
|
|
4484 |
}, |
|
|
4485 |
{ |
|
|
4486 |
"name": "stdout", |
|
|
4487 |
"output_type": "stream", |
|
|
4488 |
"text": [ |
|
|
4489 |
"patient_274.npz\n" |
|
|
4490 |
] |
|
|
4491 |
}, |
|
|
4492 |
{ |
|
|
4493 |
"name": "stderr", |
|
|
4494 |
"output_type": "stream", |
|
|
4495 |
"text": [ |
|
|
4496 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4497 |
] |
|
|
4498 |
}, |
|
|
4499 |
{ |
|
|
4500 |
"name": "stdout", |
|
|
4501 |
"output_type": "stream", |
|
|
4502 |
"text": [ |
|
|
4503 |
"patient_278.npz\n" |
|
|
4504 |
] |
|
|
4505 |
}, |
|
|
4506 |
{ |
|
|
4507 |
"name": "stderr", |
|
|
4508 |
"output_type": "stream", |
|
|
4509 |
"text": [ |
|
|
4510 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4511 |
] |
|
|
4512 |
}, |
|
|
4513 |
{ |
|
|
4514 |
"name": "stdout", |
|
|
4515 |
"output_type": "stream", |
|
|
4516 |
"text": [ |
|
|
4517 |
"patient_281.npz\n" |
|
|
4518 |
] |
|
|
4519 |
}, |
|
|
4520 |
{ |
|
|
4521 |
"name": "stderr", |
|
|
4522 |
"output_type": "stream", |
|
|
4523 |
"text": [ |
|
|
4524 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4525 |
] |
|
|
4526 |
}, |
|
|
4527 |
{ |
|
|
4528 |
"name": "stdout", |
|
|
4529 |
"output_type": "stream", |
|
|
4530 |
"text": [ |
|
|
4531 |
"patient_287.npz\n" |
|
|
4532 |
] |
|
|
4533 |
}, |
|
|
4534 |
{ |
|
|
4535 |
"name": "stderr", |
|
|
4536 |
"output_type": "stream", |
|
|
4537 |
"text": [ |
|
|
4538 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4539 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4540 |
] |
|
|
4541 |
}, |
|
|
4542 |
{ |
|
|
4543 |
"name": "stdout", |
|
|
4544 |
"output_type": "stream", |
|
|
4545 |
"text": [ |
|
|
4546 |
"patient_289.npz\n", |
|
|
4547 |
"patient_291.npz\n" |
|
|
4548 |
] |
|
|
4549 |
}, |
|
|
4550 |
{ |
|
|
4551 |
"name": "stderr", |
|
|
4552 |
"output_type": "stream", |
|
|
4553 |
"text": [ |
|
|
4554 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4555 |
] |
|
|
4556 |
}, |
|
|
4557 |
{ |
|
|
4558 |
"name": "stdout", |
|
|
4559 |
"output_type": "stream", |
|
|
4560 |
"text": [ |
|
|
4561 |
"patient_292.npz\n" |
|
|
4562 |
] |
|
|
4563 |
}, |
|
|
4564 |
{ |
|
|
4565 |
"name": "stderr", |
|
|
4566 |
"output_type": "stream", |
|
|
4567 |
"text": [ |
|
|
4568 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4569 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4570 |
] |
|
|
4571 |
}, |
|
|
4572 |
{ |
|
|
4573 |
"name": "stdout", |
|
|
4574 |
"output_type": "stream", |
|
|
4575 |
"text": [ |
|
|
4576 |
"patient_296.npz\n", |
|
|
4577 |
"patient_301.npz\n" |
|
|
4578 |
] |
|
|
4579 |
}, |
|
|
4580 |
{ |
|
|
4581 |
"name": "stderr", |
|
|
4582 |
"output_type": "stream", |
|
|
4583 |
"text": [ |
|
|
4584 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4585 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4586 |
] |
|
|
4587 |
}, |
|
|
4588 |
{ |
|
|
4589 |
"name": "stdout", |
|
|
4590 |
"output_type": "stream", |
|
|
4591 |
"text": [ |
|
|
4592 |
"patient_319.npz\n" |
|
|
4593 |
] |
|
|
4594 |
}, |
|
|
4595 |
{ |
|
|
4596 |
"name": "stderr", |
|
|
4597 |
"output_type": "stream", |
|
|
4598 |
"text": [ |
|
|
4599 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4600 |
] |
|
|
4601 |
}, |
|
|
4602 |
{ |
|
|
4603 |
"name": "stdout", |
|
|
4604 |
"output_type": "stream", |
|
|
4605 |
"text": [ |
|
|
4606 |
"patient_322.npz\n", |
|
|
4607 |
"patient_324.npz\n" |
|
|
4608 |
] |
|
|
4609 |
}, |
|
|
4610 |
{ |
|
|
4611 |
"name": "stderr", |
|
|
4612 |
"output_type": "stream", |
|
|
4613 |
"text": [ |
|
|
4614 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4615 |
] |
|
|
4616 |
}, |
|
|
4617 |
{ |
|
|
4618 |
"name": "stdout", |
|
|
4619 |
"output_type": "stream", |
|
|
4620 |
"text": [ |
|
|
4621 |
"patient_326.npz\n" |
|
|
4622 |
] |
|
|
4623 |
}, |
|
|
4624 |
{ |
|
|
4625 |
"name": "stderr", |
|
|
4626 |
"output_type": "stream", |
|
|
4627 |
"text": [ |
|
|
4628 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4629 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4630 |
] |
|
|
4631 |
}, |
|
|
4632 |
{ |
|
|
4633 |
"name": "stdout", |
|
|
4634 |
"output_type": "stream", |
|
|
4635 |
"text": [ |
|
|
4636 |
"patient_332.npz\n" |
|
|
4637 |
] |
|
|
4638 |
}, |
|
|
4639 |
{ |
|
|
4640 |
"name": "stderr", |
|
|
4641 |
"output_type": "stream", |
|
|
4642 |
"text": [ |
|
|
4643 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4644 |
] |
|
|
4645 |
}, |
|
|
4646 |
{ |
|
|
4647 |
"name": "stdout", |
|
|
4648 |
"output_type": "stream", |
|
|
4649 |
"text": [ |
|
|
4650 |
"patient_337.npz\n", |
|
|
4651 |
"patient_339.npz\n" |
|
|
4652 |
] |
|
|
4653 |
}, |
|
|
4654 |
{ |
|
|
4655 |
"name": "stderr", |
|
|
4656 |
"output_type": "stream", |
|
|
4657 |
"text": [ |
|
|
4658 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4659 |
] |
|
|
4660 |
}, |
|
|
4661 |
{ |
|
|
4662 |
"name": "stdout", |
|
|
4663 |
"output_type": "stream", |
|
|
4664 |
"text": [ |
|
|
4665 |
"patient_342.npz\n" |
|
|
4666 |
] |
|
|
4667 |
}, |
|
|
4668 |
{ |
|
|
4669 |
"name": "stderr", |
|
|
4670 |
"output_type": "stream", |
|
|
4671 |
"text": [ |
|
|
4672 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4673 |
] |
|
|
4674 |
}, |
|
|
4675 |
{ |
|
|
4676 |
"name": "stdout", |
|
|
4677 |
"output_type": "stream", |
|
|
4678 |
"text": [ |
|
|
4679 |
"patient_344.npz\n" |
|
|
4680 |
] |
|
|
4681 |
}, |
|
|
4682 |
{ |
|
|
4683 |
"name": "stderr", |
|
|
4684 |
"output_type": "stream", |
|
|
4685 |
"text": [ |
|
|
4686 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4687 |
] |
|
|
4688 |
}, |
|
|
4689 |
{ |
|
|
4690 |
"name": "stdout", |
|
|
4691 |
"output_type": "stream", |
|
|
4692 |
"text": [ |
|
|
4693 |
"patient_351.npz\n" |
|
|
4694 |
] |
|
|
4695 |
}, |
|
|
4696 |
{ |
|
|
4697 |
"name": "stderr", |
|
|
4698 |
"output_type": "stream", |
|
|
4699 |
"text": [ |
|
|
4700 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4701 |
] |
|
|
4702 |
}, |
|
|
4703 |
{ |
|
|
4704 |
"name": "stdout", |
|
|
4705 |
"output_type": "stream", |
|
|
4706 |
"text": [ |
|
|
4707 |
"patient_352.npz\n" |
|
|
4708 |
] |
|
|
4709 |
}, |
|
|
4710 |
{ |
|
|
4711 |
"name": "stderr", |
|
|
4712 |
"output_type": "stream", |
|
|
4713 |
"text": [ |
|
|
4714 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4715 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4716 |
] |
|
|
4717 |
}, |
|
|
4718 |
{ |
|
|
4719 |
"name": "stdout", |
|
|
4720 |
"output_type": "stream", |
|
|
4721 |
"text": [ |
|
|
4722 |
"patient_360.npz\n", |
|
|
4723 |
"patient_363.npz\n" |
|
|
4724 |
] |
|
|
4725 |
}, |
|
|
4726 |
{ |
|
|
4727 |
"name": "stderr", |
|
|
4728 |
"output_type": "stream", |
|
|
4729 |
"text": [ |
|
|
4730 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4731 |
] |
|
|
4732 |
}, |
|
|
4733 |
{ |
|
|
4734 |
"name": "stdout", |
|
|
4735 |
"output_type": "stream", |
|
|
4736 |
"text": [ |
|
|
4737 |
"patient_364.npz\n" |
|
|
4738 |
] |
|
|
4739 |
}, |
|
|
4740 |
{ |
|
|
4741 |
"name": "stderr", |
|
|
4742 |
"output_type": "stream", |
|
|
4743 |
"text": [ |
|
|
4744 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4745 |
] |
|
|
4746 |
}, |
|
|
4747 |
{ |
|
|
4748 |
"name": "stdout", |
|
|
4749 |
"output_type": "stream", |
|
|
4750 |
"text": [ |
|
|
4751 |
"patient_369.npz\n" |
|
|
4752 |
] |
|
|
4753 |
}, |
|
|
4754 |
{ |
|
|
4755 |
"name": "stderr", |
|
|
4756 |
"output_type": "stream", |
|
|
4757 |
"text": [ |
|
|
4758 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4759 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4760 |
] |
|
|
4761 |
}, |
|
|
4762 |
{ |
|
|
4763 |
"name": "stdout", |
|
|
4764 |
"output_type": "stream", |
|
|
4765 |
"text": [ |
|
|
4766 |
"patient_370.npz\n", |
|
|
4767 |
"patient_374.npz\n" |
|
|
4768 |
] |
|
|
4769 |
}, |
|
|
4770 |
{ |
|
|
4771 |
"name": "stderr", |
|
|
4772 |
"output_type": "stream", |
|
|
4773 |
"text": [ |
|
|
4774 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4775 |
] |
|
|
4776 |
}, |
|
|
4777 |
{ |
|
|
4778 |
"name": "stdout", |
|
|
4779 |
"output_type": "stream", |
|
|
4780 |
"text": [ |
|
|
4781 |
"patient_377.npz\n" |
|
|
4782 |
] |
|
|
4783 |
}, |
|
|
4784 |
{ |
|
|
4785 |
"name": "stderr", |
|
|
4786 |
"output_type": "stream", |
|
|
4787 |
"text": [ |
|
|
4788 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4789 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4790 |
] |
|
|
4791 |
}, |
|
|
4792 |
{ |
|
|
4793 |
"name": "stdout", |
|
|
4794 |
"output_type": "stream", |
|
|
4795 |
"text": [ |
|
|
4796 |
"patient_379.npz\n", |
|
|
4797 |
"patient_387.npz\n" |
|
|
4798 |
] |
|
|
4799 |
}, |
|
|
4800 |
{ |
|
|
4801 |
"name": "stderr", |
|
|
4802 |
"output_type": "stream", |
|
|
4803 |
"text": [ |
|
|
4804 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4805 |
] |
|
|
4806 |
}, |
|
|
4807 |
{ |
|
|
4808 |
"name": "stdout", |
|
|
4809 |
"output_type": "stream", |
|
|
4810 |
"text": [ |
|
|
4811 |
"patient_398.npz\n" |
|
|
4812 |
] |
|
|
4813 |
}, |
|
|
4814 |
{ |
|
|
4815 |
"name": "stderr", |
|
|
4816 |
"output_type": "stream", |
|
|
4817 |
"text": [ |
|
|
4818 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4819 |
] |
|
|
4820 |
}, |
|
|
4821 |
{ |
|
|
4822 |
"name": "stdout", |
|
|
4823 |
"output_type": "stream", |
|
|
4824 |
"text": [ |
|
|
4825 |
"patient_405.npz\n" |
|
|
4826 |
] |
|
|
4827 |
}, |
|
|
4828 |
{ |
|
|
4829 |
"name": "stderr", |
|
|
4830 |
"output_type": "stream", |
|
|
4831 |
"text": [ |
|
|
4832 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4833 |
] |
|
|
4834 |
}, |
|
|
4835 |
{ |
|
|
4836 |
"name": "stdout", |
|
|
4837 |
"output_type": "stream", |
|
|
4838 |
"text": [ |
|
|
4839 |
"patient_407.npz\n" |
|
|
4840 |
] |
|
|
4841 |
}, |
|
|
4842 |
{ |
|
|
4843 |
"name": "stderr", |
|
|
4844 |
"output_type": "stream", |
|
|
4845 |
"text": [ |
|
|
4846 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4847 |
] |
|
|
4848 |
}, |
|
|
4849 |
{ |
|
|
4850 |
"name": "stdout", |
|
|
4851 |
"output_type": "stream", |
|
|
4852 |
"text": [ |
|
|
4853 |
"patient_408.npz\n" |
|
|
4854 |
] |
|
|
4855 |
}, |
|
|
4856 |
{ |
|
|
4857 |
"name": "stderr", |
|
|
4858 |
"output_type": "stream", |
|
|
4859 |
"text": [ |
|
|
4860 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4861 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4862 |
] |
|
|
4863 |
}, |
|
|
4864 |
{ |
|
|
4865 |
"name": "stdout", |
|
|
4866 |
"output_type": "stream", |
|
|
4867 |
"text": [ |
|
|
4868 |
"patient_410.npz\n" |
|
|
4869 |
] |
|
|
4870 |
}, |
|
|
4871 |
{ |
|
|
4872 |
"name": "stderr", |
|
|
4873 |
"output_type": "stream", |
|
|
4874 |
"text": [ |
|
|
4875 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4876 |
] |
|
|
4877 |
}, |
|
|
4878 |
{ |
|
|
4879 |
"name": "stdout", |
|
|
4880 |
"output_type": "stream", |
|
|
4881 |
"text": [ |
|
|
4882 |
"patient_411.npz\n" |
|
|
4883 |
] |
|
|
4884 |
}, |
|
|
4885 |
{ |
|
|
4886 |
"name": "stderr", |
|
|
4887 |
"output_type": "stream", |
|
|
4888 |
"text": [ |
|
|
4889 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4890 |
] |
|
|
4891 |
}, |
|
|
4892 |
{ |
|
|
4893 |
"name": "stdout", |
|
|
4894 |
"output_type": "stream", |
|
|
4895 |
"text": [ |
|
|
4896 |
"patient_412.npz\n", |
|
|
4897 |
"patient_413.npz\n" |
|
|
4898 |
] |
|
|
4899 |
}, |
|
|
4900 |
{ |
|
|
4901 |
"name": "stderr", |
|
|
4902 |
"output_type": "stream", |
|
|
4903 |
"text": [ |
|
|
4904 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4905 |
] |
|
|
4906 |
}, |
|
|
4907 |
{ |
|
|
4908 |
"name": "stdout", |
|
|
4909 |
"output_type": "stream", |
|
|
4910 |
"text": [ |
|
|
4911 |
"patient_415.npz\n" |
|
|
4912 |
] |
|
|
4913 |
}, |
|
|
4914 |
{ |
|
|
4915 |
"name": "stderr", |
|
|
4916 |
"output_type": "stream", |
|
|
4917 |
"text": [ |
|
|
4918 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n", |
|
|
4919 |
"GLCM is symmetrical, therefore Sum Average = 2 * Joint Average, only 1 needs to be calculated\n" |
|
|
4920 |
] |
|
|
4921 |
}, |
|
|
4922 |
{ |
|
|
4923 |
"name": "stdout", |
|
|
4924 |
"output_type": "stream", |
|
|
4925 |
"text": [ |
|
|
4926 |
"patient_419.npz\n" |
|
|
4927 |
] |
|
|
4928 |
} |
|
|
4929 |
], |
|
|
4930 |
"source": [ |
|
|
4931 |
"# Extract features on all images\n", |
|
|
4932 |
"filenames = os.listdir(\"Chal/test_data/images\")\n", |
|
|
4933 |
"\n", |
|
|
4934 |
"features_names = list(result.keys())+[\"patient_number\"]\n", |
|
|
4935 |
"features_list = dict.fromkeys(features_names)\n", |
|
|
4936 |
"for feature in features_names:\n", |
|
|
4937 |
" features_list[feature] = []\n", |
|
|
4938 |
"\n", |
|
|
4939 |
"for file in filenames:\n", |
|
|
4940 |
" if file.split(\".\")[-1]==\"npz\":\n", |
|
|
4941 |
" features_list[\"patient_number\"].append(file.split(\".\")[-2].split(\"_\")[1])\n", |
|
|
4942 |
"\n", |
|
|
4943 |
"for file in filenames:\n", |
|
|
4944 |
" if file.split(\".\")[-1]!=\"npz\":\n", |
|
|
4945 |
" continue\n", |
|
|
4946 |
" scan_path = \"Chal/test_data/images/\"+file.split(\".\")[0]+\"_sikt_scan.nrrd\"\n", |
|
|
4947 |
" mask_path = \"Chal/test_data/images/\"+file.split(\".\")[0]+\"_sikt_mask.nrrd\"\n", |
|
|
4948 |
" if len(np.unique(sitk.GetArrayFromImage(sitk.ReadImage(mask_path))))<2:\n", |
|
|
4949 |
" for feature in features_names:\n", |
|
|
4950 |
" if feature!=\"patient_number\":\n", |
|
|
4951 |
" features_list[feature].append(None)\n", |
|
|
4952 |
" continue\n", |
|
|
4953 |
" print(file)\n", |
|
|
4954 |
" result = extractor.execute(scan_path, mask_path)\n", |
|
|
4955 |
" for key, value in result.items():\n", |
|
|
4956 |
" features_list[key].append(value)" |
|
|
4957 |
] |
|
|
4958 |
}, |
|
|
4959 |
{ |
|
|
4960 |
"cell_type": "code", |
|
|
4961 |
"execution_count": 50, |
|
|
4962 |
"metadata": {}, |
|
|
4963 |
"outputs": [], |
|
|
4964 |
"source": [ |
|
|
4965 |
"# Useless\n", |
|
|
4966 |
"rows = []\n", |
|
|
4967 |
"for i in features_names:\n", |
|
|
4968 |
" while \"diagnostics\"\n", |
|
|
4969 |
"rows.append(features_names)\n", |
|
|
4970 |
"for key, value in features_list.items():\n", |
|
|
4971 |
" rows.append(value)" |
|
|
4972 |
] |
|
|
4973 |
}, |
|
|
4974 |
{ |
|
|
4975 |
"cell_type": "code", |
|
|
4976 |
"execution_count": 92, |
|
|
4977 |
"metadata": {}, |
|
|
4978 |
"outputs": [], |
|
|
4979 |
"source": [ |
|
|
4980 |
"# Save Features\n", |
|
|
4981 |
"df = pd.DataFrame(data=features_list)\n", |
|
|
4982 |
"df.to_csv(\"extracted_features.csv\", sep=',',index=False)" |
|
|
4983 |
] |
|
|
4984 |
}, |
|
|
4985 |
{ |
|
|
4986 |
"cell_type": "code", |
|
|
4987 |
"execution_count": 98, |
|
|
4988 |
"metadata": {}, |
|
|
4989 |
"outputs": [], |
|
|
4990 |
"source": [ |
|
|
4991 |
"# Save Features\n", |
|
|
4992 |
"df = pd.DataFrame(data=features_list)\n", |
|
|
4993 |
"df.to_csv(\"test_extracted_features.csv\", sep=',',index=False)" |
|
|
4994 |
] |
|
|
4995 |
}, |
|
|
4996 |
{ |
|
|
4997 |
"cell_type": "code", |
|
|
4998 |
"execution_count": 93, |
|
|
4999 |
"metadata": {}, |
|
|
5000 |
"outputs": [ |
|
|
5001 |
{ |
|
|
5002 |
"data": { |
|
|
5003 |
"text/html": [ |
|
|
5004 |
"<div>\n", |
|
|
5005 |
"<style scoped>\n", |
|
|
5006 |
" .dataframe tbody tr th:only-of-type {\n", |
|
|
5007 |
" vertical-align: middle;\n", |
|
|
5008 |
" }\n", |
|
|
5009 |
"\n", |
|
|
5010 |
" .dataframe tbody tr th {\n", |
|
|
5011 |
" vertical-align: top;\n", |
|
|
5012 |
" }\n", |
|
|
5013 |
"\n", |
|
|
5014 |
" .dataframe thead th {\n", |
|
|
5015 |
" text-align: right;\n", |
|
|
5016 |
" }\n", |
|
|
5017 |
"</style>\n", |
|
|
5018 |
"<table border=\"1\" class=\"dataframe\">\n", |
|
|
5019 |
" <thead>\n", |
|
|
5020 |
" <tr style=\"text-align: right;\">\n", |
|
|
5021 |
" <th></th>\n", |
|
|
5022 |
" <th>diagnostics_Versions_PyRadiomics</th>\n", |
|
|
5023 |
" <th>diagnostics_Versions_Numpy</th>\n", |
|
|
5024 |
" <th>diagnostics_Versions_SimpleITK</th>\n", |
|
|
5025 |
" <th>diagnostics_Versions_PyWavelet</th>\n", |
|
|
5026 |
" <th>diagnostics_Versions_Python</th>\n", |
|
|
5027 |
" <th>diagnostics_Configuration_Settings</th>\n", |
|
|
5028 |
" <th>diagnostics_Configuration_EnabledImageTypes</th>\n", |
|
|
5029 |
" <th>diagnostics_Image-original_Hash</th>\n", |
|
|
5030 |
" <th>diagnostics_Image-original_Dimensionality</th>\n", |
|
|
5031 |
" <th>diagnostics_Image-original_Spacing</th>\n", |
|
|
5032 |
" <th>...</th>\n", |
|
|
5033 |
" <th>original_glszm_SmallAreaLowGrayLevelEmphasis</th>\n", |
|
|
5034 |
" <th>original_glszm_ZoneEntropy</th>\n", |
|
|
5035 |
" <th>original_glszm_ZonePercentage</th>\n", |
|
|
5036 |
" <th>original_glszm_ZoneVariance</th>\n", |
|
|
5037 |
" <th>original_ngtdm_Busyness</th>\n", |
|
|
5038 |
" <th>original_ngtdm_Coarseness</th>\n", |
|
|
5039 |
" <th>original_ngtdm_Complexity</th>\n", |
|
|
5040 |
" <th>original_ngtdm_Contrast</th>\n", |
|
|
5041 |
" <th>original_ngtdm_Strength</th>\n", |
|
|
5042 |
" <th>patient_number</th>\n", |
|
|
5043 |
" </tr>\n", |
|
|
5044 |
" </thead>\n", |
|
|
5045 |
" <tbody>\n", |
|
|
5046 |
" <tr>\n", |
|
|
5047 |
" <th>0</th>\n", |
|
|
5048 |
" <td>2.2.0</td>\n", |
|
|
5049 |
" <td>1.17.4</td>\n", |
|
|
5050 |
" <td>1.2.4</td>\n", |
|
|
5051 |
" <td>0.5.2</td>\n", |
|
|
5052 |
" <td>3.6.5</td>\n", |
|
|
5053 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5054 |
" <td>{'Original': {}}</td>\n", |
|
|
5055 |
" <td>12594f333e663f725eafbb011efb36cc28ef09ea</td>\n", |
|
|
5056 |
" <td>3D</td>\n", |
|
|
5057 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5058 |
" <td>...</td>\n", |
|
|
5059 |
" <td>0.0014159294924583742</td>\n", |
|
|
5060 |
" <td>7.440152780881469</td>\n", |
|
|
5061 |
" <td>0.05065013935430697</td>\n", |
|
|
5062 |
" <td>811080.0103191268</td>\n", |
|
|
5063 |
" <td>4.638003576181803</td>\n", |
|
|
5064 |
" <td>5.446082904968082e-05</td>\n", |
|
|
5065 |
" <td>1208.990130928983</td>\n", |
|
|
5066 |
" <td>0.004242342429635777</td>\n", |
|
|
5067 |
" <td>0.3528600071678195</td>\n", |
|
|
5068 |
" <td>002</td>\n", |
|
|
5069 |
" </tr>\n", |
|
|
5070 |
" <tr>\n", |
|
|
5071 |
" <th>1</th>\n", |
|
|
5072 |
" <td>None</td>\n", |
|
|
5073 |
" <td>None</td>\n", |
|
|
5074 |
" <td>None</td>\n", |
|
|
5075 |
" <td>None</td>\n", |
|
|
5076 |
" <td>None</td>\n", |
|
|
5077 |
" <td>None</td>\n", |
|
|
5078 |
" <td>None</td>\n", |
|
|
5079 |
" <td>None</td>\n", |
|
|
5080 |
" <td>None</td>\n", |
|
|
5081 |
" <td>None</td>\n", |
|
|
5082 |
" <td>...</td>\n", |
|
|
5083 |
" <td>None</td>\n", |
|
|
5084 |
" <td>None</td>\n", |
|
|
5085 |
" <td>None</td>\n", |
|
|
5086 |
" <td>None</td>\n", |
|
|
5087 |
" <td>None</td>\n", |
|
|
5088 |
" <td>None</td>\n", |
|
|
5089 |
" <td>None</td>\n", |
|
|
5090 |
" <td>None</td>\n", |
|
|
5091 |
" <td>None</td>\n", |
|
|
5092 |
" <td>003</td>\n", |
|
|
5093 |
" </tr>\n", |
|
|
5094 |
" <tr>\n", |
|
|
5095 |
" <th>2</th>\n", |
|
|
5096 |
" <td>2.2.0</td>\n", |
|
|
5097 |
" <td>1.17.4</td>\n", |
|
|
5098 |
" <td>1.2.4</td>\n", |
|
|
5099 |
" <td>0.5.2</td>\n", |
|
|
5100 |
" <td>3.6.5</td>\n", |
|
|
5101 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5102 |
" <td>{'Original': {}}</td>\n", |
|
|
5103 |
" <td>793be327098729932754ab0c539a10d3be8007c0</td>\n", |
|
|
5104 |
" <td>3D</td>\n", |
|
|
5105 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5106 |
" <td>...</td>\n", |
|
|
5107 |
" <td>0.0011823588904757247</td>\n", |
|
|
5108 |
" <td>8.05320738907593</td>\n", |
|
|
5109 |
" <td>0.12583400659035412</td>\n", |
|
|
5110 |
" <td>43542.93247932123</td>\n", |
|
|
5111 |
" <td>1.2453260036682692</td>\n", |
|
|
5112 |
" <td>0.000216962582959674</td>\n", |
|
|
5113 |
" <td>2124.6732991252165</td>\n", |
|
|
5114 |
" <td>0.029745506287594543</td>\n", |
|
|
5115 |
" <td>0.593370980923771</td>\n", |
|
|
5116 |
" <td>004</td>\n", |
|
|
5117 |
" </tr>\n", |
|
|
5118 |
" <tr>\n", |
|
|
5119 |
" <th>3</th>\n", |
|
|
5120 |
" <td>2.2.0</td>\n", |
|
|
5121 |
" <td>1.17.4</td>\n", |
|
|
5122 |
" <td>1.2.4</td>\n", |
|
|
5123 |
" <td>0.5.2</td>\n", |
|
|
5124 |
" <td>3.6.5</td>\n", |
|
|
5125 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5126 |
" <td>{'Original': {}}</td>\n", |
|
|
5127 |
" <td>5728d2537b555bb664252698dc1a51694866b4f4</td>\n", |
|
|
5128 |
" <td>3D</td>\n", |
|
|
5129 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5130 |
" <td>...</td>\n", |
|
|
5131 |
" <td>0.006010770464847511</td>\n", |
|
|
5132 |
" <td>6.445624212509823</td>\n", |
|
|
5133 |
" <td>0.03442424242424243</td>\n", |
|
|
5134 |
" <td>78052.2017952787</td>\n", |
|
|
5135 |
" <td>0.3192361746468855</td>\n", |
|
|
5136 |
" <td>0.0011584858008878434</td>\n", |
|
|
5137 |
" <td>493.9439694152586</td>\n", |
|
|
5138 |
" <td>0.004182293302986566</td>\n", |
|
|
5139 |
" <td>7.9263924028377275</td>\n", |
|
|
5140 |
" <td>005</td>\n", |
|
|
5141 |
" </tr>\n", |
|
|
5142 |
" <tr>\n", |
|
|
5143 |
" <th>4</th>\n", |
|
|
5144 |
" <td>2.2.0</td>\n", |
|
|
5145 |
" <td>1.17.4</td>\n", |
|
|
5146 |
" <td>1.2.4</td>\n", |
|
|
5147 |
" <td>0.5.2</td>\n", |
|
|
5148 |
" <td>3.6.5</td>\n", |
|
|
5149 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5150 |
" <td>{'Original': {}}</td>\n", |
|
|
5151 |
" <td>9f1b576cfc98ab355c1ac62a08abd4f84c89be21</td>\n", |
|
|
5152 |
" <td>3D</td>\n", |
|
|
5153 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5154 |
" <td>...</td>\n", |
|
|
5155 |
" <td>0.0010591164492006718</td>\n", |
|
|
5156 |
" <td>7.968079701923623</td>\n", |
|
|
5157 |
" <td>0.05924262819164598</td>\n", |
|
|
5158 |
" <td>611132.025210262</td>\n", |
|
|
5159 |
" <td>3.6014025715567675</td>\n", |
|
|
5160 |
" <td>5.676665846302051e-05</td>\n", |
|
|
5161 |
" <td>1723.9199416906906</td>\n", |
|
|
5162 |
" <td>0.009181368148031591</td>\n", |
|
|
5163 |
" <td>0.5111257271308385</td>\n", |
|
|
5164 |
" <td>007</td>\n", |
|
|
5165 |
" </tr>\n", |
|
|
5166 |
" <tr>\n", |
|
|
5167 |
" <th>5</th>\n", |
|
|
5168 |
" <td>2.2.0</td>\n", |
|
|
5169 |
" <td>1.17.4</td>\n", |
|
|
5170 |
" <td>1.2.4</td>\n", |
|
|
5171 |
" <td>0.5.2</td>\n", |
|
|
5172 |
" <td>3.6.5</td>\n", |
|
|
5173 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5174 |
" <td>{'Original': {}}</td>\n", |
|
|
5175 |
" <td>6d505a43db6064df0112884d2876f6e83e97804c</td>\n", |
|
|
5176 |
" <td>3D</td>\n", |
|
|
5177 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5178 |
" <td>...</td>\n", |
|
|
5179 |
" <td>0.002603921296331485</td>\n", |
|
|
5180 |
" <td>6.902112459727654</td>\n", |
|
|
5181 |
" <td>0.3567645642753972</td>\n", |
|
|
5182 |
" <td>297.2954117880604</td>\n", |
|
|
5183 |
" <td>0.29144824075065945</td>\n", |
|
|
5184 |
" <td>0.002476095943858015</td>\n", |
|
|
5185 |
" <td>1625.667447850248</td>\n", |
|
|
5186 |
" <td>0.23602064618873433</td>\n", |
|
|
5187 |
" <td>2.0443356629047984</td>\n", |
|
|
5188 |
" <td>008</td>\n", |
|
|
5189 |
" </tr>\n", |
|
|
5190 |
" <tr>\n", |
|
|
5191 |
" <th>6</th>\n", |
|
|
5192 |
" <td>2.2.0</td>\n", |
|
|
5193 |
" <td>1.17.4</td>\n", |
|
|
5194 |
" <td>1.2.4</td>\n", |
|
|
5195 |
" <td>0.5.2</td>\n", |
|
|
5196 |
" <td>3.6.5</td>\n", |
|
|
5197 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5198 |
" <td>{'Original': {}}</td>\n", |
|
|
5199 |
" <td>e73b20e78dcb299acfe3ccdb16915e5da5e64e8b</td>\n", |
|
|
5200 |
" <td>3D</td>\n", |
|
|
5201 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5202 |
" <td>...</td>\n", |
|
|
5203 |
" <td>0.006495320016546854</td>\n", |
|
|
5204 |
" <td>5.951022804375938</td>\n", |
|
|
5205 |
" <td>0.36528028933092227</td>\n", |
|
|
5206 |
" <td>156.28264385844525</td>\n", |
|
|
5207 |
" <td>0.09501105398887026</td>\n", |
|
|
5208 |
" <td>0.007916250096069312</td>\n", |
|
|
5209 |
" <td>1518.545746076143</td>\n", |
|
|
5210 |
" <td>0.18237875682701976</td>\n", |
|
|
5211 |
" <td>5.4164580535629065</td>\n", |
|
|
5212 |
" <td>011</td>\n", |
|
|
5213 |
" </tr>\n", |
|
|
5214 |
" <tr>\n", |
|
|
5215 |
" <th>7</th>\n", |
|
|
5216 |
" <td>2.2.0</td>\n", |
|
|
5217 |
" <td>1.17.4</td>\n", |
|
|
5218 |
" <td>1.2.4</td>\n", |
|
|
5219 |
" <td>0.5.2</td>\n", |
|
|
5220 |
" <td>3.6.5</td>\n", |
|
|
5221 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5222 |
" <td>{'Original': {}}</td>\n", |
|
|
5223 |
" <td>51a099ec121e376fb2ac8cd6c124e5022cb3a8e8</td>\n", |
|
|
5224 |
" <td>3D</td>\n", |
|
|
5225 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5226 |
" <td>...</td>\n", |
|
|
5227 |
" <td>0.0024816657630558495</td>\n", |
|
|
5228 |
" <td>7.187488219746435</td>\n", |
|
|
5229 |
" <td>0.22692146021275908</td>\n", |
|
|
5230 |
" <td>12552.147271933809</td>\n", |
|
|
5231 |
" <td>0.718215089001439</td>\n", |
|
|
5232 |
" <td>0.0005338474193486882</td>\n", |
|
|
5233 |
" <td>1647.829002575773</td>\n", |
|
|
5234 |
" <td>0.15172573955141086</td>\n", |
|
|
5235 |
" <td>0.9576135144010168</td>\n", |
|
|
5236 |
" <td>014</td>\n", |
|
|
5237 |
" </tr>\n", |
|
|
5238 |
" <tr>\n", |
|
|
5239 |
" <th>8</th>\n", |
|
|
5240 |
" <td>2.2.0</td>\n", |
|
|
5241 |
" <td>1.17.4</td>\n", |
|
|
5242 |
" <td>1.2.4</td>\n", |
|
|
5243 |
" <td>0.5.2</td>\n", |
|
|
5244 |
" <td>3.6.5</td>\n", |
|
|
5245 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5246 |
" <td>{'Original': {}}</td>\n", |
|
|
5247 |
" <td>a006099e256744eedd9278354a398b33c134a07e</td>\n", |
|
|
5248 |
" <td>3D</td>\n", |
|
|
5249 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5250 |
" <td>...</td>\n", |
|
|
5251 |
" <td>0.002710463401557397</td>\n", |
|
|
5252 |
" <td>7.163170755024512</td>\n", |
|
|
5253 |
" <td>0.06724826260535266</td>\n", |
|
|
5254 |
" <td>210087.6836985185</td>\n", |
|
|
5255 |
" <td>3.411742942537483</td>\n", |
|
|
5256 |
" <td>0.00014734084864731234</td>\n", |
|
|
5257 |
" <td>571.386299734884</td>\n", |
|
|
5258 |
" <td>0.019888263426672353</td>\n", |
|
|
5259 |
" <td>0.39281939193215354</td>\n", |
|
|
5260 |
" <td>015</td>\n", |
|
|
5261 |
" </tr>\n", |
|
|
5262 |
" <tr>\n", |
|
|
5263 |
" <th>9</th>\n", |
|
|
5264 |
" <td>2.2.0</td>\n", |
|
|
5265 |
" <td>1.17.4</td>\n", |
|
|
5266 |
" <td>1.2.4</td>\n", |
|
|
5267 |
" <td>0.5.2</td>\n", |
|
|
5268 |
" <td>3.6.5</td>\n", |
|
|
5269 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5270 |
" <td>{'Original': {}}</td>\n", |
|
|
5271 |
" <td>767e22198388ac93a9db95e0dfd9b3fa7e14f685</td>\n", |
|
|
5272 |
" <td>3D</td>\n", |
|
|
5273 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5274 |
" <td>...</td>\n", |
|
|
5275 |
" <td>0.0011997397769629755</td>\n", |
|
|
5276 |
" <td>7.300068195325571</td>\n", |
|
|
5277 |
" <td>0.02935379145087733</td>\n", |
|
|
5278 |
" <td>686026.4747536255</td>\n", |
|
|
5279 |
" <td>3.568586114684688</td>\n", |
|
|
5280 |
" <td>9.763512851495345e-05</td>\n", |
|
|
5281 |
" <td>684.5476765671239</td>\n", |
|
|
5282 |
" <td>0.004234913657332878</td>\n", |
|
|
5283 |
" <td>0.5179838137907027</td>\n", |
|
|
5284 |
" <td>016</td>\n", |
|
|
5285 |
" </tr>\n", |
|
|
5286 |
" <tr>\n", |
|
|
5287 |
" <th>10</th>\n", |
|
|
5288 |
" <td>2.2.0</td>\n", |
|
|
5289 |
" <td>1.17.4</td>\n", |
|
|
5290 |
" <td>1.2.4</td>\n", |
|
|
5291 |
" <td>0.5.2</td>\n", |
|
|
5292 |
" <td>3.6.5</td>\n", |
|
|
5293 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5294 |
" <td>{'Original': {}}</td>\n", |
|
|
5295 |
" <td>f65716ab000b2cab81ddd97e9e866dbc6cf54cf9</td>\n", |
|
|
5296 |
" <td>3D</td>\n", |
|
|
5297 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5298 |
" <td>...</td>\n", |
|
|
5299 |
" <td>0.001446299567661113</td>\n", |
|
|
5300 |
" <td>7.1482289392513</td>\n", |
|
|
5301 |
" <td>0.15515759871890014</td>\n", |
|
|
5302 |
" <td>29405.39059390769</td>\n", |
|
|
5303 |
" <td>1.2292764344076512</td>\n", |
|
|
5304 |
" <td>0.0002473928805907371</td>\n", |
|
|
5305 |
" <td>1679.6737560912095</td>\n", |
|
|
5306 |
" <td>0.07042559391726383</td>\n", |
|
|
5307 |
" <td>0.7519694951848688</td>\n", |
|
|
5308 |
" <td>017</td>\n", |
|
|
5309 |
" </tr>\n", |
|
|
5310 |
" <tr>\n", |
|
|
5311 |
" <th>11</th>\n", |
|
|
5312 |
" <td>2.2.0</td>\n", |
|
|
5313 |
" <td>1.17.4</td>\n", |
|
|
5314 |
" <td>1.2.4</td>\n", |
|
|
5315 |
" <td>0.5.2</td>\n", |
|
|
5316 |
" <td>3.6.5</td>\n", |
|
|
5317 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5318 |
" <td>{'Original': {}}</td>\n", |
|
|
5319 |
" <td>db71698b55385f24e2094eb9eb473ec60fa11eba</td>\n", |
|
|
5320 |
" <td>3D</td>\n", |
|
|
5321 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5322 |
" <td>...</td>\n", |
|
|
5323 |
" <td>0.005795213208560181</td>\n", |
|
|
5324 |
" <td>6.717746514400345</td>\n", |
|
|
5325 |
" <td>0.3448</td>\n", |
|
|
5326 |
" <td>234.74565346511557</td>\n", |
|
|
5327 |
" <td>0.21531070583514791</td>\n", |
|
|
5328 |
" <td>0.004311672555854459</td>\n", |
|
|
5329 |
" <td>1120.3790957642361</td>\n", |
|
|
5330 |
" <td>0.26061068807854054</td>\n", |
|
|
5331 |
" <td>2.67177305342798</td>\n", |
|
|
5332 |
" <td>018</td>\n", |
|
|
5333 |
" </tr>\n", |
|
|
5334 |
" <tr>\n", |
|
|
5335 |
" <th>12</th>\n", |
|
|
5336 |
" <td>2.2.0</td>\n", |
|
|
5337 |
" <td>1.17.4</td>\n", |
|
|
5338 |
" <td>1.2.4</td>\n", |
|
|
5339 |
" <td>0.5.2</td>\n", |
|
|
5340 |
" <td>3.6.5</td>\n", |
|
|
5341 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5342 |
" <td>{'Original': {}}</td>\n", |
|
|
5343 |
" <td>0fd2875d68a33102403e1250fa54a3b97d2e8038</td>\n", |
|
|
5344 |
" <td>3D</td>\n", |
|
|
5345 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5346 |
" <td>...</td>\n", |
|
|
5347 |
" <td>0.0024163820170306216</td>\n", |
|
|
5348 |
" <td>6.925315419808879</td>\n", |
|
|
5349 |
" <td>0.1128870157237802</td>\n", |
|
|
5350 |
" <td>30505.587363138762</td>\n", |
|
|
5351 |
" <td>0.7435117485030087</td>\n", |
|
|
5352 |
" <td>0.0004070436981795229</td>\n", |
|
|
5353 |
" <td>1253.528510770986</td>\n", |
|
|
5354 |
" <td>0.02491228994041788</td>\n", |
|
|
5355 |
" <td>1.34571279526463</td>\n", |
|
|
5356 |
" <td>020</td>\n", |
|
|
5357 |
" </tr>\n", |
|
|
5358 |
" <tr>\n", |
|
|
5359 |
" <th>13</th>\n", |
|
|
5360 |
" <td>2.2.0</td>\n", |
|
|
5361 |
" <td>1.17.4</td>\n", |
|
|
5362 |
" <td>1.2.4</td>\n", |
|
|
5363 |
" <td>0.5.2</td>\n", |
|
|
5364 |
" <td>3.6.5</td>\n", |
|
|
5365 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5366 |
" <td>{'Original': {}}</td>\n", |
|
|
5367 |
" <td>58ac9f73a92cb0c8bd4b27cba4a5d7ba0ae4064e</td>\n", |
|
|
5368 |
" <td>3D</td>\n", |
|
|
5369 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5370 |
" <td>...</td>\n", |
|
|
5371 |
" <td>0.0011862493145998437</td>\n", |
|
|
5372 |
" <td>7.81034796797381</td>\n", |
|
|
5373 |
" <td>0.129630196300433</td>\n", |
|
|
5374 |
" <td>141833.43206893734</td>\n", |
|
|
5375 |
" <td>2.5739529880840752</td>\n", |
|
|
5376 |
" <td>7.523836316655893e-05</td>\n", |
|
|
5377 |
" <td>3783.570137452137</td>\n", |
|
|
5378 |
" <td>0.027978509760262837</td>\n", |
|
|
5379 |
" <td>0.5198296269213483</td>\n", |
|
|
5380 |
" <td>021</td>\n", |
|
|
5381 |
" </tr>\n", |
|
|
5382 |
" <tr>\n", |
|
|
5383 |
" <th>14</th>\n", |
|
|
5384 |
" <td>2.2.0</td>\n", |
|
|
5385 |
" <td>1.17.4</td>\n", |
|
|
5386 |
" <td>1.2.4</td>\n", |
|
|
5387 |
" <td>0.5.2</td>\n", |
|
|
5388 |
" <td>3.6.5</td>\n", |
|
|
5389 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5390 |
" <td>{'Original': {}}</td>\n", |
|
|
5391 |
" <td>00f4c6538c38660e8b280ee538e4871fc9561e62</td>\n", |
|
|
5392 |
" <td>3D</td>\n", |
|
|
5393 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5394 |
" <td>...</td>\n", |
|
|
5395 |
" <td>0.0036028534742678056</td>\n", |
|
|
5396 |
" <td>7.119603520516285</td>\n", |
|
|
5397 |
" <td>0.2674930680150057</td>\n", |
|
|
5398 |
" <td>362.57364626710296</td>\n", |
|
|
5399 |
" <td>0.24853563488531313</td>\n", |
|
|
5400 |
" <td>0.0038810862563832234</td>\n", |
|
|
5401 |
" <td>982.1963220743498</td>\n", |
|
|
5402 |
" <td>0.2629703327415735</td>\n", |
|
|
5403 |
" <td>2.8692955397867865</td>\n", |
|
|
5404 |
" <td>022</td>\n", |
|
|
5405 |
" </tr>\n", |
|
|
5406 |
" <tr>\n", |
|
|
5407 |
" <th>15</th>\n", |
|
|
5408 |
" <td>2.2.0</td>\n", |
|
|
5409 |
" <td>1.17.4</td>\n", |
|
|
5410 |
" <td>1.2.4</td>\n", |
|
|
5411 |
" <td>0.5.2</td>\n", |
|
|
5412 |
" <td>3.6.5</td>\n", |
|
|
5413 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5414 |
" <td>{'Original': {}}</td>\n", |
|
|
5415 |
" <td>bd4f5ca8cf3b7afadf2a43f425b66edf1d6ebe11</td>\n", |
|
|
5416 |
" <td>3D</td>\n", |
|
|
5417 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5418 |
" <td>...</td>\n", |
|
|
5419 |
" <td>0.0014782033379319083</td>\n", |
|
|
5420 |
" <td>7.219255031854712</td>\n", |
|
|
5421 |
" <td>0.14935017443263682</td>\n", |
|
|
5422 |
" <td>182536.6243364634</td>\n", |
|
|
5423 |
" <td>6.7939657787905325</td>\n", |
|
|
5424 |
" <td>3.2568551442329724e-05</td>\n", |
|
|
5425 |
" <td>3274.4066226843884</td>\n", |
|
|
5426 |
" <td>0.05036177188228468</td>\n", |
|
|
5427 |
" <td>0.1461400249351767</td>\n", |
|
|
5428 |
" <td>023</td>\n", |
|
|
5429 |
" </tr>\n", |
|
|
5430 |
" <tr>\n", |
|
|
5431 |
" <th>16</th>\n", |
|
|
5432 |
" <td>2.2.0</td>\n", |
|
|
5433 |
" <td>1.17.4</td>\n", |
|
|
5434 |
" <td>1.2.4</td>\n", |
|
|
5435 |
" <td>0.5.2</td>\n", |
|
|
5436 |
" <td>3.6.5</td>\n", |
|
|
5437 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5438 |
" <td>{'Original': {}}</td>\n", |
|
|
5439 |
" <td>595826dcdfbf9652827e3a1f6937211634edf370</td>\n", |
|
|
5440 |
" <td>3D</td>\n", |
|
|
5441 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5442 |
" <td>...</td>\n", |
|
|
5443 |
" <td>0.006907860635189329</td>\n", |
|
|
5444 |
" <td>5.950434128790246</td>\n", |
|
|
5445 |
" <td>0.44931506849315067</td>\n", |
|
|
5446 |
" <td>13.595441701368234</td>\n", |
|
|
5447 |
" <td>0.07775376602305296</td>\n", |
|
|
5448 |
" <td>0.015311698238793617</td>\n", |
|
|
5449 |
" <td>1082.3433954985846</td>\n", |
|
|
5450 |
" <td>0.18711460911450706</td>\n", |
|
|
5451 |
" <td>6.9985259560373505</td>\n", |
|
|
5452 |
" <td>024</td>\n", |
|
|
5453 |
" </tr>\n", |
|
|
5454 |
" <tr>\n", |
|
|
5455 |
" <th>17</th>\n", |
|
|
5456 |
" <td>2.2.0</td>\n", |
|
|
5457 |
" <td>1.17.4</td>\n", |
|
|
5458 |
" <td>1.2.4</td>\n", |
|
|
5459 |
" <td>0.5.2</td>\n", |
|
|
5460 |
" <td>3.6.5</td>\n", |
|
|
5461 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5462 |
" <td>{'Original': {}}</td>\n", |
|
|
5463 |
" <td>3d3e518cf08aff6eb5c0c7abfc4094c94e4110d1</td>\n", |
|
|
5464 |
" <td>3D</td>\n", |
|
|
5465 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5466 |
" <td>...</td>\n", |
|
|
5467 |
" <td>0.008796740018479512</td>\n", |
|
|
5468 |
" <td>6.767227329727602</td>\n", |
|
|
5469 |
" <td>0.5231710871466045</td>\n", |
|
|
5470 |
" <td>6.291318037569541</td>\n", |
|
|
5471 |
" <td>0.7443653978587913</td>\n", |
|
|
5472 |
" <td>0.0025182204955828675</td>\n", |
|
|
5473 |
" <td>4106.131295341815</td>\n", |
|
|
5474 |
" <td>0.37330474914344075</td>\n", |
|
|
5475 |
" <td>2.309729433318687</td>\n", |
|
|
5476 |
" <td>025</td>\n", |
|
|
5477 |
" </tr>\n", |
|
|
5478 |
" <tr>\n", |
|
|
5479 |
" <th>18</th>\n", |
|
|
5480 |
" <td>2.2.0</td>\n", |
|
|
5481 |
" <td>1.17.4</td>\n", |
|
|
5482 |
" <td>1.2.4</td>\n", |
|
|
5483 |
" <td>0.5.2</td>\n", |
|
|
5484 |
" <td>3.6.5</td>\n", |
|
|
5485 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5486 |
" <td>{'Original': {}}</td>\n", |
|
|
5487 |
" <td>79a7de279fb138413263eee2b69786414a60cbf9</td>\n", |
|
|
5488 |
" <td>3D</td>\n", |
|
|
5489 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5490 |
" <td>...</td>\n", |
|
|
5491 |
" <td>0.001557470188282822</td>\n", |
|
|
5492 |
" <td>7.090255023506899</td>\n", |
|
|
5493 |
" <td>0.12212354450365108</td>\n", |
|
|
5494 |
" <td>33589.52913567098</td>\n", |
|
|
5495 |
" <td>0.7661707437541035</td>\n", |
|
|
5496 |
" <td>0.0004014305095663808</td>\n", |
|
|
5497 |
" <td>1161.876057322675</td>\n", |
|
|
5498 |
" <td>0.059036952728628085</td>\n", |
|
|
5499 |
" <td>1.1032477225643165</td>\n", |
|
|
5500 |
" <td>026</td>\n", |
|
|
5501 |
" </tr>\n", |
|
|
5502 |
" <tr>\n", |
|
|
5503 |
" <th>19</th>\n", |
|
|
5504 |
" <td>2.2.0</td>\n", |
|
|
5505 |
" <td>1.17.4</td>\n", |
|
|
5506 |
" <td>1.2.4</td>\n", |
|
|
5507 |
" <td>0.5.2</td>\n", |
|
|
5508 |
" <td>3.6.5</td>\n", |
|
|
5509 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5510 |
" <td>{'Original': {}}</td>\n", |
|
|
5511 |
" <td>fd015105daca2518853520558c52bc230e8575ec</td>\n", |
|
|
5512 |
" <td>3D</td>\n", |
|
|
5513 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5514 |
" <td>...</td>\n", |
|
|
5515 |
" <td>0.005713686201900686</td>\n", |
|
|
5516 |
" <td>6.663476366367941</td>\n", |
|
|
5517 |
" <td>0.08957553058676654</td>\n", |
|
|
5518 |
" <td>2804.8407774769635</td>\n", |
|
|
5519 |
" <td>0.08874752350635252</td>\n", |
|
|
5520 |
" <td>0.003560695223905199</td>\n", |
|
|
5521 |
" <td>1478.1495036217834</td>\n", |
|
|
5522 |
" <td>0.034767170274454084</td>\n", |
|
|
5523 |
" <td>13.176368854198525</td>\n", |
|
|
5524 |
" <td>029</td>\n", |
|
|
5525 |
" </tr>\n", |
|
|
5526 |
" <tr>\n", |
|
|
5527 |
" <th>20</th>\n", |
|
|
5528 |
" <td>2.2.0</td>\n", |
|
|
5529 |
" <td>1.17.4</td>\n", |
|
|
5530 |
" <td>1.2.4</td>\n", |
|
|
5531 |
" <td>0.5.2</td>\n", |
|
|
5532 |
" <td>3.6.5</td>\n", |
|
|
5533 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5534 |
" <td>{'Original': {}}</td>\n", |
|
|
5535 |
" <td>0447ab9567ed7d777497a4fba69d457b4334e0d5</td>\n", |
|
|
5536 |
" <td>3D</td>\n", |
|
|
5537 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5538 |
" <td>...</td>\n", |
|
|
5539 |
" <td>0.002264241467467257</td>\n", |
|
|
5540 |
" <td>7.528535891348224</td>\n", |
|
|
5541 |
" <td>0.09316935914228884</td>\n", |
|
|
5542 |
" <td>393164.94835038495</td>\n", |
|
|
5543 |
" <td>5.069998381229161</td>\n", |
|
|
5544 |
" <td>3.8983071733322356e-05</td>\n", |
|
|
5545 |
" <td>2430.5623771889923</td>\n", |
|
|
5546 |
" <td>0.028673775438350833</td>\n", |
|
|
5547 |
" <td>0.2824008653671039</td>\n", |
|
|
5548 |
" <td>030</td>\n", |
|
|
5549 |
" </tr>\n", |
|
|
5550 |
" <tr>\n", |
|
|
5551 |
" <th>21</th>\n", |
|
|
5552 |
" <td>2.2.0</td>\n", |
|
|
5553 |
" <td>1.17.4</td>\n", |
|
|
5554 |
" <td>1.2.4</td>\n", |
|
|
5555 |
" <td>0.5.2</td>\n", |
|
|
5556 |
" <td>3.6.5</td>\n", |
|
|
5557 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5558 |
" <td>{'Original': {}}</td>\n", |
|
|
5559 |
" <td>e19e2775aaeeea7fe18ea99245314f606583dede</td>\n", |
|
|
5560 |
" <td>3D</td>\n", |
|
|
5561 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5562 |
" <td>...</td>\n", |
|
|
5563 |
" <td>0.0033701014182111544</td>\n", |
|
|
5564 |
" <td>7.075213534864172</td>\n", |
|
|
5565 |
" <td>0.2759607607275442</td>\n", |
|
|
5566 |
" <td>10391.770094986245</td>\n", |
|
|
5567 |
" <td>1.869546784202216</td>\n", |
|
|
5568 |
" <td>0.0002989103733588873</td>\n", |
|
|
5569 |
" <td>1480.497558524571</td>\n", |
|
|
5570 |
" <td>0.24212596764408367</td>\n", |
|
|
5571 |
" <td>0.3691892591800383</td>\n", |
|
|
5572 |
" <td>031</td>\n", |
|
|
5573 |
" </tr>\n", |
|
|
5574 |
" <tr>\n", |
|
|
5575 |
" <th>22</th>\n", |
|
|
5576 |
" <td>2.2.0</td>\n", |
|
|
5577 |
" <td>1.17.4</td>\n", |
|
|
5578 |
" <td>1.2.4</td>\n", |
|
|
5579 |
" <td>0.5.2</td>\n", |
|
|
5580 |
" <td>3.6.5</td>\n", |
|
|
5581 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5582 |
" <td>{'Original': {}}</td>\n", |
|
|
5583 |
" <td>c6af2e1a7f1ebed4054bfa52f32f236a19cb7b04</td>\n", |
|
|
5584 |
" <td>3D</td>\n", |
|
|
5585 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5586 |
" <td>...</td>\n", |
|
|
5587 |
" <td>0.004478892194681272</td>\n", |
|
|
5588 |
" <td>7.364049968847478</td>\n", |
|
|
5589 |
" <td>0.3871370033849991</td>\n", |
|
|
5590 |
" <td>19.054420979222684</td>\n", |
|
|
5591 |
" <td>0.9716861284774899</td>\n", |
|
|
5592 |
" <td>0.0005216460612959262</td>\n", |
|
|
5593 |
" <td>11917.081383411622</td>\n", |
|
|
5594 |
" <td>0.08934411615858587</td>\n", |
|
|
5595 |
" <td>2.852184219608707</td>\n", |
|
|
5596 |
" <td>032</td>\n", |
|
|
5597 |
" </tr>\n", |
|
|
5598 |
" <tr>\n", |
|
|
5599 |
" <th>23</th>\n", |
|
|
5600 |
" <td>2.2.0</td>\n", |
|
|
5601 |
" <td>1.17.4</td>\n", |
|
|
5602 |
" <td>1.2.4</td>\n", |
|
|
5603 |
" <td>0.5.2</td>\n", |
|
|
5604 |
" <td>3.6.5</td>\n", |
|
|
5605 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5606 |
" <td>{'Original': {}}</td>\n", |
|
|
5607 |
" <td>bfa2119673ff03db3e3699d0cd85c4e269e229e6</td>\n", |
|
|
5608 |
" <td>3D</td>\n", |
|
|
5609 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5610 |
" <td>...</td>\n", |
|
|
5611 |
" <td>0.0009684034975278726</td>\n", |
|
|
5612 |
" <td>7.872772219592215</td>\n", |
|
|
5613 |
" <td>0.08349834468923295</td>\n", |
|
|
5614 |
" <td>338809.6860428674</td>\n", |
|
|
5615 |
" <td>2.992659970348785</td>\n", |
|
|
5616 |
" <td>5.4133503542378135e-05</td>\n", |
|
|
5617 |
" <td>2963.8876188000413</td>\n", |
|
|
5618 |
" <td>0.009854556161924995</td>\n", |
|
|
5619 |
" <td>0.5647399711839881</td>\n", |
|
|
5620 |
" <td>033</td>\n", |
|
|
5621 |
" </tr>\n", |
|
|
5622 |
" <tr>\n", |
|
|
5623 |
" <th>24</th>\n", |
|
|
5624 |
" <td>2.2.0</td>\n", |
|
|
5625 |
" <td>1.17.4</td>\n", |
|
|
5626 |
" <td>1.2.4</td>\n", |
|
|
5627 |
" <td>0.5.2</td>\n", |
|
|
5628 |
" <td>3.6.5</td>\n", |
|
|
5629 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5630 |
" <td>{'Original': {}}</td>\n", |
|
|
5631 |
" <td>d5ffe45339bfca80ab65d9acde22ef36abd7655d</td>\n", |
|
|
5632 |
" <td>3D</td>\n", |
|
|
5633 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5634 |
" <td>...</td>\n", |
|
|
5635 |
" <td>0.002908885356763631</td>\n", |
|
|
5636 |
" <td>6.21075337013764</td>\n", |
|
|
5637 |
" <td>0.2940793754066363</td>\n", |
|
|
5638 |
" <td>508.0719467068682</td>\n", |
|
|
5639 |
" <td>0.22134234614219983</td>\n", |
|
|
5640 |
" <td>0.003224851038770374</td>\n", |
|
|
5641 |
" <td>1146.8938909447143</td>\n", |
|
|
5642 |
" <td>0.13475547967437387</td>\n", |
|
|
5643 |
" <td>2.7469204593263274</td>\n", |
|
|
5644 |
" <td>035</td>\n", |
|
|
5645 |
" </tr>\n", |
|
|
5646 |
" <tr>\n", |
|
|
5647 |
" <th>25</th>\n", |
|
|
5648 |
" <td>2.2.0</td>\n", |
|
|
5649 |
" <td>1.17.4</td>\n", |
|
|
5650 |
" <td>1.2.4</td>\n", |
|
|
5651 |
" <td>0.5.2</td>\n", |
|
|
5652 |
" <td>3.6.5</td>\n", |
|
|
5653 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5654 |
" <td>{'Original': {}}</td>\n", |
|
|
5655 |
" <td>f3527dd02d868dffd46d25b1d23f2fa8b8e56a2d</td>\n", |
|
|
5656 |
" <td>3D</td>\n", |
|
|
5657 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5658 |
" <td>...</td>\n", |
|
|
5659 |
" <td>0.0036208752790588663</td>\n", |
|
|
5660 |
" <td>6.471723959457549</td>\n", |
|
|
5661 |
" <td>0.2441846153846154</td>\n", |
|
|
5662 |
" <td>1028.5670340038862</td>\n", |
|
|
5663 |
" <td>0.6573836988450625</td>\n", |
|
|
5664 |
" <td>0.0013299692055761766</td>\n", |
|
|
5665 |
" <td>1071.3662241422517</td>\n", |
|
|
5666 |
" <td>0.10377605682359203</td>\n", |
|
|
5667 |
" <td>0.8657919258745741</td>\n", |
|
|
5668 |
" <td>036</td>\n", |
|
|
5669 |
" </tr>\n", |
|
|
5670 |
" <tr>\n", |
|
|
5671 |
" <th>26</th>\n", |
|
|
5672 |
" <td>2.2.0</td>\n", |
|
|
5673 |
" <td>1.17.4</td>\n", |
|
|
5674 |
" <td>1.2.4</td>\n", |
|
|
5675 |
" <td>0.5.2</td>\n", |
|
|
5676 |
" <td>3.6.5</td>\n", |
|
|
5677 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5678 |
" <td>{'Original': {}}</td>\n", |
|
|
5679 |
" <td>b9404e479f573a10474fa5e3cb7db1a11919ffee</td>\n", |
|
|
5680 |
" <td>3D</td>\n", |
|
|
5681 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5682 |
" <td>...</td>\n", |
|
|
5683 |
" <td>0.0016532951269105337</td>\n", |
|
|
5684 |
" <td>6.838362747834132</td>\n", |
|
|
5685 |
" <td>0.0632</td>\n", |
|
|
5686 |
" <td>413156.0150660787</td>\n", |
|
|
5687 |
" <td>2.1830571653224937</td>\n", |
|
|
5688 |
" <td>0.0001267737666582638</td>\n", |
|
|
5689 |
" <td>749.9158351824378</td>\n", |
|
|
5690 |
" <td>0.012066473305202052</td>\n", |
|
|
5691 |
" <td>0.9327402031053049</td>\n", |
|
|
5692 |
" <td>037</td>\n", |
|
|
5693 |
" </tr>\n", |
|
|
5694 |
" <tr>\n", |
|
|
5695 |
" <th>27</th>\n", |
|
|
5696 |
" <td>2.2.0</td>\n", |
|
|
5697 |
" <td>1.17.4</td>\n", |
|
|
5698 |
" <td>1.2.4</td>\n", |
|
|
5699 |
" <td>0.5.2</td>\n", |
|
|
5700 |
" <td>3.6.5</td>\n", |
|
|
5701 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5702 |
" <td>{'Original': {}}</td>\n", |
|
|
5703 |
" <td>000124dd34f277dab8e8ed25b4f3fdc573250d7c</td>\n", |
|
|
5704 |
" <td>3D</td>\n", |
|
|
5705 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5706 |
" <td>...</td>\n", |
|
|
5707 |
" <td>0.021777146613668082</td>\n", |
|
|
5708 |
" <td>7.056734031952162</td>\n", |
|
|
5709 |
" <td>0.40493946731234864</td>\n", |
|
|
5710 |
" <td>42.56478399309962</td>\n", |
|
|
5711 |
" <td>2.3900556049024786</td>\n", |
|
|
5712 |
" <td>0.0008861569387576326</td>\n", |
|
|
5713 |
" <td>3444.064111227163</td>\n", |
|
|
5714 |
" <td>0.4168759894986801</td>\n", |
|
|
5715 |
" <td>1.2120189227048546</td>\n", |
|
|
5716 |
" <td>039</td>\n", |
|
|
5717 |
" </tr>\n", |
|
|
5718 |
" <tr>\n", |
|
|
5719 |
" <th>28</th>\n", |
|
|
5720 |
" <td>2.2.0</td>\n", |
|
|
5721 |
" <td>1.17.4</td>\n", |
|
|
5722 |
" <td>1.2.4</td>\n", |
|
|
5723 |
" <td>0.5.2</td>\n", |
|
|
5724 |
" <td>3.6.5</td>\n", |
|
|
5725 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5726 |
" <td>{'Original': {}}</td>\n", |
|
|
5727 |
" <td>316cafb0bf8a80e58c69b4817162a95ee2592b67</td>\n", |
|
|
5728 |
" <td>3D</td>\n", |
|
|
5729 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5730 |
" <td>...</td>\n", |
|
|
5731 |
" <td>0.0009976370361452303</td>\n", |
|
|
5732 |
" <td>8.39840409320068</td>\n", |
|
|
5733 |
" <td>0.08230140065349956</td>\n", |
|
|
5734 |
" <td>96503.69110517327</td>\n", |
|
|
5735 |
" <td>0.960775376291332</td>\n", |
|
|
5736 |
" <td>0.0001967858309645778</td>\n", |
|
|
5737 |
" <td>2637.6172078158274</td>\n", |
|
|
5738 |
" <td>0.016261025617102468</td>\n", |
|
|
5739 |
" <td>1.3746116959447103</td>\n", |
|
|
5740 |
" <td>040</td>\n", |
|
|
5741 |
" </tr>\n", |
|
|
5742 |
" <tr>\n", |
|
|
5743 |
" <th>29</th>\n", |
|
|
5744 |
" <td>2.2.0</td>\n", |
|
|
5745 |
" <td>1.17.4</td>\n", |
|
|
5746 |
" <td>1.2.4</td>\n", |
|
|
5747 |
" <td>0.5.2</td>\n", |
|
|
5748 |
" <td>3.6.5</td>\n", |
|
|
5749 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5750 |
" <td>{'Original': {}}</td>\n", |
|
|
5751 |
" <td>aab86d97a50a5d4320952e3893b27a56e1ec3594</td>\n", |
|
|
5752 |
" <td>3D</td>\n", |
|
|
5753 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5754 |
" <td>...</td>\n", |
|
|
5755 |
" <td>0.0033161139862184735</td>\n", |
|
|
5756 |
" <td>6.804784763626182</td>\n", |
|
|
5757 |
" <td>0.537030657940062</td>\n", |
|
|
5758 |
" <td>11.146471830061621</td>\n", |
|
|
5759 |
" <td>0.24075557855225987</td>\n", |
|
|
5760 |
" <td>0.0031409559177572096</td>\n", |
|
|
5761 |
" <td>4109.773898836124</td>\n", |
|
|
5762 |
" <td>0.47306662438586555</td>\n", |
|
|
5763 |
" <td>2.9058133115381</td>\n", |
|
|
5764 |
" <td>042</td>\n", |
|
|
5765 |
" </tr>\n", |
|
|
5766 |
" <tr>\n", |
|
|
5767 |
" <th>...</th>\n", |
|
|
5768 |
" <td>...</td>\n", |
|
|
5769 |
" <td>...</td>\n", |
|
|
5770 |
" <td>...</td>\n", |
|
|
5771 |
" <td>...</td>\n", |
|
|
5772 |
" <td>...</td>\n", |
|
|
5773 |
" <td>...</td>\n", |
|
|
5774 |
" <td>...</td>\n", |
|
|
5775 |
" <td>...</td>\n", |
|
|
5776 |
" <td>...</td>\n", |
|
|
5777 |
" <td>...</td>\n", |
|
|
5778 |
" <td>...</td>\n", |
|
|
5779 |
" <td>...</td>\n", |
|
|
5780 |
" <td>...</td>\n", |
|
|
5781 |
" <td>...</td>\n", |
|
|
5782 |
" <td>...</td>\n", |
|
|
5783 |
" <td>...</td>\n", |
|
|
5784 |
" <td>...</td>\n", |
|
|
5785 |
" <td>...</td>\n", |
|
|
5786 |
" <td>...</td>\n", |
|
|
5787 |
" <td>...</td>\n", |
|
|
5788 |
" <td>...</td>\n", |
|
|
5789 |
" </tr>\n", |
|
|
5790 |
" <tr>\n", |
|
|
5791 |
" <th>270</th>\n", |
|
|
5792 |
" <td>2.2.0</td>\n", |
|
|
5793 |
" <td>1.17.4</td>\n", |
|
|
5794 |
" <td>1.2.4</td>\n", |
|
|
5795 |
" <td>0.5.2</td>\n", |
|
|
5796 |
" <td>3.6.5</td>\n", |
|
|
5797 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5798 |
" <td>{'Original': {}}</td>\n", |
|
|
5799 |
" <td>be4d8f2eca8fe2307ae6818aa18bcfa99b291d0e</td>\n", |
|
|
5800 |
" <td>3D</td>\n", |
|
|
5801 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5802 |
" <td>...</td>\n", |
|
|
5803 |
" <td>0.0013509056343411852</td>\n", |
|
|
5804 |
" <td>7.334743201676842</td>\n", |
|
|
5805 |
" <td>0.10878951426368542</td>\n", |
|
|
5806 |
" <td>151378.24478776962</td>\n", |
|
|
5807 |
" <td>2.3428187121503</td>\n", |
|
|
5808 |
" <td>0.00010627521367141708</td>\n", |
|
|
5809 |
" <td>1630.6569147296443</td>\n", |
|
|
5810 |
" <td>0.024289031675709668</td>\n", |
|
|
5811 |
" <td>0.4606421181580048</td>\n", |
|
|
5812 |
" <td>383</td>\n", |
|
|
5813 |
" </tr>\n", |
|
|
5814 |
" <tr>\n", |
|
|
5815 |
" <th>271</th>\n", |
|
|
5816 |
" <td>2.2.0</td>\n", |
|
|
5817 |
" <td>1.17.4</td>\n", |
|
|
5818 |
" <td>1.2.4</td>\n", |
|
|
5819 |
" <td>0.5.2</td>\n", |
|
|
5820 |
" <td>3.6.5</td>\n", |
|
|
5821 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5822 |
" <td>{'Original': {}}</td>\n", |
|
|
5823 |
" <td>77deb4de13b4f07bb61d734e6ec9cc212a0cfe7f</td>\n", |
|
|
5824 |
" <td>3D</td>\n", |
|
|
5825 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5826 |
" <td>...</td>\n", |
|
|
5827 |
" <td>0.0019692452410667548</td>\n", |
|
|
5828 |
" <td>7.9000586359461815</td>\n", |
|
|
5829 |
" <td>0.08376924595341492</td>\n", |
|
|
5830 |
" <td>220261.32511390524</td>\n", |
|
|
5831 |
" <td>1.6669130507706895</td>\n", |
|
|
5832 |
" <td>0.00014576756906747247</td>\n", |
|
|
5833 |
" <td>2596.2892100343224</td>\n", |
|
|
5834 |
" <td>0.007389078129697386</td>\n", |
|
|
5835 |
" <td>2.1377123840874988</td>\n", |
|
|
5836 |
" <td>384</td>\n", |
|
|
5837 |
" </tr>\n", |
|
|
5838 |
" <tr>\n", |
|
|
5839 |
" <th>272</th>\n", |
|
|
5840 |
" <td>2.2.0</td>\n", |
|
|
5841 |
" <td>1.17.4</td>\n", |
|
|
5842 |
" <td>1.2.4</td>\n", |
|
|
5843 |
" <td>0.5.2</td>\n", |
|
|
5844 |
" <td>3.6.5</td>\n", |
|
|
5845 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5846 |
" <td>{'Original': {}}</td>\n", |
|
|
5847 |
" <td>9ae0a95dc56ae7279abe420eb42c3805fac7d11a</td>\n", |
|
|
5848 |
" <td>3D</td>\n", |
|
|
5849 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5850 |
" <td>...</td>\n", |
|
|
5851 |
" <td>0.002567791612340664</td>\n", |
|
|
5852 |
" <td>6.825974708094388</td>\n", |
|
|
5853 |
" <td>0.2281795511221945</td>\n", |
|
|
5854 |
" <td>6672.7729771199265</td>\n", |
|
|
5855 |
" <td>0.661894902033628</td>\n", |
|
|
5856 |
" <td>0.0006908799968563485</td>\n", |
|
|
5857 |
" <td>1279.881703279654</td>\n", |
|
|
5858 |
" <td>0.1073748552891916</td>\n", |
|
|
5859 |
" <td>1.0214902995475954</td>\n", |
|
|
5860 |
" <td>385</td>\n", |
|
|
5861 |
" </tr>\n", |
|
|
5862 |
" <tr>\n", |
|
|
5863 |
" <th>273</th>\n", |
|
|
5864 |
" <td>2.2.0</td>\n", |
|
|
5865 |
" <td>1.17.4</td>\n", |
|
|
5866 |
" <td>1.2.4</td>\n", |
|
|
5867 |
" <td>0.5.2</td>\n", |
|
|
5868 |
" <td>3.6.5</td>\n", |
|
|
5869 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5870 |
" <td>{'Original': {}}</td>\n", |
|
|
5871 |
" <td>837e5ae1dc8d128f63077a7e68ed93d006d1d6f9</td>\n", |
|
|
5872 |
" <td>3D</td>\n", |
|
|
5873 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5874 |
" <td>...</td>\n", |
|
|
5875 |
" <td>0.002449529032387442</td>\n", |
|
|
5876 |
" <td>7.03977569882979</td>\n", |
|
|
5877 |
" <td>0.3181305671439847</td>\n", |
|
|
5878 |
" <td>2010.213896679345</td>\n", |
|
|
5879 |
" <td>0.47142096946338186</td>\n", |
|
|
5880 |
" <td>0.0005808740155667074</td>\n", |
|
|
5881 |
" <td>5713.776148060454</td>\n", |
|
|
5882 |
" <td>0.15799137588532178</td>\n", |
|
|
5883 |
" <td>1.3758528190465993</td>\n", |
|
|
5884 |
" <td>386</td>\n", |
|
|
5885 |
" </tr>\n", |
|
|
5886 |
" <tr>\n", |
|
|
5887 |
" <th>274</th>\n", |
|
|
5888 |
" <td>2.2.0</td>\n", |
|
|
5889 |
" <td>1.17.4</td>\n", |
|
|
5890 |
" <td>1.2.4</td>\n", |
|
|
5891 |
" <td>0.5.2</td>\n", |
|
|
5892 |
" <td>3.6.5</td>\n", |
|
|
5893 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5894 |
" <td>{'Original': {}}</td>\n", |
|
|
5895 |
" <td>ad0f07e904f6ea5f461ef51034291550c46136aa</td>\n", |
|
|
5896 |
" <td>3D</td>\n", |
|
|
5897 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5898 |
" <td>...</td>\n", |
|
|
5899 |
" <td>0.001188144214303948</td>\n", |
|
|
5900 |
" <td>6.976727623008532</td>\n", |
|
|
5901 |
" <td>0.05125079055449302</td>\n", |
|
|
5902 |
" <td>785969.9310955203</td>\n", |
|
|
5903 |
" <td>3.8016278198652</td>\n", |
|
|
5904 |
" <td>7.172777262168633e-05</td>\n", |
|
|
5905 |
" <td>802.1590061468481</td>\n", |
|
|
5906 |
" <td>0.005318600659449717</td>\n", |
|
|
5907 |
" <td>0.5216353800835233</td>\n", |
|
|
5908 |
" <td>388</td>\n", |
|
|
5909 |
" </tr>\n", |
|
|
5910 |
" <tr>\n", |
|
|
5911 |
" <th>275</th>\n", |
|
|
5912 |
" <td>2.2.0</td>\n", |
|
|
5913 |
" <td>1.17.4</td>\n", |
|
|
5914 |
" <td>1.2.4</td>\n", |
|
|
5915 |
" <td>0.5.2</td>\n", |
|
|
5916 |
" <td>3.6.5</td>\n", |
|
|
5917 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5918 |
" <td>{'Original': {}}</td>\n", |
|
|
5919 |
" <td>7bec2a39df74a9e2e59a5cdd1096c29794eb4f68</td>\n", |
|
|
5920 |
" <td>3D</td>\n", |
|
|
5921 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5922 |
" <td>...</td>\n", |
|
|
5923 |
" <td>0.0040470839458114785</td>\n", |
|
|
5924 |
" <td>6.846158783236782</td>\n", |
|
|
5925 |
" <td>0.37414187643020597</td>\n", |
|
|
5926 |
" <td>44.474988076200106</td>\n", |
|
|
5927 |
" <td>0.24104344071650663</td>\n", |
|
|
5928 |
" <td>0.006761312245770574</td>\n", |
|
|
5929 |
" <td>1082.9570011449448</td>\n", |
|
|
5930 |
" <td>0.325462943510588</td>\n", |
|
|
5931 |
" <td>3.7278074028627395</td>\n", |
|
|
5932 |
" <td>389</td>\n", |
|
|
5933 |
" </tr>\n", |
|
|
5934 |
" <tr>\n", |
|
|
5935 |
" <th>276</th>\n", |
|
|
5936 |
" <td>2.2.0</td>\n", |
|
|
5937 |
" <td>1.17.4</td>\n", |
|
|
5938 |
" <td>1.2.4</td>\n", |
|
|
5939 |
" <td>0.5.2</td>\n", |
|
|
5940 |
" <td>3.6.5</td>\n", |
|
|
5941 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5942 |
" <td>{'Original': {}}</td>\n", |
|
|
5943 |
" <td>ed2326ea913c8f192d36f9f8009f4b0da8b2f887</td>\n", |
|
|
5944 |
" <td>3D</td>\n", |
|
|
5945 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5946 |
" <td>...</td>\n", |
|
|
5947 |
" <td>0.00525405309115141</td>\n", |
|
|
5948 |
" <td>6.55191775162472</td>\n", |
|
|
5949 |
" <td>0.606694560669456</td>\n", |
|
|
5950 |
" <td>15.632940377102088</td>\n", |
|
|
5951 |
" <td>0.13843509755321795</td>\n", |
|
|
5952 |
" <td>0.004142410708728122</td>\n", |
|
|
5953 |
" <td>6602.780622433239</td>\n", |
|
|
5954 |
" <td>0.794694408241354</td>\n", |
|
|
5955 |
" <td>4.256762468826891</td>\n", |
|
|
5956 |
" <td>390</td>\n", |
|
|
5957 |
" </tr>\n", |
|
|
5958 |
" <tr>\n", |
|
|
5959 |
" <th>277</th>\n", |
|
|
5960 |
" <td>None</td>\n", |
|
|
5961 |
" <td>None</td>\n", |
|
|
5962 |
" <td>None</td>\n", |
|
|
5963 |
" <td>None</td>\n", |
|
|
5964 |
" <td>None</td>\n", |
|
|
5965 |
" <td>None</td>\n", |
|
|
5966 |
" <td>None</td>\n", |
|
|
5967 |
" <td>None</td>\n", |
|
|
5968 |
" <td>None</td>\n", |
|
|
5969 |
" <td>None</td>\n", |
|
|
5970 |
" <td>...</td>\n", |
|
|
5971 |
" <td>None</td>\n", |
|
|
5972 |
" <td>None</td>\n", |
|
|
5973 |
" <td>None</td>\n", |
|
|
5974 |
" <td>None</td>\n", |
|
|
5975 |
" <td>None</td>\n", |
|
|
5976 |
" <td>None</td>\n", |
|
|
5977 |
" <td>None</td>\n", |
|
|
5978 |
" <td>None</td>\n", |
|
|
5979 |
" <td>None</td>\n", |
|
|
5980 |
" <td>391</td>\n", |
|
|
5981 |
" </tr>\n", |
|
|
5982 |
" <tr>\n", |
|
|
5983 |
" <th>278</th>\n", |
|
|
5984 |
" <td>2.2.0</td>\n", |
|
|
5985 |
" <td>1.17.4</td>\n", |
|
|
5986 |
" <td>1.2.4</td>\n", |
|
|
5987 |
" <td>0.5.2</td>\n", |
|
|
5988 |
" <td>3.6.5</td>\n", |
|
|
5989 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
5990 |
" <td>{'Original': {}}</td>\n", |
|
|
5991 |
" <td>afd38ea1d48ef85eb4a553aafaee2ecbf9033094</td>\n", |
|
|
5992 |
" <td>3D</td>\n", |
|
|
5993 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
5994 |
" <td>...</td>\n", |
|
|
5995 |
" <td>0.006589831902850517</td>\n", |
|
|
5996 |
" <td>7.0671533446542965</td>\n", |
|
|
5997 |
" <td>0.4437893081761006</td>\n", |
|
|
5998 |
" <td>246.6913640781993</td>\n", |
|
|
5999 |
" <td>0.4448591428677588</td>\n", |
|
|
6000 |
" <td>0.0009309076781772361</td>\n", |
|
|
6001 |
" <td>6051.920831005981</td>\n", |
|
|
6002 |
" <td>0.393646599803466</td>\n", |
|
|
6003 |
" <td>1.3731539230080159</td>\n", |
|
|
6004 |
" <td>392</td>\n", |
|
|
6005 |
" </tr>\n", |
|
|
6006 |
" <tr>\n", |
|
|
6007 |
" <th>279</th>\n", |
|
|
6008 |
" <td>2.2.0</td>\n", |
|
|
6009 |
" <td>1.17.4</td>\n", |
|
|
6010 |
" <td>1.2.4</td>\n", |
|
|
6011 |
" <td>0.5.2</td>\n", |
|
|
6012 |
" <td>3.6.5</td>\n", |
|
|
6013 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6014 |
" <td>{'Original': {}}</td>\n", |
|
|
6015 |
" <td>676a0b5d486752323fd4bb034db883c545613e85</td>\n", |
|
|
6016 |
" <td>3D</td>\n", |
|
|
6017 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6018 |
" <td>...</td>\n", |
|
|
6019 |
" <td>0.005627222696726434</td>\n", |
|
|
6020 |
" <td>6.550081582231421</td>\n", |
|
|
6021 |
" <td>0.3996039603960396</td>\n", |
|
|
6022 |
" <td>552.115206943259</td>\n", |
|
|
6023 |
" <td>0.3406755410988624</td>\n", |
|
|
6024 |
" <td>0.0016397185525391935</td>\n", |
|
|
6025 |
" <td>2805.2378926059687</td>\n", |
|
|
6026 |
" <td>0.4780447536058001</td>\n", |
|
|
6027 |
" <td>1.9222176385002876</td>\n", |
|
|
6028 |
" <td>393</td>\n", |
|
|
6029 |
" </tr>\n", |
|
|
6030 |
" <tr>\n", |
|
|
6031 |
" <th>280</th>\n", |
|
|
6032 |
" <td>2.2.0</td>\n", |
|
|
6033 |
" <td>1.17.4</td>\n", |
|
|
6034 |
" <td>1.2.4</td>\n", |
|
|
6035 |
" <td>0.5.2</td>\n", |
|
|
6036 |
" <td>3.6.5</td>\n", |
|
|
6037 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6038 |
" <td>{'Original': {}}</td>\n", |
|
|
6039 |
" <td>83d0f4a72dfee3d7fd97371a25cd16a78ef5ac75</td>\n", |
|
|
6040 |
" <td>3D</td>\n", |
|
|
6041 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6042 |
" <td>...</td>\n", |
|
|
6043 |
" <td>0.013458602554774874</td>\n", |
|
|
6044 |
" <td>6.04821530110506</td>\n", |
|
|
6045 |
" <td>0.5420054200542005</td>\n", |
|
|
6046 |
" <td>13.375975</td>\n", |
|
|
6047 |
" <td>0.17587494256212904</td>\n", |
|
|
6048 |
" <td>0.009829106273203849</td>\n", |
|
|
6049 |
" <td>1946.6586907576063</td>\n", |
|
|
6050 |
" <td>0.6774027776887893</td>\n", |
|
|
6051 |
" <td>4.457299674693692</td>\n", |
|
|
6052 |
" <td>394</td>\n", |
|
|
6053 |
" </tr>\n", |
|
|
6054 |
" <tr>\n", |
|
|
6055 |
" <th>281</th>\n", |
|
|
6056 |
" <td>2.2.0</td>\n", |
|
|
6057 |
" <td>1.17.4</td>\n", |
|
|
6058 |
" <td>1.2.4</td>\n", |
|
|
6059 |
" <td>0.5.2</td>\n", |
|
|
6060 |
" <td>3.6.5</td>\n", |
|
|
6061 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6062 |
" <td>{'Original': {}}</td>\n", |
|
|
6063 |
" <td>1a44cfe606274d683844250e8063d206005b309b</td>\n", |
|
|
6064 |
" <td>3D</td>\n", |
|
|
6065 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6066 |
" <td>...</td>\n", |
|
|
6067 |
" <td>0.0015301414395284903</td>\n", |
|
|
6068 |
" <td>7.646380857897902</td>\n", |
|
|
6069 |
" <td>0.099608564522684</td>\n", |
|
|
6070 |
" <td>430181.2842743045</td>\n", |
|
|
6071 |
" <td>4.2834973475769695</td>\n", |
|
|
6072 |
" <td>4.700103179431201e-05</td>\n", |
|
|
6073 |
" <td>2103.9007784109804</td>\n", |
|
|
6074 |
" <td>0.01967008852253595</td>\n", |
|
|
6075 |
" <td>0.3465010231383506</td>\n", |
|
|
6076 |
" <td>395</td>\n", |
|
|
6077 |
" </tr>\n", |
|
|
6078 |
" <tr>\n", |
|
|
6079 |
" <th>282</th>\n", |
|
|
6080 |
" <td>2.2.0</td>\n", |
|
|
6081 |
" <td>1.17.4</td>\n", |
|
|
6082 |
" <td>1.2.4</td>\n", |
|
|
6083 |
" <td>0.5.2</td>\n", |
|
|
6084 |
" <td>3.6.5</td>\n", |
|
|
6085 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6086 |
" <td>{'Original': {}}</td>\n", |
|
|
6087 |
" <td>f01abf6993c293df5a3e397ba89adef92f516a8f</td>\n", |
|
|
6088 |
" <td>3D</td>\n", |
|
|
6089 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6090 |
" <td>...</td>\n", |
|
|
6091 |
" <td>0.004051975410363078</td>\n", |
|
|
6092 |
" <td>7.242046172265801</td>\n", |
|
|
6093 |
" <td>0.34307331072267155</td>\n", |
|
|
6094 |
" <td>471.2459778224349</td>\n", |
|
|
6095 |
" <td>0.8400071965018975</td>\n", |
|
|
6096 |
" <td>0.0006237280431003554</td>\n", |
|
|
6097 |
" <td>5623.218717544708</td>\n", |
|
|
6098 |
" <td>0.2087544094065177</td>\n", |
|
|
6099 |
" <td>1.4803864293788846</td>\n", |
|
|
6100 |
" <td>396</td>\n", |
|
|
6101 |
" </tr>\n", |
|
|
6102 |
" <tr>\n", |
|
|
6103 |
" <th>283</th>\n", |
|
|
6104 |
" <td>2.2.0</td>\n", |
|
|
6105 |
" <td>1.17.4</td>\n", |
|
|
6106 |
" <td>1.2.4</td>\n", |
|
|
6107 |
" <td>0.5.2</td>\n", |
|
|
6108 |
" <td>3.6.5</td>\n", |
|
|
6109 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6110 |
" <td>{'Original': {}}</td>\n", |
|
|
6111 |
" <td>ab86b1afffbefb256b9f450f1b1c1ca69372e99c</td>\n", |
|
|
6112 |
" <td>3D</td>\n", |
|
|
6113 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6114 |
" <td>...</td>\n", |
|
|
6115 |
" <td>0.0006413234112890079</td>\n", |
|
|
6116 |
" <td>7.798182267442231</td>\n", |
|
|
6117 |
" <td>0.0388714323834211</td>\n", |
|
|
6118 |
" <td>1169320.639178522</td>\n", |
|
|
6119 |
" <td>3.0262035180871107</td>\n", |
|
|
6120 |
" <td>5.898416096653614e-05</td>\n", |
|
|
6121 |
" <td>1515.553097825558</td>\n", |
|
|
6122 |
" <td>0.002113059538029328</td>\n", |
|
|
6123 |
" <td>0.7500047185247829</td>\n", |
|
|
6124 |
" <td>397</td>\n", |
|
|
6125 |
" </tr>\n", |
|
|
6126 |
" <tr>\n", |
|
|
6127 |
" <th>284</th>\n", |
|
|
6128 |
" <td>2.2.0</td>\n", |
|
|
6129 |
" <td>1.17.4</td>\n", |
|
|
6130 |
" <td>1.2.4</td>\n", |
|
|
6131 |
" <td>0.5.2</td>\n", |
|
|
6132 |
" <td>3.6.5</td>\n", |
|
|
6133 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6134 |
" <td>{'Original': {}}</td>\n", |
|
|
6135 |
" <td>e73081be43e235e898c6003ee445f92fd7179686</td>\n", |
|
|
6136 |
" <td>3D</td>\n", |
|
|
6137 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6138 |
" <td>...</td>\n", |
|
|
6139 |
" <td>0.0035480536801734733</td>\n", |
|
|
6140 |
" <td>6.6473961935836945</td>\n", |
|
|
6141 |
" <td>0.34747953468332615</td>\n", |
|
|
6142 |
" <td>293.73771845232994</td>\n", |
|
|
6143 |
" <td>0.22660862047737765</td>\n", |
|
|
6144 |
" <td>0.003090580429514026</td>\n", |
|
|
6145 |
" <td>1522.0485246002622</td>\n", |
|
|
6146 |
" <td>0.21892236165194368</td>\n", |
|
|
6147 |
" <td>2.4418282715080295</td>\n", |
|
|
6148 |
" <td>399</td>\n", |
|
|
6149 |
" </tr>\n", |
|
|
6150 |
" <tr>\n", |
|
|
6151 |
" <th>285</th>\n", |
|
|
6152 |
" <td>2.2.0</td>\n", |
|
|
6153 |
" <td>1.17.4</td>\n", |
|
|
6154 |
" <td>1.2.4</td>\n", |
|
|
6155 |
" <td>0.5.2</td>\n", |
|
|
6156 |
" <td>3.6.5</td>\n", |
|
|
6157 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6158 |
" <td>{'Original': {}}</td>\n", |
|
|
6159 |
" <td>f66f49d7ff9c5958c6e09972d93e70e0bab2ac0f</td>\n", |
|
|
6160 |
" <td>3D</td>\n", |
|
|
6161 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6162 |
" <td>...</td>\n", |
|
|
6163 |
" <td>0.0012063108774522946</td>\n", |
|
|
6164 |
" <td>6.882178339194774</td>\n", |
|
|
6165 |
" <td>0.10538428754084388</td>\n", |
|
|
6166 |
" <td>64958.019090796675</td>\n", |
|
|
6167 |
" <td>0.8471429838520521</td>\n", |
|
|
6168 |
" <td>0.00030675371502693913</td>\n", |
|
|
6169 |
" <td>1236.0951005573122</td>\n", |
|
|
6170 |
" <td>0.019229787808456775</td>\n", |
|
|
6171 |
" <td>1.6372599259696257</td>\n", |
|
|
6172 |
" <td>400</td>\n", |
|
|
6173 |
" </tr>\n", |
|
|
6174 |
" <tr>\n", |
|
|
6175 |
" <th>286</th>\n", |
|
|
6176 |
" <td>2.2.0</td>\n", |
|
|
6177 |
" <td>1.17.4</td>\n", |
|
|
6178 |
" <td>1.2.4</td>\n", |
|
|
6179 |
" <td>0.5.2</td>\n", |
|
|
6180 |
" <td>3.6.5</td>\n", |
|
|
6181 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6182 |
" <td>{'Original': {}}</td>\n", |
|
|
6183 |
" <td>9986658ad80fd43b1ba42d40d68458f21347aa3f</td>\n", |
|
|
6184 |
" <td>3D</td>\n", |
|
|
6185 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6186 |
" <td>...</td>\n", |
|
|
6187 |
" <td>0.0012319263252038477</td>\n", |
|
|
6188 |
" <td>7.8933278381056</td>\n", |
|
|
6189 |
" <td>0.072210806883672</td>\n", |
|
|
6190 |
" <td>360760.9957643357</td>\n", |
|
|
6191 |
" <td>4.930224271693016</td>\n", |
|
|
6192 |
" <td>6.036582705246826e-05</td>\n", |
|
|
6193 |
" <td>1493.771670493071</td>\n", |
|
|
6194 |
" <td>0.013861672716860611</td>\n", |
|
|
6195 |
" <td>0.2548237425906703</td>\n", |
|
|
6196 |
" <td>401</td>\n", |
|
|
6197 |
" </tr>\n", |
|
|
6198 |
" <tr>\n", |
|
|
6199 |
" <th>287</th>\n", |
|
|
6200 |
" <td>2.2.0</td>\n", |
|
|
6201 |
" <td>1.17.4</td>\n", |
|
|
6202 |
" <td>1.2.4</td>\n", |
|
|
6203 |
" <td>0.5.2</td>\n", |
|
|
6204 |
" <td>3.6.5</td>\n", |
|
|
6205 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6206 |
" <td>{'Original': {}}</td>\n", |
|
|
6207 |
" <td>44a2e453cc1d0492e503a27243f32df4fad0a37d</td>\n", |
|
|
6208 |
" <td>3D</td>\n", |
|
|
6209 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6210 |
" <td>...</td>\n", |
|
|
6211 |
" <td>0.0020569151726012825</td>\n", |
|
|
6212 |
" <td>6.571034755408902</td>\n", |
|
|
6213 |
" <td>0.1251088534107402</td>\n", |
|
|
6214 |
" <td>12439.00459192188</td>\n", |
|
|
6215 |
" <td>0.29744431273028565</td>\n", |
|
|
6216 |
" <td>0.0010174313134883484</td>\n", |
|
|
6217 |
" <td>1278.7921708928616</td>\n", |
|
|
6218 |
" <td>0.01351499837994573</td>\n", |
|
|
6219 |
" <td>3.338787114825903</td>\n", |
|
|
6220 |
" <td>402</td>\n", |
|
|
6221 |
" </tr>\n", |
|
|
6222 |
" <tr>\n", |
|
|
6223 |
" <th>288</th>\n", |
|
|
6224 |
" <td>2.2.0</td>\n", |
|
|
6225 |
" <td>1.17.4</td>\n", |
|
|
6226 |
" <td>1.2.4</td>\n", |
|
|
6227 |
" <td>0.5.2</td>\n", |
|
|
6228 |
" <td>3.6.5</td>\n", |
|
|
6229 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6230 |
" <td>{'Original': {}}</td>\n", |
|
|
6231 |
" <td>e00618f4bb3445aa08f6b722c7ac63dc05f9f72c</td>\n", |
|
|
6232 |
" <td>3D</td>\n", |
|
|
6233 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6234 |
" <td>...</td>\n", |
|
|
6235 |
" <td>0.006484712470781652</td>\n", |
|
|
6236 |
" <td>7.23711945965005</td>\n", |
|
|
6237 |
" <td>0.31466227347611203</td>\n", |
|
|
6238 |
" <td>58.72747457580659</td>\n", |
|
|
6239 |
" <td>0.5158288121371688</td>\n", |
|
|
6240 |
" <td>0.0027654406480975223</td>\n", |
|
|
6241 |
" <td>1727.9117096660646</td>\n", |
|
|
6242 |
" <td>0.18551315272516028</td>\n", |
|
|
6243 |
" <td>2.3146344390846925</td>\n", |
|
|
6244 |
" <td>403</td>\n", |
|
|
6245 |
" </tr>\n", |
|
|
6246 |
" <tr>\n", |
|
|
6247 |
" <th>289</th>\n", |
|
|
6248 |
" <td>2.2.0</td>\n", |
|
|
6249 |
" <td>1.17.4</td>\n", |
|
|
6250 |
" <td>1.2.4</td>\n", |
|
|
6251 |
" <td>0.5.2</td>\n", |
|
|
6252 |
" <td>3.6.5</td>\n", |
|
|
6253 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6254 |
" <td>{'Original': {}}</td>\n", |
|
|
6255 |
" <td>5d05748ace71b2fe258fd52dd81d9626f3aafc4f</td>\n", |
|
|
6256 |
" <td>3D</td>\n", |
|
|
6257 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6258 |
" <td>...</td>\n", |
|
|
6259 |
" <td>0.008811934129441581</td>\n", |
|
|
6260 |
" <td>6.701676551721465</td>\n", |
|
|
6261 |
" <td>0.43752224991100036</td>\n", |
|
|
6262 |
" <td>50.187758409630035</td>\n", |
|
|
6263 |
" <td>0.46254213662699145</td>\n", |
|
|
6264 |
" <td>0.0035905102005092037</td>\n", |
|
|
6265 |
" <td>2114.520839730045</td>\n", |
|
|
6266 |
" <td>0.5692637413962094</td>\n", |
|
|
6267 |
" <td>2.56546674426354</td>\n", |
|
|
6268 |
" <td>406</td>\n", |
|
|
6269 |
" </tr>\n", |
|
|
6270 |
" <tr>\n", |
|
|
6271 |
" <th>290</th>\n", |
|
|
6272 |
" <td>2.2.0</td>\n", |
|
|
6273 |
" <td>1.17.4</td>\n", |
|
|
6274 |
" <td>1.2.4</td>\n", |
|
|
6275 |
" <td>0.5.2</td>\n", |
|
|
6276 |
" <td>3.6.5</td>\n", |
|
|
6277 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6278 |
" <td>{'Original': {}}</td>\n", |
|
|
6279 |
" <td>1b3b0812d24c65289924b22641c93e801844e300</td>\n", |
|
|
6280 |
" <td>3D</td>\n", |
|
|
6281 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6282 |
" <td>...</td>\n", |
|
|
6283 |
" <td>0.006770147293067898</td>\n", |
|
|
6284 |
" <td>6.952412289621788</td>\n", |
|
|
6285 |
" <td>0.30294224482382853</td>\n", |
|
|
6286 |
" <td>30.627648959968717</td>\n", |
|
|
6287 |
" <td>0.6162018511528478</td>\n", |
|
|
6288 |
" <td>0.004286336952447301</td>\n", |
|
|
6289 |
" <td>1271.7761450543444</td>\n", |
|
|
6290 |
" <td>0.15707384911545383</td>\n", |
|
|
6291 |
" <td>2.7382195781328513</td>\n", |
|
|
6292 |
" <td>409</td>\n", |
|
|
6293 |
" </tr>\n", |
|
|
6294 |
" <tr>\n", |
|
|
6295 |
" <th>291</th>\n", |
|
|
6296 |
" <td>2.2.0</td>\n", |
|
|
6297 |
" <td>1.17.4</td>\n", |
|
|
6298 |
" <td>1.2.4</td>\n", |
|
|
6299 |
" <td>0.5.2</td>\n", |
|
|
6300 |
" <td>3.6.5</td>\n", |
|
|
6301 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6302 |
" <td>{'Original': {}}</td>\n", |
|
|
6303 |
" <td>5b466bd013aade44e167611c626459122f011160</td>\n", |
|
|
6304 |
" <td>3D</td>\n", |
|
|
6305 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6306 |
" <td>...</td>\n", |
|
|
6307 |
" <td>0.0024171542507320154</td>\n", |
|
|
6308 |
" <td>7.330891561603395</td>\n", |
|
|
6309 |
" <td>0.13907009111780277</td>\n", |
|
|
6310 |
" <td>197768.12486732987</td>\n", |
|
|
6311 |
" <td>4.1309684414738355</td>\n", |
|
|
6312 |
" <td>6.436628041355792e-05</td>\n", |
|
|
6313 |
" <td>1972.2212195012723</td>\n", |
|
|
6314 |
" <td>0.08447776667068141</td>\n", |
|
|
6315 |
" <td>0.2427139080026082</td>\n", |
|
|
6316 |
" <td>414</td>\n", |
|
|
6317 |
" </tr>\n", |
|
|
6318 |
" <tr>\n", |
|
|
6319 |
" <th>292</th>\n", |
|
|
6320 |
" <td>2.2.0</td>\n", |
|
|
6321 |
" <td>1.17.4</td>\n", |
|
|
6322 |
" <td>1.2.4</td>\n", |
|
|
6323 |
" <td>0.5.2</td>\n", |
|
|
6324 |
" <td>3.6.5</td>\n", |
|
|
6325 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6326 |
" <td>{'Original': {}}</td>\n", |
|
|
6327 |
" <td>df61328651b194ff1e08eb755bf764d3717a8194</td>\n", |
|
|
6328 |
" <td>3D</td>\n", |
|
|
6329 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6330 |
" <td>...</td>\n", |
|
|
6331 |
" <td>0.0022795548924627387</td>\n", |
|
|
6332 |
" <td>7.07594981121275</td>\n", |
|
|
6333 |
" <td>0.07099136711010473</td>\n", |
|
|
6334 |
" <td>118227.7737772126</td>\n", |
|
|
6335 |
" <td>1.7964205258101962</td>\n", |
|
|
6336 |
" <td>0.0002336631674081431</td>\n", |
|
|
6337 |
" <td>826.8131043088226</td>\n", |
|
|
6338 |
" <td>0.011342005558562589</td>\n", |
|
|
6339 |
" <td>0.552937640336374</td>\n", |
|
|
6340 |
" <td>416</td>\n", |
|
|
6341 |
" </tr>\n", |
|
|
6342 |
" <tr>\n", |
|
|
6343 |
" <th>293</th>\n", |
|
|
6344 |
" <td>2.2.0</td>\n", |
|
|
6345 |
" <td>1.17.4</td>\n", |
|
|
6346 |
" <td>1.2.4</td>\n", |
|
|
6347 |
" <td>0.5.2</td>\n", |
|
|
6348 |
" <td>3.6.5</td>\n", |
|
|
6349 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6350 |
" <td>{'Original': {}}</td>\n", |
|
|
6351 |
" <td>2b7d3d70833daa3e5676611fc8074a962dbf8676</td>\n", |
|
|
6352 |
" <td>3D</td>\n", |
|
|
6353 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6354 |
" <td>...</td>\n", |
|
|
6355 |
" <td>0.0013668590884197568</td>\n", |
|
|
6356 |
" <td>7.145910841724713</td>\n", |
|
|
6357 |
" <td>0.1150902216347484</td>\n", |
|
|
6358 |
" <td>49869.243988601134</td>\n", |
|
|
6359 |
" <td>1.1299741182486778</td>\n", |
|
|
6360 |
" <td>0.0002904036457603399</td>\n", |
|
|
6361 |
" <td>1061.7730623153855</td>\n", |
|
|
6362 |
" <td>0.05247136065944921</td>\n", |
|
|
6363 |
" <td>0.8228572805949378</td>\n", |
|
|
6364 |
" <td>417</td>\n", |
|
|
6365 |
" </tr>\n", |
|
|
6366 |
" <tr>\n", |
|
|
6367 |
" <th>294</th>\n", |
|
|
6368 |
" <td>2.2.0</td>\n", |
|
|
6369 |
" <td>1.17.4</td>\n", |
|
|
6370 |
" <td>1.2.4</td>\n", |
|
|
6371 |
" <td>0.5.2</td>\n", |
|
|
6372 |
" <td>3.6.5</td>\n", |
|
|
6373 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6374 |
" <td>{'Original': {}}</td>\n", |
|
|
6375 |
" <td>9c5f435787639062217d5f69c575411da86ac525</td>\n", |
|
|
6376 |
" <td>3D</td>\n", |
|
|
6377 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6378 |
" <td>...</td>\n", |
|
|
6379 |
" <td>0.004925179088727158</td>\n", |
|
|
6380 |
" <td>6.249158476178194</td>\n", |
|
|
6381 |
" <td>0.1514792899408284</td>\n", |
|
|
6382 |
" <td>2507.5990600585938</td>\n", |
|
|
6383 |
" <td>0.1451505844745803</td>\n", |
|
|
6384 |
" <td>0.0038360669881133324</td>\n", |
|
|
6385 |
" <td>817.1854007192372</td>\n", |
|
|
6386 |
" <td>0.021205055605598273</td>\n", |
|
|
6387 |
" <td>4.72171407908516</td>\n", |
|
|
6388 |
" <td>418</td>\n", |
|
|
6389 |
" </tr>\n", |
|
|
6390 |
" <tr>\n", |
|
|
6391 |
" <th>295</th>\n", |
|
|
6392 |
" <td>2.2.0</td>\n", |
|
|
6393 |
" <td>1.17.4</td>\n", |
|
|
6394 |
" <td>1.2.4</td>\n", |
|
|
6395 |
" <td>0.5.2</td>\n", |
|
|
6396 |
" <td>3.6.5</td>\n", |
|
|
6397 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6398 |
" <td>{'Original': {}}</td>\n", |
|
|
6399 |
" <td>b6789102bfb54c2430faa09fc26d057b8167fde3</td>\n", |
|
|
6400 |
" <td>3D</td>\n", |
|
|
6401 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6402 |
" <td>...</td>\n", |
|
|
6403 |
" <td>0.0034716709513483517</td>\n", |
|
|
6404 |
" <td>6.851172015303249</td>\n", |
|
|
6405 |
" <td>0.49042762569332615</td>\n", |
|
|
6406 |
" <td>74.93718462505596</td>\n", |
|
|
6407 |
" <td>0.30613229794075314</td>\n", |
|
|
6408 |
" <td>0.0019058445125772411</td>\n", |
|
|
6409 |
" <td>4483.369981145554</td>\n", |
|
|
6410 |
" <td>0.4059673066951746</td>\n", |
|
|
6411 |
" <td>1.9591626756590645</td>\n", |
|
|
6412 |
" <td>420</td>\n", |
|
|
6413 |
" </tr>\n", |
|
|
6414 |
" <tr>\n", |
|
|
6415 |
" <th>296</th>\n", |
|
|
6416 |
" <td>2.2.0</td>\n", |
|
|
6417 |
" <td>1.17.4</td>\n", |
|
|
6418 |
" <td>1.2.4</td>\n", |
|
|
6419 |
" <td>0.5.2</td>\n", |
|
|
6420 |
" <td>3.6.5</td>\n", |
|
|
6421 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6422 |
" <td>{'Original': {}}</td>\n", |
|
|
6423 |
" <td>fb01ed5030f52e60655c75d26801ccf72475150f</td>\n", |
|
|
6424 |
" <td>3D</td>\n", |
|
|
6425 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6426 |
" <td>...</td>\n", |
|
|
6427 |
" <td>0.0009330478283055931</td>\n", |
|
|
6428 |
" <td>7.191221582685593</td>\n", |
|
|
6429 |
" <td>0.11898630457684654</td>\n", |
|
|
6430 |
" <td>33177.88718244393</td>\n", |
|
|
6431 |
" <td>0.6963962032944083</td>\n", |
|
|
6432 |
" <td>0.00045734758147107147</td>\n", |
|
|
6433 |
" <td>1158.946560816182</td>\n", |
|
|
6434 |
" <td>0.030891254862908297</td>\n", |
|
|
6435 |
" <td>1.3412094894571074</td>\n", |
|
|
6436 |
" <td>421</td>\n", |
|
|
6437 |
" </tr>\n", |
|
|
6438 |
" <tr>\n", |
|
|
6439 |
" <th>297</th>\n", |
|
|
6440 |
" <td>2.2.0</td>\n", |
|
|
6441 |
" <td>1.17.4</td>\n", |
|
|
6442 |
" <td>1.2.4</td>\n", |
|
|
6443 |
" <td>0.5.2</td>\n", |
|
|
6444 |
" <td>3.6.5</td>\n", |
|
|
6445 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6446 |
" <td>{'Original': {}}</td>\n", |
|
|
6447 |
" <td>7fd9996b9dc2b783973499cf5f96ea84094798ff</td>\n", |
|
|
6448 |
" <td>3D</td>\n", |
|
|
6449 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6450 |
" <td>...</td>\n", |
|
|
6451 |
" <td>0.0014120863820929132</td>\n", |
|
|
6452 |
" <td>7.270939877512328</td>\n", |
|
|
6453 |
" <td>0.12680162496159492</td>\n", |
|
|
6454 |
" <td>178502.5383939068</td>\n", |
|
|
6455 |
" <td>2.9873556461496684</td>\n", |
|
|
6456 |
" <td>8.530118049780416e-05</td>\n", |
|
|
6457 |
" <td>1581.4318762827352</td>\n", |
|
|
6458 |
" <td>0.03681760304160888</td>\n", |
|
|
6459 |
" <td>0.35276480480378414</td>\n", |
|
|
6460 |
" <td>422</td>\n", |
|
|
6461 |
" </tr>\n", |
|
|
6462 |
" <tr>\n", |
|
|
6463 |
" <th>298</th>\n", |
|
|
6464 |
" <td>2.2.0</td>\n", |
|
|
6465 |
" <td>1.17.4</td>\n", |
|
|
6466 |
" <td>1.2.4</td>\n", |
|
|
6467 |
" <td>0.5.2</td>\n", |
|
|
6468 |
" <td>3.6.5</td>\n", |
|
|
6469 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6470 |
" <td>{'Original': {}}</td>\n", |
|
|
6471 |
" <td>e0ca3cc1e60c85c8921100ec99ba7a78c12f4ed7</td>\n", |
|
|
6472 |
" <td>3D</td>\n", |
|
|
6473 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6474 |
" <td>...</td>\n", |
|
|
6475 |
" <td>0.001188057281603964</td>\n", |
|
|
6476 |
" <td>6.48495288861754</td>\n", |
|
|
6477 |
" <td>0.26303701849291955</td>\n", |
|
|
6478 |
" <td>15103.022310945464</td>\n", |
|
|
6479 |
" <td>3.2747617934032998</td>\n", |
|
|
6480 |
" <td>7.335600874277254e-05</td>\n", |
|
|
6481 |
" <td>4964.471992006311</td>\n", |
|
|
6482 |
" <td>0.04802903758135621</td>\n", |
|
|
6483 |
" <td>0.2279646029225388</td>\n", |
|
|
6484 |
" <td>423</td>\n", |
|
|
6485 |
" </tr>\n", |
|
|
6486 |
" <tr>\n", |
|
|
6487 |
" <th>299</th>\n", |
|
|
6488 |
" <td>2.2.0</td>\n", |
|
|
6489 |
" <td>1.17.4</td>\n", |
|
|
6490 |
" <td>1.2.4</td>\n", |
|
|
6491 |
" <td>0.5.2</td>\n", |
|
|
6492 |
" <td>3.6.5</td>\n", |
|
|
6493 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
6494 |
" <td>{'Original': {}}</td>\n", |
|
|
6495 |
" <td>7338d9f9ac8348d357ec4eedc28645e88f3a3334</td>\n", |
|
|
6496 |
" <td>3D</td>\n", |
|
|
6497 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
6498 |
" <td>...</td>\n", |
|
|
6499 |
" <td>0.001097302326903002</td>\n", |
|
|
6500 |
" <td>7.554262894196348</td>\n", |
|
|
6501 |
" <td>0.1586560079940045</td>\n", |
|
|
6502 |
" <td>11468.585913232464</td>\n", |
|
|
6503 |
" <td>1.6001781072780072</td>\n", |
|
|
6504 |
" <td>0.0003116465126409293</td>\n", |
|
|
6505 |
" <td>1329.9342126126633</td>\n", |
|
|
6506 |
" <td>0.09417826331276645</td>\n", |
|
|
6507 |
" <td>0.3957467908267195</td>\n", |
|
|
6508 |
" <td>424</td>\n", |
|
|
6509 |
" </tr>\n", |
|
|
6510 |
" </tbody>\n", |
|
|
6511 |
"</table>\n", |
|
|
6512 |
"<p>300 rows × 130 columns</p>\n", |
|
|
6513 |
"</div>" |
|
|
6514 |
], |
|
|
6515 |
"text/plain": [ |
|
|
6516 |
" diagnostics_Versions_PyRadiomics diagnostics_Versions_Numpy \\\n", |
|
|
6517 |
"0 2.2.0 1.17.4 \n", |
|
|
6518 |
"1 None None \n", |
|
|
6519 |
"2 2.2.0 1.17.4 \n", |
|
|
6520 |
"3 2.2.0 1.17.4 \n", |
|
|
6521 |
"4 2.2.0 1.17.4 \n", |
|
|
6522 |
"5 2.2.0 1.17.4 \n", |
|
|
6523 |
"6 2.2.0 1.17.4 \n", |
|
|
6524 |
"7 2.2.0 1.17.4 \n", |
|
|
6525 |
"8 2.2.0 1.17.4 \n", |
|
|
6526 |
"9 2.2.0 1.17.4 \n", |
|
|
6527 |
"10 2.2.0 1.17.4 \n", |
|
|
6528 |
"11 2.2.0 1.17.4 \n", |
|
|
6529 |
"12 2.2.0 1.17.4 \n", |
|
|
6530 |
"13 2.2.0 1.17.4 \n", |
|
|
6531 |
"14 2.2.0 1.17.4 \n", |
|
|
6532 |
"15 2.2.0 1.17.4 \n", |
|
|
6533 |
"16 2.2.0 1.17.4 \n", |
|
|
6534 |
"17 2.2.0 1.17.4 \n", |
|
|
6535 |
"18 2.2.0 1.17.4 \n", |
|
|
6536 |
"19 2.2.0 1.17.4 \n", |
|
|
6537 |
"20 2.2.0 1.17.4 \n", |
|
|
6538 |
"21 2.2.0 1.17.4 \n", |
|
|
6539 |
"22 2.2.0 1.17.4 \n", |
|
|
6540 |
"23 2.2.0 1.17.4 \n", |
|
|
6541 |
"24 2.2.0 1.17.4 \n", |
|
|
6542 |
"25 2.2.0 1.17.4 \n", |
|
|
6543 |
"26 2.2.0 1.17.4 \n", |
|
|
6544 |
"27 2.2.0 1.17.4 \n", |
|
|
6545 |
"28 2.2.0 1.17.4 \n", |
|
|
6546 |
"29 2.2.0 1.17.4 \n", |
|
|
6547 |
".. ... ... \n", |
|
|
6548 |
"270 2.2.0 1.17.4 \n", |
|
|
6549 |
"271 2.2.0 1.17.4 \n", |
|
|
6550 |
"272 2.2.0 1.17.4 \n", |
|
|
6551 |
"273 2.2.0 1.17.4 \n", |
|
|
6552 |
"274 2.2.0 1.17.4 \n", |
|
|
6553 |
"275 2.2.0 1.17.4 \n", |
|
|
6554 |
"276 2.2.0 1.17.4 \n", |
|
|
6555 |
"277 None None \n", |
|
|
6556 |
"278 2.2.0 1.17.4 \n", |
|
|
6557 |
"279 2.2.0 1.17.4 \n", |
|
|
6558 |
"280 2.2.0 1.17.4 \n", |
|
|
6559 |
"281 2.2.0 1.17.4 \n", |
|
|
6560 |
"282 2.2.0 1.17.4 \n", |
|
|
6561 |
"283 2.2.0 1.17.4 \n", |
|
|
6562 |
"284 2.2.0 1.17.4 \n", |
|
|
6563 |
"285 2.2.0 1.17.4 \n", |
|
|
6564 |
"286 2.2.0 1.17.4 \n", |
|
|
6565 |
"287 2.2.0 1.17.4 \n", |
|
|
6566 |
"288 2.2.0 1.17.4 \n", |
|
|
6567 |
"289 2.2.0 1.17.4 \n", |
|
|
6568 |
"290 2.2.0 1.17.4 \n", |
|
|
6569 |
"291 2.2.0 1.17.4 \n", |
|
|
6570 |
"292 2.2.0 1.17.4 \n", |
|
|
6571 |
"293 2.2.0 1.17.4 \n", |
|
|
6572 |
"294 2.2.0 1.17.4 \n", |
|
|
6573 |
"295 2.2.0 1.17.4 \n", |
|
|
6574 |
"296 2.2.0 1.17.4 \n", |
|
|
6575 |
"297 2.2.0 1.17.4 \n", |
|
|
6576 |
"298 2.2.0 1.17.4 \n", |
|
|
6577 |
"299 2.2.0 1.17.4 \n", |
|
|
6578 |
"\n", |
|
|
6579 |
" diagnostics_Versions_SimpleITK diagnostics_Versions_PyWavelet \\\n", |
|
|
6580 |
"0 1.2.4 0.5.2 \n", |
|
|
6581 |
"1 None None \n", |
|
|
6582 |
"2 1.2.4 0.5.2 \n", |
|
|
6583 |
"3 1.2.4 0.5.2 \n", |
|
|
6584 |
"4 1.2.4 0.5.2 \n", |
|
|
6585 |
"5 1.2.4 0.5.2 \n", |
|
|
6586 |
"6 1.2.4 0.5.2 \n", |
|
|
6587 |
"7 1.2.4 0.5.2 \n", |
|
|
6588 |
"8 1.2.4 0.5.2 \n", |
|
|
6589 |
"9 1.2.4 0.5.2 \n", |
|
|
6590 |
"10 1.2.4 0.5.2 \n", |
|
|
6591 |
"11 1.2.4 0.5.2 \n", |
|
|
6592 |
"12 1.2.4 0.5.2 \n", |
|
|
6593 |
"13 1.2.4 0.5.2 \n", |
|
|
6594 |
"14 1.2.4 0.5.2 \n", |
|
|
6595 |
"15 1.2.4 0.5.2 \n", |
|
|
6596 |
"16 1.2.4 0.5.2 \n", |
|
|
6597 |
"17 1.2.4 0.5.2 \n", |
|
|
6598 |
"18 1.2.4 0.5.2 \n", |
|
|
6599 |
"19 1.2.4 0.5.2 \n", |
|
|
6600 |
"20 1.2.4 0.5.2 \n", |
|
|
6601 |
"21 1.2.4 0.5.2 \n", |
|
|
6602 |
"22 1.2.4 0.5.2 \n", |
|
|
6603 |
"23 1.2.4 0.5.2 \n", |
|
|
6604 |
"24 1.2.4 0.5.2 \n", |
|
|
6605 |
"25 1.2.4 0.5.2 \n", |
|
|
6606 |
"26 1.2.4 0.5.2 \n", |
|
|
6607 |
"27 1.2.4 0.5.2 \n", |
|
|
6608 |
"28 1.2.4 0.5.2 \n", |
|
|
6609 |
"29 1.2.4 0.5.2 \n", |
|
|
6610 |
".. ... ... \n", |
|
|
6611 |
"270 1.2.4 0.5.2 \n", |
|
|
6612 |
"271 1.2.4 0.5.2 \n", |
|
|
6613 |
"272 1.2.4 0.5.2 \n", |
|
|
6614 |
"273 1.2.4 0.5.2 \n", |
|
|
6615 |
"274 1.2.4 0.5.2 \n", |
|
|
6616 |
"275 1.2.4 0.5.2 \n", |
|
|
6617 |
"276 1.2.4 0.5.2 \n", |
|
|
6618 |
"277 None None \n", |
|
|
6619 |
"278 1.2.4 0.5.2 \n", |
|
|
6620 |
"279 1.2.4 0.5.2 \n", |
|
|
6621 |
"280 1.2.4 0.5.2 \n", |
|
|
6622 |
"281 1.2.4 0.5.2 \n", |
|
|
6623 |
"282 1.2.4 0.5.2 \n", |
|
|
6624 |
"283 1.2.4 0.5.2 \n", |
|
|
6625 |
"284 1.2.4 0.5.2 \n", |
|
|
6626 |
"285 1.2.4 0.5.2 \n", |
|
|
6627 |
"286 1.2.4 0.5.2 \n", |
|
|
6628 |
"287 1.2.4 0.5.2 \n", |
|
|
6629 |
"288 1.2.4 0.5.2 \n", |
|
|
6630 |
"289 1.2.4 0.5.2 \n", |
|
|
6631 |
"290 1.2.4 0.5.2 \n", |
|
|
6632 |
"291 1.2.4 0.5.2 \n", |
|
|
6633 |
"292 1.2.4 0.5.2 \n", |
|
|
6634 |
"293 1.2.4 0.5.2 \n", |
|
|
6635 |
"294 1.2.4 0.5.2 \n", |
|
|
6636 |
"295 1.2.4 0.5.2 \n", |
|
|
6637 |
"296 1.2.4 0.5.2 \n", |
|
|
6638 |
"297 1.2.4 0.5.2 \n", |
|
|
6639 |
"298 1.2.4 0.5.2 \n", |
|
|
6640 |
"299 1.2.4 0.5.2 \n", |
|
|
6641 |
"\n", |
|
|
6642 |
" diagnostics_Versions_Python \\\n", |
|
|
6643 |
"0 3.6.5 \n", |
|
|
6644 |
"1 None \n", |
|
|
6645 |
"2 3.6.5 \n", |
|
|
6646 |
"3 3.6.5 \n", |
|
|
6647 |
"4 3.6.5 \n", |
|
|
6648 |
"5 3.6.5 \n", |
|
|
6649 |
"6 3.6.5 \n", |
|
|
6650 |
"7 3.6.5 \n", |
|
|
6651 |
"8 3.6.5 \n", |
|
|
6652 |
"9 3.6.5 \n", |
|
|
6653 |
"10 3.6.5 \n", |
|
|
6654 |
"11 3.6.5 \n", |
|
|
6655 |
"12 3.6.5 \n", |
|
|
6656 |
"13 3.6.5 \n", |
|
|
6657 |
"14 3.6.5 \n", |
|
|
6658 |
"15 3.6.5 \n", |
|
|
6659 |
"16 3.6.5 \n", |
|
|
6660 |
"17 3.6.5 \n", |
|
|
6661 |
"18 3.6.5 \n", |
|
|
6662 |
"19 3.6.5 \n", |
|
|
6663 |
"20 3.6.5 \n", |
|
|
6664 |
"21 3.6.5 \n", |
|
|
6665 |
"22 3.6.5 \n", |
|
|
6666 |
"23 3.6.5 \n", |
|
|
6667 |
"24 3.6.5 \n", |
|
|
6668 |
"25 3.6.5 \n", |
|
|
6669 |
"26 3.6.5 \n", |
|
|
6670 |
"27 3.6.5 \n", |
|
|
6671 |
"28 3.6.5 \n", |
|
|
6672 |
"29 3.6.5 \n", |
|
|
6673 |
".. ... \n", |
|
|
6674 |
"270 3.6.5 \n", |
|
|
6675 |
"271 3.6.5 \n", |
|
|
6676 |
"272 3.6.5 \n", |
|
|
6677 |
"273 3.6.5 \n", |
|
|
6678 |
"274 3.6.5 \n", |
|
|
6679 |
"275 3.6.5 \n", |
|
|
6680 |
"276 3.6.5 \n", |
|
|
6681 |
"277 None \n", |
|
|
6682 |
"278 3.6.5 \n", |
|
|
6683 |
"279 3.6.5 \n", |
|
|
6684 |
"280 3.6.5 \n", |
|
|
6685 |
"281 3.6.5 \n", |
|
|
6686 |
"282 3.6.5 \n", |
|
|
6687 |
"283 3.6.5 \n", |
|
|
6688 |
"284 3.6.5 \n", |
|
|
6689 |
"285 3.6.5 \n", |
|
|
6690 |
"286 3.6.5 \n", |
|
|
6691 |
"287 3.6.5 \n", |
|
|
6692 |
"288 3.6.5 \n", |
|
|
6693 |
"289 3.6.5 \n", |
|
|
6694 |
"290 3.6.5 \n", |
|
|
6695 |
"291 3.6.5 \n", |
|
|
6696 |
"292 3.6.5 \n", |
|
|
6697 |
"293 3.6.5 \n", |
|
|
6698 |
"294 3.6.5 \n", |
|
|
6699 |
"295 3.6.5 \n", |
|
|
6700 |
"296 3.6.5 \n", |
|
|
6701 |
"297 3.6.5 \n", |
|
|
6702 |
"298 3.6.5 \n", |
|
|
6703 |
"299 3.6.5 \n", |
|
|
6704 |
"\n", |
|
|
6705 |
" diagnostics_Configuration_Settings \\\n", |
|
|
6706 |
"0 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6707 |
"1 None \n", |
|
|
6708 |
"2 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6709 |
"3 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6710 |
"4 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6711 |
"5 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6712 |
"6 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6713 |
"7 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6714 |
"8 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6715 |
"9 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6716 |
"10 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6717 |
"11 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6718 |
"12 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6719 |
"13 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6720 |
"14 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6721 |
"15 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6722 |
"16 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6723 |
"17 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6724 |
"18 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6725 |
"19 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6726 |
"20 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6727 |
"21 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6728 |
"22 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6729 |
"23 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6730 |
"24 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6731 |
"25 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6732 |
"26 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6733 |
"27 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6734 |
"28 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6735 |
"29 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6736 |
".. ... \n", |
|
|
6737 |
"270 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6738 |
"271 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6739 |
"272 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6740 |
"273 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6741 |
"274 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6742 |
"275 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6743 |
"276 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6744 |
"277 None \n", |
|
|
6745 |
"278 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6746 |
"279 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6747 |
"280 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6748 |
"281 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6749 |
"282 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6750 |
"283 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6751 |
"284 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6752 |
"285 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6753 |
"286 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6754 |
"287 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6755 |
"288 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6756 |
"289 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6757 |
"290 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6758 |
"291 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6759 |
"292 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6760 |
"293 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6761 |
"294 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6762 |
"295 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6763 |
"296 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6764 |
"297 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6765 |
"298 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6766 |
"299 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
6767 |
"\n", |
|
|
6768 |
" diagnostics_Configuration_EnabledImageTypes \\\n", |
|
|
6769 |
"0 {'Original': {}} \n", |
|
|
6770 |
"1 None \n", |
|
|
6771 |
"2 {'Original': {}} \n", |
|
|
6772 |
"3 {'Original': {}} \n", |
|
|
6773 |
"4 {'Original': {}} \n", |
|
|
6774 |
"5 {'Original': {}} \n", |
|
|
6775 |
"6 {'Original': {}} \n", |
|
|
6776 |
"7 {'Original': {}} \n", |
|
|
6777 |
"8 {'Original': {}} \n", |
|
|
6778 |
"9 {'Original': {}} \n", |
|
|
6779 |
"10 {'Original': {}} \n", |
|
|
6780 |
"11 {'Original': {}} \n", |
|
|
6781 |
"12 {'Original': {}} \n", |
|
|
6782 |
"13 {'Original': {}} \n", |
|
|
6783 |
"14 {'Original': {}} \n", |
|
|
6784 |
"15 {'Original': {}} \n", |
|
|
6785 |
"16 {'Original': {}} \n", |
|
|
6786 |
"17 {'Original': {}} \n", |
|
|
6787 |
"18 {'Original': {}} \n", |
|
|
6788 |
"19 {'Original': {}} \n", |
|
|
6789 |
"20 {'Original': {}} \n", |
|
|
6790 |
"21 {'Original': {}} \n", |
|
|
6791 |
"22 {'Original': {}} \n", |
|
|
6792 |
"23 {'Original': {}} \n", |
|
|
6793 |
"24 {'Original': {}} \n", |
|
|
6794 |
"25 {'Original': {}} \n", |
|
|
6795 |
"26 {'Original': {}} \n", |
|
|
6796 |
"27 {'Original': {}} \n", |
|
|
6797 |
"28 {'Original': {}} \n", |
|
|
6798 |
"29 {'Original': {}} \n", |
|
|
6799 |
".. ... \n", |
|
|
6800 |
"270 {'Original': {}} \n", |
|
|
6801 |
"271 {'Original': {}} \n", |
|
|
6802 |
"272 {'Original': {}} \n", |
|
|
6803 |
"273 {'Original': {}} \n", |
|
|
6804 |
"274 {'Original': {}} \n", |
|
|
6805 |
"275 {'Original': {}} \n", |
|
|
6806 |
"276 {'Original': {}} \n", |
|
|
6807 |
"277 None \n", |
|
|
6808 |
"278 {'Original': {}} \n", |
|
|
6809 |
"279 {'Original': {}} \n", |
|
|
6810 |
"280 {'Original': {}} \n", |
|
|
6811 |
"281 {'Original': {}} \n", |
|
|
6812 |
"282 {'Original': {}} \n", |
|
|
6813 |
"283 {'Original': {}} \n", |
|
|
6814 |
"284 {'Original': {}} \n", |
|
|
6815 |
"285 {'Original': {}} \n", |
|
|
6816 |
"286 {'Original': {}} \n", |
|
|
6817 |
"287 {'Original': {}} \n", |
|
|
6818 |
"288 {'Original': {}} \n", |
|
|
6819 |
"289 {'Original': {}} \n", |
|
|
6820 |
"290 {'Original': {}} \n", |
|
|
6821 |
"291 {'Original': {}} \n", |
|
|
6822 |
"292 {'Original': {}} \n", |
|
|
6823 |
"293 {'Original': {}} \n", |
|
|
6824 |
"294 {'Original': {}} \n", |
|
|
6825 |
"295 {'Original': {}} \n", |
|
|
6826 |
"296 {'Original': {}} \n", |
|
|
6827 |
"297 {'Original': {}} \n", |
|
|
6828 |
"298 {'Original': {}} \n", |
|
|
6829 |
"299 {'Original': {}} \n", |
|
|
6830 |
"\n", |
|
|
6831 |
" diagnostics_Image-original_Hash \\\n", |
|
|
6832 |
"0 12594f333e663f725eafbb011efb36cc28ef09ea \n", |
|
|
6833 |
"1 None \n", |
|
|
6834 |
"2 793be327098729932754ab0c539a10d3be8007c0 \n", |
|
|
6835 |
"3 5728d2537b555bb664252698dc1a51694866b4f4 \n", |
|
|
6836 |
"4 9f1b576cfc98ab355c1ac62a08abd4f84c89be21 \n", |
|
|
6837 |
"5 6d505a43db6064df0112884d2876f6e83e97804c \n", |
|
|
6838 |
"6 e73b20e78dcb299acfe3ccdb16915e5da5e64e8b \n", |
|
|
6839 |
"7 51a099ec121e376fb2ac8cd6c124e5022cb3a8e8 \n", |
|
|
6840 |
"8 a006099e256744eedd9278354a398b33c134a07e \n", |
|
|
6841 |
"9 767e22198388ac93a9db95e0dfd9b3fa7e14f685 \n", |
|
|
6842 |
"10 f65716ab000b2cab81ddd97e9e866dbc6cf54cf9 \n", |
|
|
6843 |
"11 db71698b55385f24e2094eb9eb473ec60fa11eba \n", |
|
|
6844 |
"12 0fd2875d68a33102403e1250fa54a3b97d2e8038 \n", |
|
|
6845 |
"13 58ac9f73a92cb0c8bd4b27cba4a5d7ba0ae4064e \n", |
|
|
6846 |
"14 00f4c6538c38660e8b280ee538e4871fc9561e62 \n", |
|
|
6847 |
"15 bd4f5ca8cf3b7afadf2a43f425b66edf1d6ebe11 \n", |
|
|
6848 |
"16 595826dcdfbf9652827e3a1f6937211634edf370 \n", |
|
|
6849 |
"17 3d3e518cf08aff6eb5c0c7abfc4094c94e4110d1 \n", |
|
|
6850 |
"18 79a7de279fb138413263eee2b69786414a60cbf9 \n", |
|
|
6851 |
"19 fd015105daca2518853520558c52bc230e8575ec \n", |
|
|
6852 |
"20 0447ab9567ed7d777497a4fba69d457b4334e0d5 \n", |
|
|
6853 |
"21 e19e2775aaeeea7fe18ea99245314f606583dede \n", |
|
|
6854 |
"22 c6af2e1a7f1ebed4054bfa52f32f236a19cb7b04 \n", |
|
|
6855 |
"23 bfa2119673ff03db3e3699d0cd85c4e269e229e6 \n", |
|
|
6856 |
"24 d5ffe45339bfca80ab65d9acde22ef36abd7655d \n", |
|
|
6857 |
"25 f3527dd02d868dffd46d25b1d23f2fa8b8e56a2d \n", |
|
|
6858 |
"26 b9404e479f573a10474fa5e3cb7db1a11919ffee \n", |
|
|
6859 |
"27 000124dd34f277dab8e8ed25b4f3fdc573250d7c \n", |
|
|
6860 |
"28 316cafb0bf8a80e58c69b4817162a95ee2592b67 \n", |
|
|
6861 |
"29 aab86d97a50a5d4320952e3893b27a56e1ec3594 \n", |
|
|
6862 |
".. ... \n", |
|
|
6863 |
"270 be4d8f2eca8fe2307ae6818aa18bcfa99b291d0e \n", |
|
|
6864 |
"271 77deb4de13b4f07bb61d734e6ec9cc212a0cfe7f \n", |
|
|
6865 |
"272 9ae0a95dc56ae7279abe420eb42c3805fac7d11a \n", |
|
|
6866 |
"273 837e5ae1dc8d128f63077a7e68ed93d006d1d6f9 \n", |
|
|
6867 |
"274 ad0f07e904f6ea5f461ef51034291550c46136aa \n", |
|
|
6868 |
"275 7bec2a39df74a9e2e59a5cdd1096c29794eb4f68 \n", |
|
|
6869 |
"276 ed2326ea913c8f192d36f9f8009f4b0da8b2f887 \n", |
|
|
6870 |
"277 None \n", |
|
|
6871 |
"278 afd38ea1d48ef85eb4a553aafaee2ecbf9033094 \n", |
|
|
6872 |
"279 676a0b5d486752323fd4bb034db883c545613e85 \n", |
|
|
6873 |
"280 83d0f4a72dfee3d7fd97371a25cd16a78ef5ac75 \n", |
|
|
6874 |
"281 1a44cfe606274d683844250e8063d206005b309b \n", |
|
|
6875 |
"282 f01abf6993c293df5a3e397ba89adef92f516a8f \n", |
|
|
6876 |
"283 ab86b1afffbefb256b9f450f1b1c1ca69372e99c \n", |
|
|
6877 |
"284 e73081be43e235e898c6003ee445f92fd7179686 \n", |
|
|
6878 |
"285 f66f49d7ff9c5958c6e09972d93e70e0bab2ac0f \n", |
|
|
6879 |
"286 9986658ad80fd43b1ba42d40d68458f21347aa3f \n", |
|
|
6880 |
"287 44a2e453cc1d0492e503a27243f32df4fad0a37d \n", |
|
|
6881 |
"288 e00618f4bb3445aa08f6b722c7ac63dc05f9f72c \n", |
|
|
6882 |
"289 5d05748ace71b2fe258fd52dd81d9626f3aafc4f \n", |
|
|
6883 |
"290 1b3b0812d24c65289924b22641c93e801844e300 \n", |
|
|
6884 |
"291 5b466bd013aade44e167611c626459122f011160 \n", |
|
|
6885 |
"292 df61328651b194ff1e08eb755bf764d3717a8194 \n", |
|
|
6886 |
"293 2b7d3d70833daa3e5676611fc8074a962dbf8676 \n", |
|
|
6887 |
"294 9c5f435787639062217d5f69c575411da86ac525 \n", |
|
|
6888 |
"295 b6789102bfb54c2430faa09fc26d057b8167fde3 \n", |
|
|
6889 |
"296 fb01ed5030f52e60655c75d26801ccf72475150f \n", |
|
|
6890 |
"297 7fd9996b9dc2b783973499cf5f96ea84094798ff \n", |
|
|
6891 |
"298 e0ca3cc1e60c85c8921100ec99ba7a78c12f4ed7 \n", |
|
|
6892 |
"299 7338d9f9ac8348d357ec4eedc28645e88f3a3334 \n", |
|
|
6893 |
"\n", |
|
|
6894 |
" diagnostics_Image-original_Dimensionality \\\n", |
|
|
6895 |
"0 3D \n", |
|
|
6896 |
"1 None \n", |
|
|
6897 |
"2 3D \n", |
|
|
6898 |
"3 3D \n", |
|
|
6899 |
"4 3D \n", |
|
|
6900 |
"5 3D \n", |
|
|
6901 |
"6 3D \n", |
|
|
6902 |
"7 3D \n", |
|
|
6903 |
"8 3D \n", |
|
|
6904 |
"9 3D \n", |
|
|
6905 |
"10 3D \n", |
|
|
6906 |
"11 3D \n", |
|
|
6907 |
"12 3D \n", |
|
|
6908 |
"13 3D \n", |
|
|
6909 |
"14 3D \n", |
|
|
6910 |
"15 3D \n", |
|
|
6911 |
"16 3D \n", |
|
|
6912 |
"17 3D \n", |
|
|
6913 |
"18 3D \n", |
|
|
6914 |
"19 3D \n", |
|
|
6915 |
"20 3D \n", |
|
|
6916 |
"21 3D \n", |
|
|
6917 |
"22 3D \n", |
|
|
6918 |
"23 3D \n", |
|
|
6919 |
"24 3D \n", |
|
|
6920 |
"25 3D \n", |
|
|
6921 |
"26 3D \n", |
|
|
6922 |
"27 3D \n", |
|
|
6923 |
"28 3D \n", |
|
|
6924 |
"29 3D \n", |
|
|
6925 |
".. ... \n", |
|
|
6926 |
"270 3D \n", |
|
|
6927 |
"271 3D \n", |
|
|
6928 |
"272 3D \n", |
|
|
6929 |
"273 3D \n", |
|
|
6930 |
"274 3D \n", |
|
|
6931 |
"275 3D \n", |
|
|
6932 |
"276 3D \n", |
|
|
6933 |
"277 None \n", |
|
|
6934 |
"278 3D \n", |
|
|
6935 |
"279 3D \n", |
|
|
6936 |
"280 3D \n", |
|
|
6937 |
"281 3D \n", |
|
|
6938 |
"282 3D \n", |
|
|
6939 |
"283 3D \n", |
|
|
6940 |
"284 3D \n", |
|
|
6941 |
"285 3D \n", |
|
|
6942 |
"286 3D \n", |
|
|
6943 |
"287 3D \n", |
|
|
6944 |
"288 3D \n", |
|
|
6945 |
"289 3D \n", |
|
|
6946 |
"290 3D \n", |
|
|
6947 |
"291 3D \n", |
|
|
6948 |
"292 3D \n", |
|
|
6949 |
"293 3D \n", |
|
|
6950 |
"294 3D \n", |
|
|
6951 |
"295 3D \n", |
|
|
6952 |
"296 3D \n", |
|
|
6953 |
"297 3D \n", |
|
|
6954 |
"298 3D \n", |
|
|
6955 |
"299 3D \n", |
|
|
6956 |
"\n", |
|
|
6957 |
" diagnostics_Image-original_Spacing ... \\\n", |
|
|
6958 |
"0 (1.0, 1.0, 1.0) ... \n", |
|
|
6959 |
"1 None ... \n", |
|
|
6960 |
"2 (1.0, 1.0, 1.0) ... \n", |
|
|
6961 |
"3 (1.0, 1.0, 1.0) ... \n", |
|
|
6962 |
"4 (1.0, 1.0, 1.0) ... \n", |
|
|
6963 |
"5 (1.0, 1.0, 1.0) ... \n", |
|
|
6964 |
"6 (1.0, 1.0, 1.0) ... \n", |
|
|
6965 |
"7 (1.0, 1.0, 1.0) ... \n", |
|
|
6966 |
"8 (1.0, 1.0, 1.0) ... \n", |
|
|
6967 |
"9 (1.0, 1.0, 1.0) ... \n", |
|
|
6968 |
"10 (1.0, 1.0, 1.0) ... \n", |
|
|
6969 |
"11 (1.0, 1.0, 1.0) ... \n", |
|
|
6970 |
"12 (1.0, 1.0, 1.0) ... \n", |
|
|
6971 |
"13 (1.0, 1.0, 1.0) ... \n", |
|
|
6972 |
"14 (1.0, 1.0, 1.0) ... \n", |
|
|
6973 |
"15 (1.0, 1.0, 1.0) ... \n", |
|
|
6974 |
"16 (1.0, 1.0, 1.0) ... \n", |
|
|
6975 |
"17 (1.0, 1.0, 1.0) ... \n", |
|
|
6976 |
"18 (1.0, 1.0, 1.0) ... \n", |
|
|
6977 |
"19 (1.0, 1.0, 1.0) ... \n", |
|
|
6978 |
"20 (1.0, 1.0, 1.0) ... \n", |
|
|
6979 |
"21 (1.0, 1.0, 1.0) ... \n", |
|
|
6980 |
"22 (1.0, 1.0, 1.0) ... \n", |
|
|
6981 |
"23 (1.0, 1.0, 1.0) ... \n", |
|
|
6982 |
"24 (1.0, 1.0, 1.0) ... \n", |
|
|
6983 |
"25 (1.0, 1.0, 1.0) ... \n", |
|
|
6984 |
"26 (1.0, 1.0, 1.0) ... \n", |
|
|
6985 |
"27 (1.0, 1.0, 1.0) ... \n", |
|
|
6986 |
"28 (1.0, 1.0, 1.0) ... \n", |
|
|
6987 |
"29 (1.0, 1.0, 1.0) ... \n", |
|
|
6988 |
".. ... ... \n", |
|
|
6989 |
"270 (1.0, 1.0, 1.0) ... \n", |
|
|
6990 |
"271 (1.0, 1.0, 1.0) ... \n", |
|
|
6991 |
"272 (1.0, 1.0, 1.0) ... \n", |
|
|
6992 |
"273 (1.0, 1.0, 1.0) ... \n", |
|
|
6993 |
"274 (1.0, 1.0, 1.0) ... \n", |
|
|
6994 |
"275 (1.0, 1.0, 1.0) ... \n", |
|
|
6995 |
"276 (1.0, 1.0, 1.0) ... \n", |
|
|
6996 |
"277 None ... \n", |
|
|
6997 |
"278 (1.0, 1.0, 1.0) ... \n", |
|
|
6998 |
"279 (1.0, 1.0, 1.0) ... \n", |
|
|
6999 |
"280 (1.0, 1.0, 1.0) ... \n", |
|
|
7000 |
"281 (1.0, 1.0, 1.0) ... \n", |
|
|
7001 |
"282 (1.0, 1.0, 1.0) ... \n", |
|
|
7002 |
"283 (1.0, 1.0, 1.0) ... \n", |
|
|
7003 |
"284 (1.0, 1.0, 1.0) ... \n", |
|
|
7004 |
"285 (1.0, 1.0, 1.0) ... \n", |
|
|
7005 |
"286 (1.0, 1.0, 1.0) ... \n", |
|
|
7006 |
"287 (1.0, 1.0, 1.0) ... \n", |
|
|
7007 |
"288 (1.0, 1.0, 1.0) ... \n", |
|
|
7008 |
"289 (1.0, 1.0, 1.0) ... \n", |
|
|
7009 |
"290 (1.0, 1.0, 1.0) ... \n", |
|
|
7010 |
"291 (1.0, 1.0, 1.0) ... \n", |
|
|
7011 |
"292 (1.0, 1.0, 1.0) ... \n", |
|
|
7012 |
"293 (1.0, 1.0, 1.0) ... \n", |
|
|
7013 |
"294 (1.0, 1.0, 1.0) ... \n", |
|
|
7014 |
"295 (1.0, 1.0, 1.0) ... \n", |
|
|
7015 |
"296 (1.0, 1.0, 1.0) ... \n", |
|
|
7016 |
"297 (1.0, 1.0, 1.0) ... \n", |
|
|
7017 |
"298 (1.0, 1.0, 1.0) ... \n", |
|
|
7018 |
"299 (1.0, 1.0, 1.0) ... \n", |
|
|
7019 |
"\n", |
|
|
7020 |
" original_glszm_SmallAreaLowGrayLevelEmphasis original_glszm_ZoneEntropy \\\n", |
|
|
7021 |
"0 0.0014159294924583742 7.440152780881469 \n", |
|
|
7022 |
"1 None None \n", |
|
|
7023 |
"2 0.0011823588904757247 8.05320738907593 \n", |
|
|
7024 |
"3 0.006010770464847511 6.445624212509823 \n", |
|
|
7025 |
"4 0.0010591164492006718 7.968079701923623 \n", |
|
|
7026 |
"5 0.002603921296331485 6.902112459727654 \n", |
|
|
7027 |
"6 0.006495320016546854 5.951022804375938 \n", |
|
|
7028 |
"7 0.0024816657630558495 7.187488219746435 \n", |
|
|
7029 |
"8 0.002710463401557397 7.163170755024512 \n", |
|
|
7030 |
"9 0.0011997397769629755 7.300068195325571 \n", |
|
|
7031 |
"10 0.001446299567661113 7.1482289392513 \n", |
|
|
7032 |
"11 0.005795213208560181 6.717746514400345 \n", |
|
|
7033 |
"12 0.0024163820170306216 6.925315419808879 \n", |
|
|
7034 |
"13 0.0011862493145998437 7.81034796797381 \n", |
|
|
7035 |
"14 0.0036028534742678056 7.119603520516285 \n", |
|
|
7036 |
"15 0.0014782033379319083 7.219255031854712 \n", |
|
|
7037 |
"16 0.006907860635189329 5.950434128790246 \n", |
|
|
7038 |
"17 0.008796740018479512 6.767227329727602 \n", |
|
|
7039 |
"18 0.001557470188282822 7.090255023506899 \n", |
|
|
7040 |
"19 0.005713686201900686 6.663476366367941 \n", |
|
|
7041 |
"20 0.002264241467467257 7.528535891348224 \n", |
|
|
7042 |
"21 0.0033701014182111544 7.075213534864172 \n", |
|
|
7043 |
"22 0.004478892194681272 7.364049968847478 \n", |
|
|
7044 |
"23 0.0009684034975278726 7.872772219592215 \n", |
|
|
7045 |
"24 0.002908885356763631 6.21075337013764 \n", |
|
|
7046 |
"25 0.0036208752790588663 6.471723959457549 \n", |
|
|
7047 |
"26 0.0016532951269105337 6.838362747834132 \n", |
|
|
7048 |
"27 0.021777146613668082 7.056734031952162 \n", |
|
|
7049 |
"28 0.0009976370361452303 8.39840409320068 \n", |
|
|
7050 |
"29 0.0033161139862184735 6.804784763626182 \n", |
|
|
7051 |
".. ... ... \n", |
|
|
7052 |
"270 0.0013509056343411852 7.334743201676842 \n", |
|
|
7053 |
"271 0.0019692452410667548 7.9000586359461815 \n", |
|
|
7054 |
"272 0.002567791612340664 6.825974708094388 \n", |
|
|
7055 |
"273 0.002449529032387442 7.03977569882979 \n", |
|
|
7056 |
"274 0.001188144214303948 6.976727623008532 \n", |
|
|
7057 |
"275 0.0040470839458114785 6.846158783236782 \n", |
|
|
7058 |
"276 0.00525405309115141 6.55191775162472 \n", |
|
|
7059 |
"277 None None \n", |
|
|
7060 |
"278 0.006589831902850517 7.0671533446542965 \n", |
|
|
7061 |
"279 0.005627222696726434 6.550081582231421 \n", |
|
|
7062 |
"280 0.013458602554774874 6.04821530110506 \n", |
|
|
7063 |
"281 0.0015301414395284903 7.646380857897902 \n", |
|
|
7064 |
"282 0.004051975410363078 7.242046172265801 \n", |
|
|
7065 |
"283 0.0006413234112890079 7.798182267442231 \n", |
|
|
7066 |
"284 0.0035480536801734733 6.6473961935836945 \n", |
|
|
7067 |
"285 0.0012063108774522946 6.882178339194774 \n", |
|
|
7068 |
"286 0.0012319263252038477 7.8933278381056 \n", |
|
|
7069 |
"287 0.0020569151726012825 6.571034755408902 \n", |
|
|
7070 |
"288 0.006484712470781652 7.23711945965005 \n", |
|
|
7071 |
"289 0.008811934129441581 6.701676551721465 \n", |
|
|
7072 |
"290 0.006770147293067898 6.952412289621788 \n", |
|
|
7073 |
"291 0.0024171542507320154 7.330891561603395 \n", |
|
|
7074 |
"292 0.0022795548924627387 7.07594981121275 \n", |
|
|
7075 |
"293 0.0013668590884197568 7.145910841724713 \n", |
|
|
7076 |
"294 0.004925179088727158 6.249158476178194 \n", |
|
|
7077 |
"295 0.0034716709513483517 6.851172015303249 \n", |
|
|
7078 |
"296 0.0009330478283055931 7.191221582685593 \n", |
|
|
7079 |
"297 0.0014120863820929132 7.270939877512328 \n", |
|
|
7080 |
"298 0.001188057281603964 6.48495288861754 \n", |
|
|
7081 |
"299 0.001097302326903002 7.554262894196348 \n", |
|
|
7082 |
"\n", |
|
|
7083 |
" original_glszm_ZonePercentage original_glszm_ZoneVariance \\\n", |
|
|
7084 |
"0 0.05065013935430697 811080.0103191268 \n", |
|
|
7085 |
"1 None None \n", |
|
|
7086 |
"2 0.12583400659035412 43542.93247932123 \n", |
|
|
7087 |
"3 0.03442424242424243 78052.2017952787 \n", |
|
|
7088 |
"4 0.05924262819164598 611132.025210262 \n", |
|
|
7089 |
"5 0.3567645642753972 297.2954117880604 \n", |
|
|
7090 |
"6 0.36528028933092227 156.28264385844525 \n", |
|
|
7091 |
"7 0.22692146021275908 12552.147271933809 \n", |
|
|
7092 |
"8 0.06724826260535266 210087.6836985185 \n", |
|
|
7093 |
"9 0.02935379145087733 686026.4747536255 \n", |
|
|
7094 |
"10 0.15515759871890014 29405.39059390769 \n", |
|
|
7095 |
"11 0.3448 234.74565346511557 \n", |
|
|
7096 |
"12 0.1128870157237802 30505.587363138762 \n", |
|
|
7097 |
"13 0.129630196300433 141833.43206893734 \n", |
|
|
7098 |
"14 0.2674930680150057 362.57364626710296 \n", |
|
|
7099 |
"15 0.14935017443263682 182536.6243364634 \n", |
|
|
7100 |
"16 0.44931506849315067 13.595441701368234 \n", |
|
|
7101 |
"17 0.5231710871466045 6.291318037569541 \n", |
|
|
7102 |
"18 0.12212354450365108 33589.52913567098 \n", |
|
|
7103 |
"19 0.08957553058676654 2804.8407774769635 \n", |
|
|
7104 |
"20 0.09316935914228884 393164.94835038495 \n", |
|
|
7105 |
"21 0.2759607607275442 10391.770094986245 \n", |
|
|
7106 |
"22 0.3871370033849991 19.054420979222684 \n", |
|
|
7107 |
"23 0.08349834468923295 338809.6860428674 \n", |
|
|
7108 |
"24 0.2940793754066363 508.0719467068682 \n", |
|
|
7109 |
"25 0.2441846153846154 1028.5670340038862 \n", |
|
|
7110 |
"26 0.0632 413156.0150660787 \n", |
|
|
7111 |
"27 0.40493946731234864 42.56478399309962 \n", |
|
|
7112 |
"28 0.08230140065349956 96503.69110517327 \n", |
|
|
7113 |
"29 0.537030657940062 11.146471830061621 \n", |
|
|
7114 |
".. ... ... \n", |
|
|
7115 |
"270 0.10878951426368542 151378.24478776962 \n", |
|
|
7116 |
"271 0.08376924595341492 220261.32511390524 \n", |
|
|
7117 |
"272 0.2281795511221945 6672.7729771199265 \n", |
|
|
7118 |
"273 0.3181305671439847 2010.213896679345 \n", |
|
|
7119 |
"274 0.05125079055449302 785969.9310955203 \n", |
|
|
7120 |
"275 0.37414187643020597 44.474988076200106 \n", |
|
|
7121 |
"276 0.606694560669456 15.632940377102088 \n", |
|
|
7122 |
"277 None None \n", |
|
|
7123 |
"278 0.4437893081761006 246.6913640781993 \n", |
|
|
7124 |
"279 0.3996039603960396 552.115206943259 \n", |
|
|
7125 |
"280 0.5420054200542005 13.375975 \n", |
|
|
7126 |
"281 0.099608564522684 430181.2842743045 \n", |
|
|
7127 |
"282 0.34307331072267155 471.2459778224349 \n", |
|
|
7128 |
"283 0.0388714323834211 1169320.639178522 \n", |
|
|
7129 |
"284 0.34747953468332615 293.73771845232994 \n", |
|
|
7130 |
"285 0.10538428754084388 64958.019090796675 \n", |
|
|
7131 |
"286 0.072210806883672 360760.9957643357 \n", |
|
|
7132 |
"287 0.1251088534107402 12439.00459192188 \n", |
|
|
7133 |
"288 0.31466227347611203 58.72747457580659 \n", |
|
|
7134 |
"289 0.43752224991100036 50.187758409630035 \n", |
|
|
7135 |
"290 0.30294224482382853 30.627648959968717 \n", |
|
|
7136 |
"291 0.13907009111780277 197768.12486732987 \n", |
|
|
7137 |
"292 0.07099136711010473 118227.7737772126 \n", |
|
|
7138 |
"293 0.1150902216347484 49869.243988601134 \n", |
|
|
7139 |
"294 0.1514792899408284 2507.5990600585938 \n", |
|
|
7140 |
"295 0.49042762569332615 74.93718462505596 \n", |
|
|
7141 |
"296 0.11898630457684654 33177.88718244393 \n", |
|
|
7142 |
"297 0.12680162496159492 178502.5383939068 \n", |
|
|
7143 |
"298 0.26303701849291955 15103.022310945464 \n", |
|
|
7144 |
"299 0.1586560079940045 11468.585913232464 \n", |
|
|
7145 |
"\n", |
|
|
7146 |
" original_ngtdm_Busyness original_ngtdm_Coarseness \\\n", |
|
|
7147 |
"0 4.638003576181803 5.446082904968082e-05 \n", |
|
|
7148 |
"1 None None \n", |
|
|
7149 |
"2 1.2453260036682692 0.000216962582959674 \n", |
|
|
7150 |
"3 0.3192361746468855 0.0011584858008878434 \n", |
|
|
7151 |
"4 3.6014025715567675 5.676665846302051e-05 \n", |
|
|
7152 |
"5 0.29144824075065945 0.002476095943858015 \n", |
|
|
7153 |
"6 0.09501105398887026 0.007916250096069312 \n", |
|
|
7154 |
"7 0.718215089001439 0.0005338474193486882 \n", |
|
|
7155 |
"8 3.411742942537483 0.00014734084864731234 \n", |
|
|
7156 |
"9 3.568586114684688 9.763512851495345e-05 \n", |
|
|
7157 |
"10 1.2292764344076512 0.0002473928805907371 \n", |
|
|
7158 |
"11 0.21531070583514791 0.004311672555854459 \n", |
|
|
7159 |
"12 0.7435117485030087 0.0004070436981795229 \n", |
|
|
7160 |
"13 2.5739529880840752 7.523836316655893e-05 \n", |
|
|
7161 |
"14 0.24853563488531313 0.0038810862563832234 \n", |
|
|
7162 |
"15 6.7939657787905325 3.2568551442329724e-05 \n", |
|
|
7163 |
"16 0.07775376602305296 0.015311698238793617 \n", |
|
|
7164 |
"17 0.7443653978587913 0.0025182204955828675 \n", |
|
|
7165 |
"18 0.7661707437541035 0.0004014305095663808 \n", |
|
|
7166 |
"19 0.08874752350635252 0.003560695223905199 \n", |
|
|
7167 |
"20 5.069998381229161 3.8983071733322356e-05 \n", |
|
|
7168 |
"21 1.869546784202216 0.0002989103733588873 \n", |
|
|
7169 |
"22 0.9716861284774899 0.0005216460612959262 \n", |
|
|
7170 |
"23 2.992659970348785 5.4133503542378135e-05 \n", |
|
|
7171 |
"24 0.22134234614219983 0.003224851038770374 \n", |
|
|
7172 |
"25 0.6573836988450625 0.0013299692055761766 \n", |
|
|
7173 |
"26 2.1830571653224937 0.0001267737666582638 \n", |
|
|
7174 |
"27 2.3900556049024786 0.0008861569387576326 \n", |
|
|
7175 |
"28 0.960775376291332 0.0001967858309645778 \n", |
|
|
7176 |
"29 0.24075557855225987 0.0031409559177572096 \n", |
|
|
7177 |
".. ... ... \n", |
|
|
7178 |
"270 2.3428187121503 0.00010627521367141708 \n", |
|
|
7179 |
"271 1.6669130507706895 0.00014576756906747247 \n", |
|
|
7180 |
"272 0.661894902033628 0.0006908799968563485 \n", |
|
|
7181 |
"273 0.47142096946338186 0.0005808740155667074 \n", |
|
|
7182 |
"274 3.8016278198652 7.172777262168633e-05 \n", |
|
|
7183 |
"275 0.24104344071650663 0.006761312245770574 \n", |
|
|
7184 |
"276 0.13843509755321795 0.004142410708728122 \n", |
|
|
7185 |
"277 None None \n", |
|
|
7186 |
"278 0.4448591428677588 0.0009309076781772361 \n", |
|
|
7187 |
"279 0.3406755410988624 0.0016397185525391935 \n", |
|
|
7188 |
"280 0.17587494256212904 0.009829106273203849 \n", |
|
|
7189 |
"281 4.2834973475769695 4.700103179431201e-05 \n", |
|
|
7190 |
"282 0.8400071965018975 0.0006237280431003554 \n", |
|
|
7191 |
"283 3.0262035180871107 5.898416096653614e-05 \n", |
|
|
7192 |
"284 0.22660862047737765 0.003090580429514026 \n", |
|
|
7193 |
"285 0.8471429838520521 0.00030675371502693913 \n", |
|
|
7194 |
"286 4.930224271693016 6.036582705246826e-05 \n", |
|
|
7195 |
"287 0.29744431273028565 0.0010174313134883484 \n", |
|
|
7196 |
"288 0.5158288121371688 0.0027654406480975223 \n", |
|
|
7197 |
"289 0.46254213662699145 0.0035905102005092037 \n", |
|
|
7198 |
"290 0.6162018511528478 0.004286336952447301 \n", |
|
|
7199 |
"291 4.1309684414738355 6.436628041355792e-05 \n", |
|
|
7200 |
"292 1.7964205258101962 0.0002336631674081431 \n", |
|
|
7201 |
"293 1.1299741182486778 0.0002904036457603399 \n", |
|
|
7202 |
"294 0.1451505844745803 0.0038360669881133324 \n", |
|
|
7203 |
"295 0.30613229794075314 0.0019058445125772411 \n", |
|
|
7204 |
"296 0.6963962032944083 0.00045734758147107147 \n", |
|
|
7205 |
"297 2.9873556461496684 8.530118049780416e-05 \n", |
|
|
7206 |
"298 3.2747617934032998 7.335600874277254e-05 \n", |
|
|
7207 |
"299 1.6001781072780072 0.0003116465126409293 \n", |
|
|
7208 |
"\n", |
|
|
7209 |
" original_ngtdm_Complexity original_ngtdm_Contrast \\\n", |
|
|
7210 |
"0 1208.990130928983 0.004242342429635777 \n", |
|
|
7211 |
"1 None None \n", |
|
|
7212 |
"2 2124.6732991252165 0.029745506287594543 \n", |
|
|
7213 |
"3 493.9439694152586 0.004182293302986566 \n", |
|
|
7214 |
"4 1723.9199416906906 0.009181368148031591 \n", |
|
|
7215 |
"5 1625.667447850248 0.23602064618873433 \n", |
|
|
7216 |
"6 1518.545746076143 0.18237875682701976 \n", |
|
|
7217 |
"7 1647.829002575773 0.15172573955141086 \n", |
|
|
7218 |
"8 571.386299734884 0.019888263426672353 \n", |
|
|
7219 |
"9 684.5476765671239 0.004234913657332878 \n", |
|
|
7220 |
"10 1679.6737560912095 0.07042559391726383 \n", |
|
|
7221 |
"11 1120.3790957642361 0.26061068807854054 \n", |
|
|
7222 |
"12 1253.528510770986 0.02491228994041788 \n", |
|
|
7223 |
"13 3783.570137452137 0.027978509760262837 \n", |
|
|
7224 |
"14 982.1963220743498 0.2629703327415735 \n", |
|
|
7225 |
"15 3274.4066226843884 0.05036177188228468 \n", |
|
|
7226 |
"16 1082.3433954985846 0.18711460911450706 \n", |
|
|
7227 |
"17 4106.131295341815 0.37330474914344075 \n", |
|
|
7228 |
"18 1161.876057322675 0.059036952728628085 \n", |
|
|
7229 |
"19 1478.1495036217834 0.034767170274454084 \n", |
|
|
7230 |
"20 2430.5623771889923 0.028673775438350833 \n", |
|
|
7231 |
"21 1480.497558524571 0.24212596764408367 \n", |
|
|
7232 |
"22 11917.081383411622 0.08934411615858587 \n", |
|
|
7233 |
"23 2963.8876188000413 0.009854556161924995 \n", |
|
|
7234 |
"24 1146.8938909447143 0.13475547967437387 \n", |
|
|
7235 |
"25 1071.3662241422517 0.10377605682359203 \n", |
|
|
7236 |
"26 749.9158351824378 0.012066473305202052 \n", |
|
|
7237 |
"27 3444.064111227163 0.4168759894986801 \n", |
|
|
7238 |
"28 2637.6172078158274 0.016261025617102468 \n", |
|
|
7239 |
"29 4109.773898836124 0.47306662438586555 \n", |
|
|
7240 |
".. ... ... \n", |
|
|
7241 |
"270 1630.6569147296443 0.024289031675709668 \n", |
|
|
7242 |
"271 2596.2892100343224 0.007389078129697386 \n", |
|
|
7243 |
"272 1279.881703279654 0.1073748552891916 \n", |
|
|
7244 |
"273 5713.776148060454 0.15799137588532178 \n", |
|
|
7245 |
"274 802.1590061468481 0.005318600659449717 \n", |
|
|
7246 |
"275 1082.9570011449448 0.325462943510588 \n", |
|
|
7247 |
"276 6602.780622433239 0.794694408241354 \n", |
|
|
7248 |
"277 None None \n", |
|
|
7249 |
"278 6051.920831005981 0.393646599803466 \n", |
|
|
7250 |
"279 2805.2378926059687 0.4780447536058001 \n", |
|
|
7251 |
"280 1946.6586907576063 0.6774027776887893 \n", |
|
|
7252 |
"281 2103.9007784109804 0.01967008852253595 \n", |
|
|
7253 |
"282 5623.218717544708 0.2087544094065177 \n", |
|
|
7254 |
"283 1515.553097825558 0.002113059538029328 \n", |
|
|
7255 |
"284 1522.0485246002622 0.21892236165194368 \n", |
|
|
7256 |
"285 1236.0951005573122 0.019229787808456775 \n", |
|
|
7257 |
"286 1493.771670493071 0.013861672716860611 \n", |
|
|
7258 |
"287 1278.7921708928616 0.01351499837994573 \n", |
|
|
7259 |
"288 1727.9117096660646 0.18551315272516028 \n", |
|
|
7260 |
"289 2114.520839730045 0.5692637413962094 \n", |
|
|
7261 |
"290 1271.7761450543444 0.15707384911545383 \n", |
|
|
7262 |
"291 1972.2212195012723 0.08447776667068141 \n", |
|
|
7263 |
"292 826.8131043088226 0.011342005558562589 \n", |
|
|
7264 |
"293 1061.7730623153855 0.05247136065944921 \n", |
|
|
7265 |
"294 817.1854007192372 0.021205055605598273 \n", |
|
|
7266 |
"295 4483.369981145554 0.4059673066951746 \n", |
|
|
7267 |
"296 1158.946560816182 0.030891254862908297 \n", |
|
|
7268 |
"297 1581.4318762827352 0.03681760304160888 \n", |
|
|
7269 |
"298 4964.471992006311 0.04802903758135621 \n", |
|
|
7270 |
"299 1329.9342126126633 0.09417826331276645 \n", |
|
|
7271 |
"\n", |
|
|
7272 |
" original_ngtdm_Strength patient_number \n", |
|
|
7273 |
"0 0.3528600071678195 002 \n", |
|
|
7274 |
"1 None 003 \n", |
|
|
7275 |
"2 0.593370980923771 004 \n", |
|
|
7276 |
"3 7.9263924028377275 005 \n", |
|
|
7277 |
"4 0.5111257271308385 007 \n", |
|
|
7278 |
"5 2.0443356629047984 008 \n", |
|
|
7279 |
"6 5.4164580535629065 011 \n", |
|
|
7280 |
"7 0.9576135144010168 014 \n", |
|
|
7281 |
"8 0.39281939193215354 015 \n", |
|
|
7282 |
"9 0.5179838137907027 016 \n", |
|
|
7283 |
"10 0.7519694951848688 017 \n", |
|
|
7284 |
"11 2.67177305342798 018 \n", |
|
|
7285 |
"12 1.34571279526463 020 \n", |
|
|
7286 |
"13 0.5198296269213483 021 \n", |
|
|
7287 |
"14 2.8692955397867865 022 \n", |
|
|
7288 |
"15 0.1461400249351767 023 \n", |
|
|
7289 |
"16 6.9985259560373505 024 \n", |
|
|
7290 |
"17 2.309729433318687 025 \n", |
|
|
7291 |
"18 1.1032477225643165 026 \n", |
|
|
7292 |
"19 13.176368854198525 029 \n", |
|
|
7293 |
"20 0.2824008653671039 030 \n", |
|
|
7294 |
"21 0.3691892591800383 031 \n", |
|
|
7295 |
"22 2.852184219608707 032 \n", |
|
|
7296 |
"23 0.5647399711839881 033 \n", |
|
|
7297 |
"24 2.7469204593263274 035 \n", |
|
|
7298 |
"25 0.8657919258745741 036 \n", |
|
|
7299 |
"26 0.9327402031053049 037 \n", |
|
|
7300 |
"27 1.2120189227048546 039 \n", |
|
|
7301 |
"28 1.3746116959447103 040 \n", |
|
|
7302 |
"29 2.9058133115381 042 \n", |
|
|
7303 |
".. ... ... \n", |
|
|
7304 |
"270 0.4606421181580048 383 \n", |
|
|
7305 |
"271 2.1377123840874988 384 \n", |
|
|
7306 |
"272 1.0214902995475954 385 \n", |
|
|
7307 |
"273 1.3758528190465993 386 \n", |
|
|
7308 |
"274 0.5216353800835233 388 \n", |
|
|
7309 |
"275 3.7278074028627395 389 \n", |
|
|
7310 |
"276 4.256762468826891 390 \n", |
|
|
7311 |
"277 None 391 \n", |
|
|
7312 |
"278 1.3731539230080159 392 \n", |
|
|
7313 |
"279 1.9222176385002876 393 \n", |
|
|
7314 |
"280 4.457299674693692 394 \n", |
|
|
7315 |
"281 0.3465010231383506 395 \n", |
|
|
7316 |
"282 1.4803864293788846 396 \n", |
|
|
7317 |
"283 0.7500047185247829 397 \n", |
|
|
7318 |
"284 2.4418282715080295 399 \n", |
|
|
7319 |
"285 1.6372599259696257 400 \n", |
|
|
7320 |
"286 0.2548237425906703 401 \n", |
|
|
7321 |
"287 3.338787114825903 402 \n", |
|
|
7322 |
"288 2.3146344390846925 403 \n", |
|
|
7323 |
"289 2.56546674426354 406 \n", |
|
|
7324 |
"290 2.7382195781328513 409 \n", |
|
|
7325 |
"291 0.2427139080026082 414 \n", |
|
|
7326 |
"292 0.552937640336374 416 \n", |
|
|
7327 |
"293 0.8228572805949378 417 \n", |
|
|
7328 |
"294 4.72171407908516 418 \n", |
|
|
7329 |
"295 1.9591626756590645 420 \n", |
|
|
7330 |
"296 1.3412094894571074 421 \n", |
|
|
7331 |
"297 0.35276480480378414 422 \n", |
|
|
7332 |
"298 0.2279646029225388 423 \n", |
|
|
7333 |
"299 0.3957467908267195 424 \n", |
|
|
7334 |
"\n", |
|
|
7335 |
"[300 rows x 130 columns]" |
|
|
7336 |
] |
|
|
7337 |
}, |
|
|
7338 |
"execution_count": 93, |
|
|
7339 |
"metadata": {}, |
|
|
7340 |
"output_type": "execute_result" |
|
|
7341 |
} |
|
|
7342 |
], |
|
|
7343 |
"source": [ |
|
|
7344 |
"df" |
|
|
7345 |
] |
|
|
7346 |
}, |
|
|
7347 |
{ |
|
|
7348 |
"cell_type": "code", |
|
|
7349 |
"execution_count": 99, |
|
|
7350 |
"metadata": {}, |
|
|
7351 |
"outputs": [ |
|
|
7352 |
{ |
|
|
7353 |
"data": { |
|
|
7354 |
"text/html": [ |
|
|
7355 |
"<div>\n", |
|
|
7356 |
"<style scoped>\n", |
|
|
7357 |
" .dataframe tbody tr th:only-of-type {\n", |
|
|
7358 |
" vertical-align: middle;\n", |
|
|
7359 |
" }\n", |
|
|
7360 |
"\n", |
|
|
7361 |
" .dataframe tbody tr th {\n", |
|
|
7362 |
" vertical-align: top;\n", |
|
|
7363 |
" }\n", |
|
|
7364 |
"\n", |
|
|
7365 |
" .dataframe thead th {\n", |
|
|
7366 |
" text-align: right;\n", |
|
|
7367 |
" }\n", |
|
|
7368 |
"</style>\n", |
|
|
7369 |
"<table border=\"1\" class=\"dataframe\">\n", |
|
|
7370 |
" <thead>\n", |
|
|
7371 |
" <tr style=\"text-align: right;\">\n", |
|
|
7372 |
" <th></th>\n", |
|
|
7373 |
" <th>diagnostics_Versions_PyRadiomics</th>\n", |
|
|
7374 |
" <th>diagnostics_Versions_Numpy</th>\n", |
|
|
7375 |
" <th>diagnostics_Versions_SimpleITK</th>\n", |
|
|
7376 |
" <th>diagnostics_Versions_PyWavelet</th>\n", |
|
|
7377 |
" <th>diagnostics_Versions_Python</th>\n", |
|
|
7378 |
" <th>diagnostics_Configuration_Settings</th>\n", |
|
|
7379 |
" <th>diagnostics_Configuration_EnabledImageTypes</th>\n", |
|
|
7380 |
" <th>diagnostics_Image-original_Hash</th>\n", |
|
|
7381 |
" <th>diagnostics_Image-original_Dimensionality</th>\n", |
|
|
7382 |
" <th>diagnostics_Image-original_Spacing</th>\n", |
|
|
7383 |
" <th>...</th>\n", |
|
|
7384 |
" <th>original_glszm_SmallAreaLowGrayLevelEmphasis</th>\n", |
|
|
7385 |
" <th>original_glszm_ZoneEntropy</th>\n", |
|
|
7386 |
" <th>original_glszm_ZonePercentage</th>\n", |
|
|
7387 |
" <th>original_glszm_ZoneVariance</th>\n", |
|
|
7388 |
" <th>original_ngtdm_Busyness</th>\n", |
|
|
7389 |
" <th>original_ngtdm_Coarseness</th>\n", |
|
|
7390 |
" <th>original_ngtdm_Complexity</th>\n", |
|
|
7391 |
" <th>original_ngtdm_Contrast</th>\n", |
|
|
7392 |
" <th>original_ngtdm_Strength</th>\n", |
|
|
7393 |
" <th>patient_number</th>\n", |
|
|
7394 |
" </tr>\n", |
|
|
7395 |
" </thead>\n", |
|
|
7396 |
" <tbody>\n", |
|
|
7397 |
" <tr>\n", |
|
|
7398 |
" <th>0</th>\n", |
|
|
7399 |
" <td>2.2.0</td>\n", |
|
|
7400 |
" <td>1.17.4</td>\n", |
|
|
7401 |
" <td>1.2.4</td>\n", |
|
|
7402 |
" <td>0.5.2</td>\n", |
|
|
7403 |
" <td>3.6.5</td>\n", |
|
|
7404 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7405 |
" <td>{'Original': {}}</td>\n", |
|
|
7406 |
" <td>a14c1903ca44b9c8bee21607abe86b6092e0e784</td>\n", |
|
|
7407 |
" <td>3D</td>\n", |
|
|
7408 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7409 |
" <td>...</td>\n", |
|
|
7410 |
" <td>0.00650396833685046</td>\n", |
|
|
7411 |
" <td>7.030494272641832</td>\n", |
|
|
7412 |
" <td>0.3864306784660767</td>\n", |
|
|
7413 |
" <td>88.6209195268341</td>\n", |
|
|
7414 |
" <td>0.3192207510507349</td>\n", |
|
|
7415 |
" <td>0.0029973859057788035</td>\n", |
|
|
7416 |
" <td>2400.7459995508075</td>\n", |
|
|
7417 |
" <td>0.2587860762411749</td>\n", |
|
|
7418 |
" <td>3.0193578055002153</td>\n", |
|
|
7419 |
" <td>000</td>\n", |
|
|
7420 |
" </tr>\n", |
|
|
7421 |
" <tr>\n", |
|
|
7422 |
" <th>1</th>\n", |
|
|
7423 |
" <td>2.2.0</td>\n", |
|
|
7424 |
" <td>1.17.4</td>\n", |
|
|
7425 |
" <td>1.2.4</td>\n", |
|
|
7426 |
" <td>0.5.2</td>\n", |
|
|
7427 |
" <td>3.6.5</td>\n", |
|
|
7428 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7429 |
" <td>{'Original': {}}</td>\n", |
|
|
7430 |
" <td>012bee7c6eb8bc6eb005674e2786b955b3f2d343</td>\n", |
|
|
7431 |
" <td>3D</td>\n", |
|
|
7432 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7433 |
" <td>...</td>\n", |
|
|
7434 |
" <td>0.0011372251755402353</td>\n", |
|
|
7435 |
" <td>7.056755551475125</td>\n", |
|
|
7436 |
" <td>0.16735686583842765</td>\n", |
|
|
7437 |
" <td>28829.700225615623</td>\n", |
|
|
7438 |
" <td>1.0432795311296523</td>\n", |
|
|
7439 |
" <td>0.000299498303363116</td>\n", |
|
|
7440 |
" <td>1503.157610147304</td>\n", |
|
|
7441 |
" <td>0.05499763926588297</td>\n", |
|
|
7442 |
" <td>0.8124728927622762</td>\n", |
|
|
7443 |
" <td>001</td>\n", |
|
|
7444 |
" </tr>\n", |
|
|
7445 |
" <tr>\n", |
|
|
7446 |
" <th>2</th>\n", |
|
|
7447 |
" <td>2.2.0</td>\n", |
|
|
7448 |
" <td>1.17.4</td>\n", |
|
|
7449 |
" <td>1.2.4</td>\n", |
|
|
7450 |
" <td>0.5.2</td>\n", |
|
|
7451 |
" <td>3.6.5</td>\n", |
|
|
7452 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7453 |
" <td>{'Original': {}}</td>\n", |
|
|
7454 |
" <td>57504b176455455b107b42a27734198353b891b5</td>\n", |
|
|
7455 |
" <td>3D</td>\n", |
|
|
7456 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7457 |
" <td>...</td>\n", |
|
|
7458 |
" <td>0.0030927233376598366</td>\n", |
|
|
7459 |
" <td>7.295787467156062</td>\n", |
|
|
7460 |
" <td>0.16808601234830742</td>\n", |
|
|
7461 |
" <td>9195.18109360467</td>\n", |
|
|
7462 |
" <td>0.4240922951318243</td>\n", |
|
|
7463 |
" <td>0.0009696911689902665</td>\n", |
|
|
7464 |
" <td>1549.136212300552</td>\n", |
|
|
7465 |
" <td>0.04406541279692153</td>\n", |
|
|
7466 |
" <td>1.8312712830615954</td>\n", |
|
|
7467 |
" <td>006</td>\n", |
|
|
7468 |
" </tr>\n", |
|
|
7469 |
" <tr>\n", |
|
|
7470 |
" <th>3</th>\n", |
|
|
7471 |
" <td>2.2.0</td>\n", |
|
|
7472 |
" <td>1.17.4</td>\n", |
|
|
7473 |
" <td>1.2.4</td>\n", |
|
|
7474 |
" <td>0.5.2</td>\n", |
|
|
7475 |
" <td>3.6.5</td>\n", |
|
|
7476 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7477 |
" <td>{'Original': {}}</td>\n", |
|
|
7478 |
" <td>466571f330c0e12c21c0e6b2ee64953b043a074a</td>\n", |
|
|
7479 |
" <td>3D</td>\n", |
|
|
7480 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7481 |
" <td>...</td>\n", |
|
|
7482 |
" <td>0.011458708772295158</td>\n", |
|
|
7483 |
" <td>7.0290292656028655</td>\n", |
|
|
7484 |
" <td>0.466265441875198</td>\n", |
|
|
7485 |
" <td>11.03069203021621</td>\n", |
|
|
7486 |
" <td>3.3630953665269554</td>\n", |
|
|
7487 |
" <td>0.00046453293179421864</td>\n", |
|
|
7488 |
" <td>5166.658333866696</td>\n", |
|
|
7489 |
" <td>0.2505568367343866</td>\n", |
|
|
7490 |
" <td>0.7531802976962354</td>\n", |
|
|
7491 |
" <td>009</td>\n", |
|
|
7492 |
" </tr>\n", |
|
|
7493 |
" <tr>\n", |
|
|
7494 |
" <th>4</th>\n", |
|
|
7495 |
" <td>2.2.0</td>\n", |
|
|
7496 |
" <td>1.17.4</td>\n", |
|
|
7497 |
" <td>1.2.4</td>\n", |
|
|
7498 |
" <td>0.5.2</td>\n", |
|
|
7499 |
" <td>3.6.5</td>\n", |
|
|
7500 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7501 |
" <td>{'Original': {}}</td>\n", |
|
|
7502 |
" <td>e85f367b7409c24d3dda412f0616f26da1ea8d55</td>\n", |
|
|
7503 |
" <td>3D</td>\n", |
|
|
7504 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7505 |
" <td>...</td>\n", |
|
|
7506 |
" <td>0.001263275408950132</td>\n", |
|
|
7507 |
" <td>7.296961213716396</td>\n", |
|
|
7508 |
" <td>0.11617878762749813</td>\n", |
|
|
7509 |
" <td>64430.20175176771</td>\n", |
|
|
7510 |
" <td>0.8221696618971971</td>\n", |
|
|
7511 |
" <td>0.00016990275935880697</td>\n", |
|
|
7512 |
" <td>5325.885346788066</td>\n", |
|
|
7513 |
" <td>0.010699961481524708</td>\n", |
|
|
7514 |
" <td>2.6618141092070435</td>\n", |
|
|
7515 |
" <td>010</td>\n", |
|
|
7516 |
" </tr>\n", |
|
|
7517 |
" <tr>\n", |
|
|
7518 |
" <th>5</th>\n", |
|
|
7519 |
" <td>2.2.0</td>\n", |
|
|
7520 |
" <td>1.17.4</td>\n", |
|
|
7521 |
" <td>1.2.4</td>\n", |
|
|
7522 |
" <td>0.5.2</td>\n", |
|
|
7523 |
" <td>3.6.5</td>\n", |
|
|
7524 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7525 |
" <td>{'Original': {}}</td>\n", |
|
|
7526 |
" <td>ad9134c02294af33a76dd455adb2ea656e73d0bb</td>\n", |
|
|
7527 |
" <td>3D</td>\n", |
|
|
7528 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7529 |
" <td>...</td>\n", |
|
|
7530 |
" <td>0.0032969046158858</td>\n", |
|
|
7531 |
" <td>6.8678024800660165</td>\n", |
|
|
7532 |
" <td>0.34163816967920535</td>\n", |
|
|
7533 |
" <td>544.6214691280725</td>\n", |
|
|
7534 |
" <td>0.2863143301056496</td>\n", |
|
|
7535 |
" <td>0.0025691941507084907</td>\n", |
|
|
7536 |
" <td>1379.2028413909507</td>\n", |
|
|
7537 |
" <td>0.2628539609310901</td>\n", |
|
|
7538 |
" <td>2.0394846613420556</td>\n", |
|
|
7539 |
" <td>012</td>\n", |
|
|
7540 |
" </tr>\n", |
|
|
7541 |
" <tr>\n", |
|
|
7542 |
" <th>6</th>\n", |
|
|
7543 |
" <td>2.2.0</td>\n", |
|
|
7544 |
" <td>1.17.4</td>\n", |
|
|
7545 |
" <td>1.2.4</td>\n", |
|
|
7546 |
" <td>0.5.2</td>\n", |
|
|
7547 |
" <td>3.6.5</td>\n", |
|
|
7548 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7549 |
" <td>{'Original': {}}</td>\n", |
|
|
7550 |
" <td>d37a13f547ac65b0c300c7a8bfee84b3115e7c8c</td>\n", |
|
|
7551 |
" <td>3D</td>\n", |
|
|
7552 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7553 |
" <td>...</td>\n", |
|
|
7554 |
" <td>0.0029809603474066533</td>\n", |
|
|
7555 |
" <td>7.738243027132657</td>\n", |
|
|
7556 |
" <td>0.03732633079136861</td>\n", |
|
|
7557 |
" <td>1309263.1233864485</td>\n", |
|
|
7558 |
" <td>7.805748110033149</td>\n", |
|
|
7559 |
" <td>4.954695416944482e-05</td>\n", |
|
|
7560 |
" <td>822.2480054589579</td>\n", |
|
|
7561 |
" <td>0.004100770738762614</td>\n", |
|
|
7562 |
" <td>0.2195195589714611</td>\n", |
|
|
7563 |
" <td>013</td>\n", |
|
|
7564 |
" </tr>\n", |
|
|
7565 |
" <tr>\n", |
|
|
7566 |
" <th>7</th>\n", |
|
|
7567 |
" <td>2.2.0</td>\n", |
|
|
7568 |
" <td>1.17.4</td>\n", |
|
|
7569 |
" <td>1.2.4</td>\n", |
|
|
7570 |
" <td>0.5.2</td>\n", |
|
|
7571 |
" <td>3.6.5</td>\n", |
|
|
7572 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7573 |
" <td>{'Original': {}}</td>\n", |
|
|
7574 |
" <td>9f427e296f28dcda6c8ba2256469bf910fc1fdf0</td>\n", |
|
|
7575 |
" <td>3D</td>\n", |
|
|
7576 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7577 |
" <td>...</td>\n", |
|
|
7578 |
" <td>0.00517823384912288</td>\n", |
|
|
7579 |
" <td>6.614141307851755</td>\n", |
|
|
7580 |
" <td>0.3871290430143381</td>\n", |
|
|
7581 |
" <td>45.285296393483</td>\n", |
|
|
7582 |
" <td>0.2705994297708851</td>\n", |
|
|
7583 |
" <td>0.004530731014635755</td>\n", |
|
|
7584 |
" <td>1220.8504664217726</td>\n", |
|
|
7585 |
" <td>0.20120530288705538</td>\n", |
|
|
7586 |
" <td>2.1775998993460277</td>\n", |
|
|
7587 |
" <td>019</td>\n", |
|
|
7588 |
" </tr>\n", |
|
|
7589 |
" <tr>\n", |
|
|
7590 |
" <th>8</th>\n", |
|
|
7591 |
" <td>2.2.0</td>\n", |
|
|
7592 |
" <td>1.17.4</td>\n", |
|
|
7593 |
" <td>1.2.4</td>\n", |
|
|
7594 |
" <td>0.5.2</td>\n", |
|
|
7595 |
" <td>3.6.5</td>\n", |
|
|
7596 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7597 |
" <td>{'Original': {}}</td>\n", |
|
|
7598 |
" <td>65e056af2c7644355d20656e3143dd6ec4212f41</td>\n", |
|
|
7599 |
" <td>3D</td>\n", |
|
|
7600 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7601 |
" <td>...</td>\n", |
|
|
7602 |
" <td>0.0010366632480026004</td>\n", |
|
|
7603 |
" <td>7.11280310139011</td>\n", |
|
|
7604 |
" <td>0.0696949112495939</td>\n", |
|
|
7605 |
" <td>605556.5375066835</td>\n", |
|
|
7606 |
" <td>4.077923636426653</td>\n", |
|
|
7607 |
" <td>6.20967645037254e-05</td>\n", |
|
|
7608 |
" <td>1006.0517011238957</td>\n", |
|
|
7609 |
" <td>0.010350257260902742</td>\n", |
|
|
7610 |
" <td>0.4301401259562533</td>\n", |
|
|
7611 |
" <td>027</td>\n", |
|
|
7612 |
" </tr>\n", |
|
|
7613 |
" <tr>\n", |
|
|
7614 |
" <th>9</th>\n", |
|
|
7615 |
" <td>2.2.0</td>\n", |
|
|
7616 |
" <td>1.17.4</td>\n", |
|
|
7617 |
" <td>1.2.4</td>\n", |
|
|
7618 |
" <td>0.5.2</td>\n", |
|
|
7619 |
" <td>3.6.5</td>\n", |
|
|
7620 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7621 |
" <td>{'Original': {}}</td>\n", |
|
|
7622 |
" <td>f59894d720e8d39348e9565d038b4d67f5b75b73</td>\n", |
|
|
7623 |
" <td>3D</td>\n", |
|
|
7624 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7625 |
" <td>...</td>\n", |
|
|
7626 |
" <td>0.010479469010200998</td>\n", |
|
|
7627 |
" <td>7.093423309251276</td>\n", |
|
|
7628 |
" <td>0.5298420976387078</td>\n", |
|
|
7629 |
" <td>43.43556805391967</td>\n", |
|
|
7630 |
" <td>0.8254093902613867</td>\n", |
|
|
7631 |
" <td>0.0006990957187612052</td>\n", |
|
|
7632 |
" <td>11044.45288293424</td>\n", |
|
|
7633 |
" <td>0.41551539995882586</td>\n", |
|
|
7634 |
" <td>1.6537484042783042</td>\n", |
|
|
7635 |
" <td>028</td>\n", |
|
|
7636 |
" </tr>\n", |
|
|
7637 |
" <tr>\n", |
|
|
7638 |
" <th>10</th>\n", |
|
|
7639 |
" <td>2.2.0</td>\n", |
|
|
7640 |
" <td>1.17.4</td>\n", |
|
|
7641 |
" <td>1.2.4</td>\n", |
|
|
7642 |
" <td>0.5.2</td>\n", |
|
|
7643 |
" <td>3.6.5</td>\n", |
|
|
7644 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7645 |
" <td>{'Original': {}}</td>\n", |
|
|
7646 |
" <td>650e3ddb43a406163856a490d35b09e1757e9a8a</td>\n", |
|
|
7647 |
" <td>3D</td>\n", |
|
|
7648 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7649 |
" <td>...</td>\n", |
|
|
7650 |
" <td>0.0013135666223513395</td>\n", |
|
|
7651 |
" <td>7.290249750775166</td>\n", |
|
|
7652 |
" <td>0.08715231366558462</td>\n", |
|
|
7653 |
" <td>106691.33898015402</td>\n", |
|
|
7654 |
" <td>1.6728991723332216</td>\n", |
|
|
7655 |
" <td>0.0001561327523102608</td>\n", |
|
|
7656 |
" <td>1593.5885238173992</td>\n", |
|
|
7657 |
" <td>0.010860246929524961</td>\n", |
|
|
7658 |
" <td>0.7415849420946503</td>\n", |
|
|
7659 |
" <td>034</td>\n", |
|
|
7660 |
" </tr>\n", |
|
|
7661 |
" <tr>\n", |
|
|
7662 |
" <th>11</th>\n", |
|
|
7663 |
" <td>2.2.0</td>\n", |
|
|
7664 |
" <td>1.17.4</td>\n", |
|
|
7665 |
" <td>1.2.4</td>\n", |
|
|
7666 |
" <td>0.5.2</td>\n", |
|
|
7667 |
" <td>3.6.5</td>\n", |
|
|
7668 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7669 |
" <td>{'Original': {}}</td>\n", |
|
|
7670 |
" <td>2201f289b612c94b4e6cccf95a9f35f3a031e568</td>\n", |
|
|
7671 |
" <td>3D</td>\n", |
|
|
7672 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7673 |
" <td>...</td>\n", |
|
|
7674 |
" <td>0.004386699758318983</td>\n", |
|
|
7675 |
" <td>6.993143319987266</td>\n", |
|
|
7676 |
" <td>0.47312989467998917</td>\n", |
|
|
7677 |
" <td>6.884929617293218</td>\n", |
|
|
7678 |
" <td>0.35121142360815816</td>\n", |
|
|
7679 |
" <td>0.0026347858751217734</td>\n", |
|
|
7680 |
" <td>4805.504622046324</td>\n", |
|
|
7681 |
" <td>0.21742004640356255</td>\n", |
|
|
7682 |
" <td>3.378920442731471</td>\n", |
|
|
7683 |
" <td>038</td>\n", |
|
|
7684 |
" </tr>\n", |
|
|
7685 |
" <tr>\n", |
|
|
7686 |
" <th>12</th>\n", |
|
|
7687 |
" <td>2.2.0</td>\n", |
|
|
7688 |
" <td>1.17.4</td>\n", |
|
|
7689 |
" <td>1.2.4</td>\n", |
|
|
7690 |
" <td>0.5.2</td>\n", |
|
|
7691 |
" <td>3.6.5</td>\n", |
|
|
7692 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7693 |
" <td>{'Original': {}}</td>\n", |
|
|
7694 |
" <td>3aaf1a6dfffb4502cb009a245e3f624143e45c75</td>\n", |
|
|
7695 |
" <td>3D</td>\n", |
|
|
7696 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7697 |
" <td>...</td>\n", |
|
|
7698 |
" <td>0.0022866037506234327</td>\n", |
|
|
7699 |
" <td>7.281882549196636</td>\n", |
|
|
7700 |
" <td>0.22450729804264477</td>\n", |
|
|
7701 |
" <td>6012.703448594982</td>\n", |
|
|
7702 |
" <td>1.864169981077123</td>\n", |
|
|
7703 |
" <td>0.0002987021988376117</td>\n", |
|
|
7704 |
" <td>2759.1888943053364</td>\n", |
|
|
7705 |
" <td>0.20721851269319333</td>\n", |
|
|
7706 |
" <td>0.5068317775037102</td>\n", |
|
|
7707 |
" <td>041</td>\n", |
|
|
7708 |
" </tr>\n", |
|
|
7709 |
" <tr>\n", |
|
|
7710 |
" <th>13</th>\n", |
|
|
7711 |
" <td>2.2.0</td>\n", |
|
|
7712 |
" <td>1.17.4</td>\n", |
|
|
7713 |
" <td>1.2.4</td>\n", |
|
|
7714 |
" <td>0.5.2</td>\n", |
|
|
7715 |
" <td>3.6.5</td>\n", |
|
|
7716 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7717 |
" <td>{'Original': {}}</td>\n", |
|
|
7718 |
" <td>31d84fbf5c8a8881bbb03b34a76602a365a9fda7</td>\n", |
|
|
7719 |
" <td>3D</td>\n", |
|
|
7720 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7721 |
" <td>...</td>\n", |
|
|
7722 |
" <td>0.001279280063784213</td>\n", |
|
|
7723 |
" <td>6.412111568664334</td>\n", |
|
|
7724 |
" <td>0.08001851328070762</td>\n", |
|
|
7725 |
" <td>73198.95628983667</td>\n", |
|
|
7726 |
" <td>1.388880577180543</td>\n", |
|
|
7727 |
" <td>0.0002998454900873995</td>\n", |
|
|
7728 |
" <td>745.5657726234778</td>\n", |
|
|
7729 |
" <td>0.01223376137924379</td>\n", |
|
|
7730 |
" <td>0.9720661501394185</td>\n", |
|
|
7731 |
" <td>046</td>\n", |
|
|
7732 |
" </tr>\n", |
|
|
7733 |
" <tr>\n", |
|
|
7734 |
" <th>14</th>\n", |
|
|
7735 |
" <td>2.2.0</td>\n", |
|
|
7736 |
" <td>1.17.4</td>\n", |
|
|
7737 |
" <td>1.2.4</td>\n", |
|
|
7738 |
" <td>0.5.2</td>\n", |
|
|
7739 |
" <td>3.6.5</td>\n", |
|
|
7740 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7741 |
" <td>{'Original': {}}</td>\n", |
|
|
7742 |
" <td>65d22cf14a9630e32cb1075687c067d85639a38a</td>\n", |
|
|
7743 |
" <td>3D</td>\n", |
|
|
7744 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7745 |
" <td>...</td>\n", |
|
|
7746 |
" <td>0.007799168118793287</td>\n", |
|
|
7747 |
" <td>6.4700844404606315</td>\n", |
|
|
7748 |
" <td>0.467940813810111</td>\n", |
|
|
7749 |
" <td>27.130104967877784</td>\n", |
|
|
7750 |
" <td>0.1501706253921209</td>\n", |
|
|
7751 |
" <td>0.007955072276613552</td>\n", |
|
|
7752 |
" <td>1518.9731658901567</td>\n", |
|
|
7753 |
" <td>0.41458437806298254</td>\n", |
|
|
7754 |
" <td>4.1919466935123575</td>\n", |
|
|
7755 |
" <td>049</td>\n", |
|
|
7756 |
" </tr>\n", |
|
|
7757 |
" <tr>\n", |
|
|
7758 |
" <th>15</th>\n", |
|
|
7759 |
" <td>None</td>\n", |
|
|
7760 |
" <td>None</td>\n", |
|
|
7761 |
" <td>None</td>\n", |
|
|
7762 |
" <td>None</td>\n", |
|
|
7763 |
" <td>None</td>\n", |
|
|
7764 |
" <td>None</td>\n", |
|
|
7765 |
" <td>None</td>\n", |
|
|
7766 |
" <td>None</td>\n", |
|
|
7767 |
" <td>None</td>\n", |
|
|
7768 |
" <td>None</td>\n", |
|
|
7769 |
" <td>...</td>\n", |
|
|
7770 |
" <td>None</td>\n", |
|
|
7771 |
" <td>None</td>\n", |
|
|
7772 |
" <td>None</td>\n", |
|
|
7773 |
" <td>None</td>\n", |
|
|
7774 |
" <td>None</td>\n", |
|
|
7775 |
" <td>None</td>\n", |
|
|
7776 |
" <td>None</td>\n", |
|
|
7777 |
" <td>None</td>\n", |
|
|
7778 |
" <td>None</td>\n", |
|
|
7779 |
" <td>050</td>\n", |
|
|
7780 |
" </tr>\n", |
|
|
7781 |
" <tr>\n", |
|
|
7782 |
" <th>16</th>\n", |
|
|
7783 |
" <td>2.2.0</td>\n", |
|
|
7784 |
" <td>1.17.4</td>\n", |
|
|
7785 |
" <td>1.2.4</td>\n", |
|
|
7786 |
" <td>0.5.2</td>\n", |
|
|
7787 |
" <td>3.6.5</td>\n", |
|
|
7788 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7789 |
" <td>{'Original': {}}</td>\n", |
|
|
7790 |
" <td>a853815d68e5984787d97b80aedd8ac2194c8fd1</td>\n", |
|
|
7791 |
" <td>3D</td>\n", |
|
|
7792 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7793 |
" <td>...</td>\n", |
|
|
7794 |
" <td>0.0016018154028825543</td>\n", |
|
|
7795 |
" <td>7.182125278034371</td>\n", |
|
|
7796 |
" <td>0.20367269321374848</td>\n", |
|
|
7797 |
" <td>8741.141397075318</td>\n", |
|
|
7798 |
" <td>1.1055475120072882</td>\n", |
|
|
7799 |
" <td>0.0004574843042622475</td>\n", |
|
|
7800 |
" <td>1152.711679956383</td>\n", |
|
|
7801 |
" <td>0.12063673720755935</td>\n", |
|
|
7802 |
" <td>0.6521431547984168</td>\n", |
|
|
7803 |
" <td>054</td>\n", |
|
|
7804 |
" </tr>\n", |
|
|
7805 |
" <tr>\n", |
|
|
7806 |
" <th>17</th>\n", |
|
|
7807 |
" <td>2.2.0</td>\n", |
|
|
7808 |
" <td>1.17.4</td>\n", |
|
|
7809 |
" <td>1.2.4</td>\n", |
|
|
7810 |
" <td>0.5.2</td>\n", |
|
|
7811 |
" <td>3.6.5</td>\n", |
|
|
7812 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7813 |
" <td>{'Original': {}}</td>\n", |
|
|
7814 |
" <td>273809757cdce6a3e507758ff42b9bcb0ceb26d9</td>\n", |
|
|
7815 |
" <td>3D</td>\n", |
|
|
7816 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7817 |
" <td>...</td>\n", |
|
|
7818 |
" <td>0.007394451023779944</td>\n", |
|
|
7819 |
" <td>6.433873357070576</td>\n", |
|
|
7820 |
" <td>0.4601181683899557</td>\n", |
|
|
7821 |
" <td>32.09514877785478</td>\n", |
|
|
7822 |
" <td>0.11023960241102679</td>\n", |
|
|
7823 |
" <td>0.0087337091685833</td>\n", |
|
|
7824 |
" <td>1691.460822118643</td>\n", |
|
|
7825 |
" <td>0.3678397007257342</td>\n", |
|
|
7826 |
" <td>5.244593289310793</td>\n", |
|
|
7827 |
" <td>055</td>\n", |
|
|
7828 |
" </tr>\n", |
|
|
7829 |
" <tr>\n", |
|
|
7830 |
" <th>18</th>\n", |
|
|
7831 |
" <td>2.2.0</td>\n", |
|
|
7832 |
" <td>1.17.4</td>\n", |
|
|
7833 |
" <td>1.2.4</td>\n", |
|
|
7834 |
" <td>0.5.2</td>\n", |
|
|
7835 |
" <td>3.6.5</td>\n", |
|
|
7836 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7837 |
" <td>{'Original': {}}</td>\n", |
|
|
7838 |
" <td>4e1d46819f6b163f98d7153b112617d99661b92b</td>\n", |
|
|
7839 |
" <td>3D</td>\n", |
|
|
7840 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7841 |
" <td>...</td>\n", |
|
|
7842 |
" <td>0.00207901957713131</td>\n", |
|
|
7843 |
" <td>7.216761375837666</td>\n", |
|
|
7844 |
" <td>0.10587706685837527</td>\n", |
|
|
7845 |
" <td>76440.78066121768</td>\n", |
|
|
7846 |
" <td>1.2577313175994982</td>\n", |
|
|
7847 |
" <td>0.00027738856464899536</td>\n", |
|
|
7848 |
" <td>973.6351580528127</td>\n", |
|
|
7849 |
" <td>0.03444450654353795</td>\n", |
|
|
7850 |
" <td>0.7563117010648652</td>\n", |
|
|
7851 |
" <td>059</td>\n", |
|
|
7852 |
" </tr>\n", |
|
|
7853 |
" <tr>\n", |
|
|
7854 |
" <th>19</th>\n", |
|
|
7855 |
" <td>2.2.0</td>\n", |
|
|
7856 |
" <td>1.17.4</td>\n", |
|
|
7857 |
" <td>1.2.4</td>\n", |
|
|
7858 |
" <td>0.5.2</td>\n", |
|
|
7859 |
" <td>3.6.5</td>\n", |
|
|
7860 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7861 |
" <td>{'Original': {}}</td>\n", |
|
|
7862 |
" <td>a9a60e65302972e1eaffa4b25823aa80356e194f</td>\n", |
|
|
7863 |
" <td>3D</td>\n", |
|
|
7864 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7865 |
" <td>...</td>\n", |
|
|
7866 |
" <td>0.0011489558850105274</td>\n", |
|
|
7867 |
" <td>7.546747055523174</td>\n", |
|
|
7868 |
" <td>0.05381876744032939</td>\n", |
|
|
7869 |
" <td>830330.9076159397</td>\n", |
|
|
7870 |
" <td>5.746706476154839</td>\n", |
|
|
7871 |
" <td>5.699361308135361e-05</td>\n", |
|
|
7872 |
" <td>761.4420879198275</td>\n", |
|
|
7873 |
" <td>0.01474535986952564</td>\n", |
|
|
7874 |
" <td>0.31072496994970683</td>\n", |
|
|
7875 |
" <td>060</td>\n", |
|
|
7876 |
" </tr>\n", |
|
|
7877 |
" <tr>\n", |
|
|
7878 |
" <th>20</th>\n", |
|
|
7879 |
" <td>2.2.0</td>\n", |
|
|
7880 |
" <td>1.17.4</td>\n", |
|
|
7881 |
" <td>1.2.4</td>\n", |
|
|
7882 |
" <td>0.5.2</td>\n", |
|
|
7883 |
" <td>3.6.5</td>\n", |
|
|
7884 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7885 |
" <td>{'Original': {}}</td>\n", |
|
|
7886 |
" <td>e70047a300e13cd902203d6f4ed8065d409c2a9d</td>\n", |
|
|
7887 |
" <td>3D</td>\n", |
|
|
7888 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7889 |
" <td>...</td>\n", |
|
|
7890 |
" <td>0.012763629194190777</td>\n", |
|
|
7891 |
" <td>7.325373958378649</td>\n", |
|
|
7892 |
" <td>0.4870036609405801</td>\n", |
|
|
7893 |
" <td>525.5645610801705</td>\n", |
|
|
7894 |
" <td>1.7551337628417458</td>\n", |
|
|
7895 |
" <td>0.00012971495401556526</td>\n", |
|
|
7896 |
" <td>40696.270734442085</td>\n", |
|
|
7897 |
" <td>0.21091397452450425</td>\n", |
|
|
7898 |
" <td>1.3871357925853178</td>\n", |
|
|
7899 |
" <td>062</td>\n", |
|
|
7900 |
" </tr>\n", |
|
|
7901 |
" <tr>\n", |
|
|
7902 |
" <th>21</th>\n", |
|
|
7903 |
" <td>2.2.0</td>\n", |
|
|
7904 |
" <td>1.17.4</td>\n", |
|
|
7905 |
" <td>1.2.4</td>\n", |
|
|
7906 |
" <td>0.5.2</td>\n", |
|
|
7907 |
" <td>3.6.5</td>\n", |
|
|
7908 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7909 |
" <td>{'Original': {}}</td>\n", |
|
|
7910 |
" <td>2897d9cb4324ba5e066db20a1872ff2d559f87f7</td>\n", |
|
|
7911 |
" <td>3D</td>\n", |
|
|
7912 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7913 |
" <td>...</td>\n", |
|
|
7914 |
" <td>0.0022758772300454227</td>\n", |
|
|
7915 |
" <td>7.2664282658107675</td>\n", |
|
|
7916 |
" <td>0.13389295353850855</td>\n", |
|
|
7917 |
" <td>85544.06999992867</td>\n", |
|
|
7918 |
" <td>2.859580693174141</td>\n", |
|
|
7919 |
" <td>0.0001532977554033749</td>\n", |
|
|
7920 |
" <td>849.3310725848982</td>\n", |
|
|
7921 |
" <td>0.0652664253181279</td>\n", |
|
|
7922 |
" <td>0.27323796534755646</td>\n", |
|
|
7923 |
" <td>065</td>\n", |
|
|
7924 |
" </tr>\n", |
|
|
7925 |
" <tr>\n", |
|
|
7926 |
" <th>22</th>\n", |
|
|
7927 |
" <td>2.2.0</td>\n", |
|
|
7928 |
" <td>1.17.4</td>\n", |
|
|
7929 |
" <td>1.2.4</td>\n", |
|
|
7930 |
" <td>0.5.2</td>\n", |
|
|
7931 |
" <td>3.6.5</td>\n", |
|
|
7932 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7933 |
" <td>{'Original': {}}</td>\n", |
|
|
7934 |
" <td>3d2168d982f3c4e7a17708c461e032ca8ff5f654</td>\n", |
|
|
7935 |
" <td>3D</td>\n", |
|
|
7936 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7937 |
" <td>...</td>\n", |
|
|
7938 |
" <td>0.0011185688377459372</td>\n", |
|
|
7939 |
" <td>8.248728886910184</td>\n", |
|
|
7940 |
" <td>0.0730208262668747</td>\n", |
|
|
7941 |
" <td>139592.72769047518</td>\n", |
|
|
7942 |
" <td>1.2134631034886427</td>\n", |
|
|
7943 |
" <td>0.0001280631202416637</td>\n", |
|
|
7944 |
" <td>5342.310426158639</td>\n", |
|
|
7945 |
" <td>0.0073132615707251335</td>\n", |
|
|
7946 |
" <td>2.5740353091891435</td>\n", |
|
|
7947 |
" <td>066</td>\n", |
|
|
7948 |
" </tr>\n", |
|
|
7949 |
" <tr>\n", |
|
|
7950 |
" <th>23</th>\n", |
|
|
7951 |
" <td>2.2.0</td>\n", |
|
|
7952 |
" <td>1.17.4</td>\n", |
|
|
7953 |
" <td>1.2.4</td>\n", |
|
|
7954 |
" <td>0.5.2</td>\n", |
|
|
7955 |
" <td>3.6.5</td>\n", |
|
|
7956 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7957 |
" <td>{'Original': {}}</td>\n", |
|
|
7958 |
" <td>e0ff78eb127fe29cf197fcb0c0ddffa55934e921</td>\n", |
|
|
7959 |
" <td>3D</td>\n", |
|
|
7960 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7961 |
" <td>...</td>\n", |
|
|
7962 |
" <td>0.0010770241078634668</td>\n", |
|
|
7963 |
" <td>7.313909732997244</td>\n", |
|
|
7964 |
" <td>0.06114648479281229</td>\n", |
|
|
7965 |
" <td>1237003.6374900725</td>\n", |
|
|
7966 |
" <td>5.93905470974652</td>\n", |
|
|
7967 |
" <td>3.0491249955612493e-05</td>\n", |
|
|
7968 |
" <td>1766.462333348672</td>\n", |
|
|
7969 |
" <td>0.006612829440770413</td>\n", |
|
|
7970 |
" <td>0.3412408907520753</td>\n", |
|
|
7971 |
" <td>071</td>\n", |
|
|
7972 |
" </tr>\n", |
|
|
7973 |
" <tr>\n", |
|
|
7974 |
" <th>24</th>\n", |
|
|
7975 |
" <td>2.2.0</td>\n", |
|
|
7976 |
" <td>1.17.4</td>\n", |
|
|
7977 |
" <td>1.2.4</td>\n", |
|
|
7978 |
" <td>0.5.2</td>\n", |
|
|
7979 |
" <td>3.6.5</td>\n", |
|
|
7980 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
7981 |
" <td>{'Original': {}}</td>\n", |
|
|
7982 |
" <td>258d59a8e908d298439736c4ac470e7c32d649e8</td>\n", |
|
|
7983 |
" <td>3D</td>\n", |
|
|
7984 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
7985 |
" <td>...</td>\n", |
|
|
7986 |
" <td>0.0037926422490696353</td>\n", |
|
|
7987 |
" <td>6.637507422942822</td>\n", |
|
|
7988 |
" <td>0.3844765342960289</td>\n", |
|
|
7989 |
" <td>147.45577376622805</td>\n", |
|
|
7990 |
" <td>0.1913375339584415</td>\n", |
|
|
7991 |
" <td>0.004166102926085494</td>\n", |
|
|
7992 |
" <td>1412.896263155049</td>\n", |
|
|
7993 |
" <td>0.24176798197313495</td>\n", |
|
|
7994 |
" <td>2.874594943496401</td>\n", |
|
|
7995 |
" <td>074</td>\n", |
|
|
7996 |
" </tr>\n", |
|
|
7997 |
" <tr>\n", |
|
|
7998 |
" <th>25</th>\n", |
|
|
7999 |
" <td>2.2.0</td>\n", |
|
|
8000 |
" <td>1.17.4</td>\n", |
|
|
8001 |
" <td>1.2.4</td>\n", |
|
|
8002 |
" <td>0.5.2</td>\n", |
|
|
8003 |
" <td>3.6.5</td>\n", |
|
|
8004 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8005 |
" <td>{'Original': {}}</td>\n", |
|
|
8006 |
" <td>9dbe2d9abec6f23b48d4e089c88a3b27f7296b87</td>\n", |
|
|
8007 |
" <td>3D</td>\n", |
|
|
8008 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8009 |
" <td>...</td>\n", |
|
|
8010 |
" <td>0.0036225818700725155</td>\n", |
|
|
8011 |
" <td>6.824029228836075</td>\n", |
|
|
8012 |
" <td>0.2104562597056866</td>\n", |
|
|
8013 |
" <td>3496.143136993939</td>\n", |
|
|
8014 |
" <td>0.41135066550280985</td>\n", |
|
|
8015 |
" <td>0.0011465486712864447</td>\n", |
|
|
8016 |
" <td>1361.8468773052925</td>\n", |
|
|
8017 |
" <td>0.07590032713802068</td>\n", |
|
|
8018 |
" <td>1.369533910463784</td>\n", |
|
|
8019 |
" <td>075</td>\n", |
|
|
8020 |
" </tr>\n", |
|
|
8021 |
" <tr>\n", |
|
|
8022 |
" <th>26</th>\n", |
|
|
8023 |
" <td>2.2.0</td>\n", |
|
|
8024 |
" <td>1.17.4</td>\n", |
|
|
8025 |
" <td>1.2.4</td>\n", |
|
|
8026 |
" <td>0.5.2</td>\n", |
|
|
8027 |
" <td>3.6.5</td>\n", |
|
|
8028 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8029 |
" <td>{'Original': {}}</td>\n", |
|
|
8030 |
" <td>45f93b8b702ba8eb34b6af937d89560f03f8b390</td>\n", |
|
|
8031 |
" <td>3D</td>\n", |
|
|
8032 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8033 |
" <td>...</td>\n", |
|
|
8034 |
" <td>0.013122570791631413</td>\n", |
|
|
8035 |
" <td>7.149332972704863</td>\n", |
|
|
8036 |
" <td>0.2962899347303332</td>\n", |
|
|
8037 |
" <td>78.12656702373451</td>\n", |
|
|
8038 |
" <td>1.259889503856971</td>\n", |
|
|
8039 |
" <td>0.0023904668557108645</td>\n", |
|
|
8040 |
" <td>1208.3624642500931</td>\n", |
|
|
8041 |
" <td>0.17425748937293656</td>\n", |
|
|
8042 |
" <td>1.5808995476622967</td>\n", |
|
|
8043 |
" <td>080</td>\n", |
|
|
8044 |
" </tr>\n", |
|
|
8045 |
" <tr>\n", |
|
|
8046 |
" <th>27</th>\n", |
|
|
8047 |
" <td>2.2.0</td>\n", |
|
|
8048 |
" <td>1.17.4</td>\n", |
|
|
8049 |
" <td>1.2.4</td>\n", |
|
|
8050 |
" <td>0.5.2</td>\n", |
|
|
8051 |
" <td>3.6.5</td>\n", |
|
|
8052 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8053 |
" <td>{'Original': {}}</td>\n", |
|
|
8054 |
" <td>beb477947a6861cccda1d87f4eccaa9f3154e1fb</td>\n", |
|
|
8055 |
" <td>3D</td>\n", |
|
|
8056 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8057 |
" <td>...</td>\n", |
|
|
8058 |
" <td>0.0006920896717820855</td>\n", |
|
|
8059 |
" <td>7.097369645021458</td>\n", |
|
|
8060 |
" <td>0.05234754009620629</td>\n", |
|
|
8061 |
" <td>876377.4641854893</td>\n", |
|
|
8062 |
" <td>8.177036987839658</td>\n", |
|
|
8063 |
" <td>3.5146532370158366e-05</td>\n", |
|
|
8064 |
" <td>1145.4730793940223</td>\n", |
|
|
8065 |
" <td>0.006323161648866281</td>\n", |
|
|
8066 |
" <td>0.18872669227202768</td>\n", |
|
|
8067 |
" <td>085</td>\n", |
|
|
8068 |
" </tr>\n", |
|
|
8069 |
" <tr>\n", |
|
|
8070 |
" <th>28</th>\n", |
|
|
8071 |
" <td>2.2.0</td>\n", |
|
|
8072 |
" <td>1.17.4</td>\n", |
|
|
8073 |
" <td>1.2.4</td>\n", |
|
|
8074 |
" <td>0.5.2</td>\n", |
|
|
8075 |
" <td>3.6.5</td>\n", |
|
|
8076 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8077 |
" <td>{'Original': {}}</td>\n", |
|
|
8078 |
" <td>549cc78e0ad653cb0218a534c9ae24ab598ffa78</td>\n", |
|
|
8079 |
" <td>3D</td>\n", |
|
|
8080 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8081 |
" <td>...</td>\n", |
|
|
8082 |
" <td>0.005145583882401662</td>\n", |
|
|
8083 |
" <td>7.402984092444055</td>\n", |
|
|
8084 |
" <td>0.16720340074713383</td>\n", |
|
|
8085 |
" <td>1438.188380963008</td>\n", |
|
|
8086 |
" <td>2.2829896732712696</td>\n", |
|
|
8087 |
" <td>0.001544110396124168</td>\n", |
|
|
8088 |
" <td>763.2340750570938</td>\n", |
|
|
8089 |
" <td>0.14610978301077746</td>\n", |
|
|
8090 |
" <td>1.1043825094567077</td>\n", |
|
|
8091 |
" <td>087</td>\n", |
|
|
8092 |
" </tr>\n", |
|
|
8093 |
" <tr>\n", |
|
|
8094 |
" <th>29</th>\n", |
|
|
8095 |
" <td>2.2.0</td>\n", |
|
|
8096 |
" <td>1.17.4</td>\n", |
|
|
8097 |
" <td>1.2.4</td>\n", |
|
|
8098 |
" <td>0.5.2</td>\n", |
|
|
8099 |
" <td>3.6.5</td>\n", |
|
|
8100 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8101 |
" <td>{'Original': {}}</td>\n", |
|
|
8102 |
" <td>0dd431132afc7bfd4892f29112f28e0f7ad35654</td>\n", |
|
|
8103 |
" <td>3D</td>\n", |
|
|
8104 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8105 |
" <td>...</td>\n", |
|
|
8106 |
" <td>0.0015563728529436637</td>\n", |
|
|
8107 |
" <td>7.171018692542549</td>\n", |
|
|
8108 |
" <td>0.14653526878856482</td>\n", |
|
|
8109 |
" <td>56852.351194028306</td>\n", |
|
|
8110 |
" <td>2.7957047470336787</td>\n", |
|
|
8111 |
" <td>0.00011931026094401463</td>\n", |
|
|
8112 |
" <td>1569.2943277075763</td>\n", |
|
|
8113 |
" <td>0.05618356449732737</td>\n", |
|
|
8114 |
" <td>0.3037241294257559</td>\n", |
|
|
8115 |
" <td>097</td>\n", |
|
|
8116 |
" </tr>\n", |
|
|
8117 |
" <tr>\n", |
|
|
8118 |
" <th>...</th>\n", |
|
|
8119 |
" <td>...</td>\n", |
|
|
8120 |
" <td>...</td>\n", |
|
|
8121 |
" <td>...</td>\n", |
|
|
8122 |
" <td>...</td>\n", |
|
|
8123 |
" <td>...</td>\n", |
|
|
8124 |
" <td>...</td>\n", |
|
|
8125 |
" <td>...</td>\n", |
|
|
8126 |
" <td>...</td>\n", |
|
|
8127 |
" <td>...</td>\n", |
|
|
8128 |
" <td>...</td>\n", |
|
|
8129 |
" <td>...</td>\n", |
|
|
8130 |
" <td>...</td>\n", |
|
|
8131 |
" <td>...</td>\n", |
|
|
8132 |
" <td>...</td>\n", |
|
|
8133 |
" <td>...</td>\n", |
|
|
8134 |
" <td>...</td>\n", |
|
|
8135 |
" <td>...</td>\n", |
|
|
8136 |
" <td>...</td>\n", |
|
|
8137 |
" <td>...</td>\n", |
|
|
8138 |
" <td>...</td>\n", |
|
|
8139 |
" <td>...</td>\n", |
|
|
8140 |
" </tr>\n", |
|
|
8141 |
" <tr>\n", |
|
|
8142 |
" <th>95</th>\n", |
|
|
8143 |
" <td>2.2.0</td>\n", |
|
|
8144 |
" <td>1.17.4</td>\n", |
|
|
8145 |
" <td>1.2.4</td>\n", |
|
|
8146 |
" <td>0.5.2</td>\n", |
|
|
8147 |
" <td>3.6.5</td>\n", |
|
|
8148 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8149 |
" <td>{'Original': {}}</td>\n", |
|
|
8150 |
" <td>a48538a692ca41da321af57cab9dbe41fd5eda48</td>\n", |
|
|
8151 |
" <td>3D</td>\n", |
|
|
8152 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8153 |
" <td>...</td>\n", |
|
|
8154 |
" <td>0.004909861018104349</td>\n", |
|
|
8155 |
" <td>6.3634196700345145</td>\n", |
|
|
8156 |
" <td>0.4908802537668517</td>\n", |
|
|
8157 |
" <td>28.439653305007553</td>\n", |
|
|
8158 |
" <td>0.09853983370572887</td>\n", |
|
|
8159 |
" <td>0.006128386463292559</td>\n", |
|
|
8160 |
" <td>3713.741867175296</td>\n", |
|
|
8161 |
" <td>0.34207218015051943</td>\n", |
|
|
8162 |
" <td>5.19609367552519</td>\n", |
|
|
8163 |
" <td>322</td>\n", |
|
|
8164 |
" </tr>\n", |
|
|
8165 |
" <tr>\n", |
|
|
8166 |
" <th>96</th>\n", |
|
|
8167 |
" <td>2.2.0</td>\n", |
|
|
8168 |
" <td>1.17.4</td>\n", |
|
|
8169 |
" <td>1.2.4</td>\n", |
|
|
8170 |
" <td>0.5.2</td>\n", |
|
|
8171 |
" <td>3.6.5</td>\n", |
|
|
8172 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8173 |
" <td>{'Original': {}}</td>\n", |
|
|
8174 |
" <td>5a478d9f70829b4d70e56a3525f4a4233f26d0dc</td>\n", |
|
|
8175 |
" <td>3D</td>\n", |
|
|
8176 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8177 |
" <td>...</td>\n", |
|
|
8178 |
" <td>0.0021843297990240874</td>\n", |
|
|
8179 |
" <td>6.523018054335413</td>\n", |
|
|
8180 |
" <td>0.3223493900138347</td>\n", |
|
|
8181 |
" <td>950.5396868214782</td>\n", |
|
|
8182 |
" <td>0.3418510303680603</td>\n", |
|
|
8183 |
" <td>0.0009726182310737089</td>\n", |
|
|
8184 |
" <td>3788.8960015646708</td>\n", |
|
|
8185 |
" <td>0.14614563436055536</td>\n", |
|
|
8186 |
" <td>1.8751632807093437</td>\n", |
|
|
8187 |
" <td>324</td>\n", |
|
|
8188 |
" </tr>\n", |
|
|
8189 |
" <tr>\n", |
|
|
8190 |
" <th>97</th>\n", |
|
|
8191 |
" <td>2.2.0</td>\n", |
|
|
8192 |
" <td>1.17.4</td>\n", |
|
|
8193 |
" <td>1.2.4</td>\n", |
|
|
8194 |
" <td>0.5.2</td>\n", |
|
|
8195 |
" <td>3.6.5</td>\n", |
|
|
8196 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8197 |
" <td>{'Original': {}}</td>\n", |
|
|
8198 |
" <td>ca69b4e631d22e2a2714a46c291422b8f557562f</td>\n", |
|
|
8199 |
" <td>3D</td>\n", |
|
|
8200 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8201 |
" <td>...</td>\n", |
|
|
8202 |
" <td>0.005567100092065029</td>\n", |
|
|
8203 |
" <td>6.284519913123125</td>\n", |
|
|
8204 |
" <td>0.02604800353943148</td>\n", |
|
|
8205 |
" <td>118365.46946687042</td>\n", |
|
|
8206 |
" <td>1.6205272258764905</td>\n", |
|
|
8207 |
" <td>0.0007486380658215003</td>\n", |
|
|
8208 |
" <td>178.0344916193256</td>\n", |
|
|
8209 |
" <td>0.003122302546334271</td>\n", |
|
|
8210 |
" <td>0.541301148998348</td>\n", |
|
|
8211 |
" <td>326</td>\n", |
|
|
8212 |
" </tr>\n", |
|
|
8213 |
" <tr>\n", |
|
|
8214 |
" <th>98</th>\n", |
|
|
8215 |
" <td>2.2.0</td>\n", |
|
|
8216 |
" <td>1.17.4</td>\n", |
|
|
8217 |
" <td>1.2.4</td>\n", |
|
|
8218 |
" <td>0.5.2</td>\n", |
|
|
8219 |
" <td>3.6.5</td>\n", |
|
|
8220 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8221 |
" <td>{'Original': {}}</td>\n", |
|
|
8222 |
" <td>4c73b8f2321e9406d59183208c8e5184389ebd2a</td>\n", |
|
|
8223 |
" <td>3D</td>\n", |
|
|
8224 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8225 |
" <td>...</td>\n", |
|
|
8226 |
" <td>0.004127494117094649</td>\n", |
|
|
8227 |
" <td>6.9872152856031935</td>\n", |
|
|
8228 |
" <td>0.374845869297164</td>\n", |
|
|
8229 |
" <td>28.681559470221607</td>\n", |
|
|
8230 |
" <td>0.46010220474228475</td>\n", |
|
|
8231 |
" <td>0.002554600286353541</td>\n", |
|
|
8232 |
" <td>1382.2005623989996</td>\n", |
|
|
8233 |
" <td>0.20750914289398348</td>\n", |
|
|
8234 |
" <td>1.4318893988970918</td>\n", |
|
|
8235 |
" <td>332</td>\n", |
|
|
8236 |
" </tr>\n", |
|
|
8237 |
" <tr>\n", |
|
|
8238 |
" <th>99</th>\n", |
|
|
8239 |
" <td>2.2.0</td>\n", |
|
|
8240 |
" <td>1.17.4</td>\n", |
|
|
8241 |
" <td>1.2.4</td>\n", |
|
|
8242 |
" <td>0.5.2</td>\n", |
|
|
8243 |
" <td>3.6.5</td>\n", |
|
|
8244 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8245 |
" <td>{'Original': {}}</td>\n", |
|
|
8246 |
" <td>3e133fd0606e4b0005d2018fa2c64516ef304e50</td>\n", |
|
|
8247 |
" <td>3D</td>\n", |
|
|
8248 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8249 |
" <td>...</td>\n", |
|
|
8250 |
" <td>0.012503581567686</td>\n", |
|
|
8251 |
" <td>7.002932104126142</td>\n", |
|
|
8252 |
" <td>0.5721212121212121</td>\n", |
|
|
8253 |
" <td>8.92743195202528</td>\n", |
|
|
8254 |
" <td>0.6185986863045154</td>\n", |
|
|
8255 |
" <td>0.0012089641895892626</td>\n", |
|
|
8256 |
" <td>9944.430297311308</td>\n", |
|
|
8257 |
" <td>0.6108036684377867</td>\n", |
|
|
8258 |
" <td>2.3780051831861786</td>\n", |
|
|
8259 |
" <td>337</td>\n", |
|
|
8260 |
" </tr>\n", |
|
|
8261 |
" <tr>\n", |
|
|
8262 |
" <th>100</th>\n", |
|
|
8263 |
" <td>2.2.0</td>\n", |
|
|
8264 |
" <td>1.17.4</td>\n", |
|
|
8265 |
" <td>1.2.4</td>\n", |
|
|
8266 |
" <td>0.5.2</td>\n", |
|
|
8267 |
" <td>3.6.5</td>\n", |
|
|
8268 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8269 |
" <td>{'Original': {}}</td>\n", |
|
|
8270 |
" <td>47f2eed0427fee7e4a7234f4dfd74e3f74bf6ce2</td>\n", |
|
|
8271 |
" <td>3D</td>\n", |
|
|
8272 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8273 |
" <td>...</td>\n", |
|
|
8274 |
" <td>0.0012915079086775018</td>\n", |
|
|
8275 |
" <td>6.357307447508318</td>\n", |
|
|
8276 |
" <td>0.19026213894699365</td>\n", |
|
|
8277 |
" <td>12689.343166868439</td>\n", |
|
|
8278 |
" <td>0.8078584990099813</td>\n", |
|
|
8279 |
" <td>0.00031288421802832557</td>\n", |
|
|
8280 |
" <td>3314.5747748649055</td>\n", |
|
|
8281 |
" <td>0.031582891546476685</td>\n", |
|
|
8282 |
" <td>1.0740660461843676</td>\n", |
|
|
8283 |
" <td>339</td>\n", |
|
|
8284 |
" </tr>\n", |
|
|
8285 |
" <tr>\n", |
|
|
8286 |
" <th>101</th>\n", |
|
|
8287 |
" <td>2.2.0</td>\n", |
|
|
8288 |
" <td>1.17.4</td>\n", |
|
|
8289 |
" <td>1.2.4</td>\n", |
|
|
8290 |
" <td>0.5.2</td>\n", |
|
|
8291 |
" <td>3.6.5</td>\n", |
|
|
8292 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8293 |
" <td>{'Original': {}}</td>\n", |
|
|
8294 |
" <td>a2a39d9669721c7dac8beb68627618aee4b0aa44</td>\n", |
|
|
8295 |
" <td>3D</td>\n", |
|
|
8296 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8297 |
" <td>...</td>\n", |
|
|
8298 |
" <td>0.0016584864651334468</td>\n", |
|
|
8299 |
" <td>7.316153462141182</td>\n", |
|
|
8300 |
" <td>0.1603829597743803</td>\n", |
|
|
8301 |
" <td>8142.572534881569</td>\n", |
|
|
8302 |
" <td>1.0255212134410199</td>\n", |
|
|
8303 |
" <td>0.0005296958862443307</td>\n", |
|
|
8304 |
" <td>1036.4138688656208</td>\n", |
|
|
8305 |
" <td>0.06208671081422941</td>\n", |
|
|
8306 |
" <td>0.522867677661479</td>\n", |
|
|
8307 |
" <td>342</td>\n", |
|
|
8308 |
" </tr>\n", |
|
|
8309 |
" <tr>\n", |
|
|
8310 |
" <th>102</th>\n", |
|
|
8311 |
" <td>2.2.0</td>\n", |
|
|
8312 |
" <td>1.17.4</td>\n", |
|
|
8313 |
" <td>1.2.4</td>\n", |
|
|
8314 |
" <td>0.5.2</td>\n", |
|
|
8315 |
" <td>3.6.5</td>\n", |
|
|
8316 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8317 |
" <td>{'Original': {}}</td>\n", |
|
|
8318 |
" <td>5d27478c0b1206d1ea3f3f3d2cb80a8c359fd6ec</td>\n", |
|
|
8319 |
" <td>3D</td>\n", |
|
|
8320 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8321 |
" <td>...</td>\n", |
|
|
8322 |
" <td>0.002222608977493873</td>\n", |
|
|
8323 |
" <td>7.246356479894696</td>\n", |
|
|
8324 |
" <td>0.22850904076003678</td>\n", |
|
|
8325 |
" <td>5392.334253078696</td>\n", |
|
|
8326 |
" <td>0.5310859112566346</td>\n", |
|
|
8327 |
" <td>0.000791061766921541</td>\n", |
|
|
8328 |
" <td>1436.2593017841912</td>\n", |
|
|
8329 |
" <td>0.12902073703553343</td>\n", |
|
|
8330 |
" <td>1.1849621401171695</td>\n", |
|
|
8331 |
" <td>344</td>\n", |
|
|
8332 |
" </tr>\n", |
|
|
8333 |
" <tr>\n", |
|
|
8334 |
" <th>103</th>\n", |
|
|
8335 |
" <td>2.2.0</td>\n", |
|
|
8336 |
" <td>1.17.4</td>\n", |
|
|
8337 |
" <td>1.2.4</td>\n", |
|
|
8338 |
" <td>0.5.2</td>\n", |
|
|
8339 |
" <td>3.6.5</td>\n", |
|
|
8340 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8341 |
" <td>{'Original': {}}</td>\n", |
|
|
8342 |
" <td>66350ef67042b6f2ab840c95ca7e9ec64c824575</td>\n", |
|
|
8343 |
" <td>3D</td>\n", |
|
|
8344 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8345 |
" <td>...</td>\n", |
|
|
8346 |
" <td>0.001711024852536452</td>\n", |
|
|
8347 |
" <td>7.211211919390604</td>\n", |
|
|
8348 |
" <td>0.07534246575342465</td>\n", |
|
|
8349 |
" <td>140176.600645958</td>\n", |
|
|
8350 |
" <td>1.0493009059678187</td>\n", |
|
|
8351 |
" <td>0.00022909201834592387</td>\n", |
|
|
8352 |
" <td>1270.0607685978507</td>\n", |
|
|
8353 |
" <td>0.007485074313258024</td>\n", |
|
|
8354 |
" <td>1.3073652723603235</td>\n", |
|
|
8355 |
" <td>351</td>\n", |
|
|
8356 |
" </tr>\n", |
|
|
8357 |
" <tr>\n", |
|
|
8358 |
" <th>104</th>\n", |
|
|
8359 |
" <td>2.2.0</td>\n", |
|
|
8360 |
" <td>1.17.4</td>\n", |
|
|
8361 |
" <td>1.2.4</td>\n", |
|
|
8362 |
" <td>0.5.2</td>\n", |
|
|
8363 |
" <td>3.6.5</td>\n", |
|
|
8364 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8365 |
" <td>{'Original': {}}</td>\n", |
|
|
8366 |
" <td>38a431e88e9083427bc345b6028b7a8a677b9f5a</td>\n", |
|
|
8367 |
" <td>3D</td>\n", |
|
|
8368 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8369 |
" <td>...</td>\n", |
|
|
8370 |
" <td>0.0007228405208663204</td>\n", |
|
|
8371 |
" <td>7.606218979639587</td>\n", |
|
|
8372 |
" <td>0.04023138726000061</td>\n", |
|
|
8373 |
" <td>3717878.664198988</td>\n", |
|
|
8374 |
" <td>9.637744539407947</td>\n", |
|
|
8375 |
" <td>1.685693150912406e-05</td>\n", |
|
|
8376 |
" <td>1634.587095246822</td>\n", |
|
|
8377 |
" <td>0.002255290037989331</td>\n", |
|
|
8378 |
" <td>0.2637152947699818</td>\n", |
|
|
8379 |
" <td>352</td>\n", |
|
|
8380 |
" </tr>\n", |
|
|
8381 |
" <tr>\n", |
|
|
8382 |
" <th>105</th>\n", |
|
|
8383 |
" <td>2.2.0</td>\n", |
|
|
8384 |
" <td>1.17.4</td>\n", |
|
|
8385 |
" <td>1.2.4</td>\n", |
|
|
8386 |
" <td>0.5.2</td>\n", |
|
|
8387 |
" <td>3.6.5</td>\n", |
|
|
8388 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8389 |
" <td>{'Original': {}}</td>\n", |
|
|
8390 |
" <td>11830ba3ebcfd326a5e687a02dcd82ebfc517c18</td>\n", |
|
|
8391 |
" <td>3D</td>\n", |
|
|
8392 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8393 |
" <td>...</td>\n", |
|
|
8394 |
" <td>0.005955592567047564</td>\n", |
|
|
8395 |
" <td>6.647190991501348</td>\n", |
|
|
8396 |
" <td>0.3758221108675227</td>\n", |
|
|
8397 |
" <td>103.89746597222222</td>\n", |
|
|
8398 |
" <td>0.22256896238559867</td>\n", |
|
|
8399 |
" <td>0.005153939867356212</td>\n", |
|
|
8400 |
" <td>1136.9648640515823</td>\n", |
|
|
8401 |
" <td>0.2670402478948995</td>\n", |
|
|
8402 |
" <td>2.76514096705966</td>\n", |
|
|
8403 |
" <td>360</td>\n", |
|
|
8404 |
" </tr>\n", |
|
|
8405 |
" <tr>\n", |
|
|
8406 |
" <th>106</th>\n", |
|
|
8407 |
" <td>2.2.0</td>\n", |
|
|
8408 |
" <td>1.17.4</td>\n", |
|
|
8409 |
" <td>1.2.4</td>\n", |
|
|
8410 |
" <td>0.5.2</td>\n", |
|
|
8411 |
" <td>3.6.5</td>\n", |
|
|
8412 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8413 |
" <td>{'Original': {}}</td>\n", |
|
|
8414 |
" <td>5d8be51376643971f19bd3a2f59d24b159cb3920</td>\n", |
|
|
8415 |
" <td>3D</td>\n", |
|
|
8416 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8417 |
" <td>...</td>\n", |
|
|
8418 |
" <td>0.0019019244473467048</td>\n", |
|
|
8419 |
" <td>7.504007551014153</td>\n", |
|
|
8420 |
" <td>0.05953543827391042</td>\n", |
|
|
8421 |
" <td>614376.1469985214</td>\n", |
|
|
8422 |
" <td>2.415003699935183</td>\n", |
|
|
8423 |
" <td>6.8474833135653e-05</td>\n", |
|
|
8424 |
" <td>1928.8285616928829</td>\n", |
|
|
8425 |
" <td>0.008531148721170723</td>\n", |
|
|
8426 |
" <td>0.9330691390698211</td>\n", |
|
|
8427 |
" <td>363</td>\n", |
|
|
8428 |
" </tr>\n", |
|
|
8429 |
" <tr>\n", |
|
|
8430 |
" <th>107</th>\n", |
|
|
8431 |
" <td>2.2.0</td>\n", |
|
|
8432 |
" <td>1.17.4</td>\n", |
|
|
8433 |
" <td>1.2.4</td>\n", |
|
|
8434 |
" <td>0.5.2</td>\n", |
|
|
8435 |
" <td>3.6.5</td>\n", |
|
|
8436 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8437 |
" <td>{'Original': {}}</td>\n", |
|
|
8438 |
" <td>d64474fb114ffaebce9a6a04abc8859f45b942a0</td>\n", |
|
|
8439 |
" <td>3D</td>\n", |
|
|
8440 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8441 |
" <td>...</td>\n", |
|
|
8442 |
" <td>0.0018885625093965745</td>\n", |
|
|
8443 |
" <td>7.285933177231522</td>\n", |
|
|
8444 |
" <td>0.09055182577370231</td>\n", |
|
|
8445 |
" <td>48730.28641406892</td>\n", |
|
|
8446 |
" <td>0.6905228394131907</td>\n", |
|
|
8447 |
" <td>0.00035546769631391293</td>\n", |
|
|
8448 |
" <td>1289.767393925453</td>\n", |
|
|
8449 |
" <td>0.023004384382165524</td>\n", |
|
|
8450 |
" <td>1.6165925895635536</td>\n", |
|
|
8451 |
" <td>364</td>\n", |
|
|
8452 |
" </tr>\n", |
|
|
8453 |
" <tr>\n", |
|
|
8454 |
" <th>108</th>\n", |
|
|
8455 |
" <td>2.2.0</td>\n", |
|
|
8456 |
" <td>1.17.4</td>\n", |
|
|
8457 |
" <td>1.2.4</td>\n", |
|
|
8458 |
" <td>0.5.2</td>\n", |
|
|
8459 |
" <td>3.6.5</td>\n", |
|
|
8460 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8461 |
" <td>{'Original': {}}</td>\n", |
|
|
8462 |
" <td>c0d87c1345034c02e0a322e623111be89fecd323</td>\n", |
|
|
8463 |
" <td>3D</td>\n", |
|
|
8464 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8465 |
" <td>...</td>\n", |
|
|
8466 |
" <td>0.0026086440557093883</td>\n", |
|
|
8467 |
" <td>6.487526847584183</td>\n", |
|
|
8468 |
" <td>0.24706457925636008</td>\n", |
|
|
8469 |
" <td>4968.021503774141</td>\n", |
|
|
8470 |
" <td>0.6804066651536249</td>\n", |
|
|
8471 |
" <td>0.0006973213701255513</td>\n", |
|
|
8472 |
" <td>1576.2136981987005</td>\n", |
|
|
8473 |
" <td>0.13530594300509916</td>\n", |
|
|
8474 |
" <td>1.190679865743594</td>\n", |
|
|
8475 |
" <td>369</td>\n", |
|
|
8476 |
" </tr>\n", |
|
|
8477 |
" <tr>\n", |
|
|
8478 |
" <th>109</th>\n", |
|
|
8479 |
" <td>2.2.0</td>\n", |
|
|
8480 |
" <td>1.17.4</td>\n", |
|
|
8481 |
" <td>1.2.4</td>\n", |
|
|
8482 |
" <td>0.5.2</td>\n", |
|
|
8483 |
" <td>3.6.5</td>\n", |
|
|
8484 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8485 |
" <td>{'Original': {}}</td>\n", |
|
|
8486 |
" <td>b275f9c5fd33616636bec06bab9ce6643edf85bc</td>\n", |
|
|
8487 |
" <td>3D</td>\n", |
|
|
8488 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8489 |
" <td>...</td>\n", |
|
|
8490 |
" <td>0.006231414377284782</td>\n", |
|
|
8491 |
" <td>6.777064560803622</td>\n", |
|
|
8492 |
" <td>0.4981838502374965</td>\n", |
|
|
8493 |
" <td>88.96629569036918</td>\n", |
|
|
8494 |
" <td>0.21695867592903567</td>\n", |
|
|
8495 |
" <td>0.0024867334839892854</td>\n", |
|
|
8496 |
" <td>6173.743883319467</td>\n", |
|
|
8497 |
" <td>0.5213400830095554</td>\n", |
|
|
8498 |
" <td>3.5582820444505576</td>\n", |
|
|
8499 |
" <td>370</td>\n", |
|
|
8500 |
" </tr>\n", |
|
|
8501 |
" <tr>\n", |
|
|
8502 |
" <th>110</th>\n", |
|
|
8503 |
" <td>2.2.0</td>\n", |
|
|
8504 |
" <td>1.17.4</td>\n", |
|
|
8505 |
" <td>1.2.4</td>\n", |
|
|
8506 |
" <td>0.5.2</td>\n", |
|
|
8507 |
" <td>3.6.5</td>\n", |
|
|
8508 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8509 |
" <td>{'Original': {}}</td>\n", |
|
|
8510 |
" <td>7d289fb4b5ae72fd48b88220d93241c7569b4273</td>\n", |
|
|
8511 |
" <td>3D</td>\n", |
|
|
8512 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8513 |
" <td>...</td>\n", |
|
|
8514 |
" <td>0.0017730477625832414</td>\n", |
|
|
8515 |
" <td>6.626865194133249</td>\n", |
|
|
8516 |
" <td>0.1299949514674084</td>\n", |
|
|
8517 |
" <td>158592.56550772983</td>\n", |
|
|
8518 |
" <td>3.8152392445127785</td>\n", |
|
|
8519 |
" <td>6.985684329472468e-05</td>\n", |
|
|
8520 |
" <td>1992.1961740610318</td>\n", |
|
|
8521 |
" <td>0.033305282386164994</td>\n", |
|
|
8522 |
" <td>0.3270461822118756</td>\n", |
|
|
8523 |
" <td>374</td>\n", |
|
|
8524 |
" </tr>\n", |
|
|
8525 |
" <tr>\n", |
|
|
8526 |
" <th>111</th>\n", |
|
|
8527 |
" <td>2.2.0</td>\n", |
|
|
8528 |
" <td>1.17.4</td>\n", |
|
|
8529 |
" <td>1.2.4</td>\n", |
|
|
8530 |
" <td>0.5.2</td>\n", |
|
|
8531 |
" <td>3.6.5</td>\n", |
|
|
8532 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8533 |
" <td>{'Original': {}}</td>\n", |
|
|
8534 |
" <td>2e10443a78f941589953e1dab07d55706884f10d</td>\n", |
|
|
8535 |
" <td>3D</td>\n", |
|
|
8536 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8537 |
" <td>...</td>\n", |
|
|
8538 |
" <td>0.007946782920712922</td>\n", |
|
|
8539 |
" <td>7.217992093283175</td>\n", |
|
|
8540 |
" <td>0.5187952898550725</td>\n", |
|
|
8541 |
" <td>35.91334441929315</td>\n", |
|
|
8542 |
" <td>0.6270759219303694</td>\n", |
|
|
8543 |
" <td>0.0005591724966979988</td>\n", |
|
|
8544 |
" <td>16917.21097410635</td>\n", |
|
|
8545 |
" <td>0.3784727364995947</td>\n", |
|
|
8546 |
" <td>2.025850017902886</td>\n", |
|
|
8547 |
" <td>377</td>\n", |
|
|
8548 |
" </tr>\n", |
|
|
8549 |
" <tr>\n", |
|
|
8550 |
" <th>112</th>\n", |
|
|
8551 |
" <td>2.2.0</td>\n", |
|
|
8552 |
" <td>1.17.4</td>\n", |
|
|
8553 |
" <td>1.2.4</td>\n", |
|
|
8554 |
" <td>0.5.2</td>\n", |
|
|
8555 |
" <td>3.6.5</td>\n", |
|
|
8556 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8557 |
" <td>{'Original': {}}</td>\n", |
|
|
8558 |
" <td>d16ad6f8ca976a826ace427f0de8db8750dda245</td>\n", |
|
|
8559 |
" <td>3D</td>\n", |
|
|
8560 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8561 |
" <td>...</td>\n", |
|
|
8562 |
" <td>0.008373282253858156</td>\n", |
|
|
8563 |
" <td>6.633171142766264</td>\n", |
|
|
8564 |
" <td>0.4473029045643154</td>\n", |
|
|
8565 |
" <td>5.8869685840266275</td>\n", |
|
|
8566 |
" <td>0.26027179000208106</td>\n", |
|
|
8567 |
" <td>0.007746555989385689</td>\n", |
|
|
8568 |
" <td>1964.4592706737542</td>\n", |
|
|
8569 |
" <td>0.2239367720503079</td>\n", |
|
|
8570 |
" <td>4.630788924816604</td>\n", |
|
|
8571 |
" <td>379</td>\n", |
|
|
8572 |
" </tr>\n", |
|
|
8573 |
" <tr>\n", |
|
|
8574 |
" <th>113</th>\n", |
|
|
8575 |
" <td>2.2.0</td>\n", |
|
|
8576 |
" <td>1.17.4</td>\n", |
|
|
8577 |
" <td>1.2.4</td>\n", |
|
|
8578 |
" <td>0.5.2</td>\n", |
|
|
8579 |
" <td>3.6.5</td>\n", |
|
|
8580 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8581 |
" <td>{'Original': {}}</td>\n", |
|
|
8582 |
" <td>f5e27141894f1ff823fddc4c04a8d2bcd1e952d7</td>\n", |
|
|
8583 |
" <td>3D</td>\n", |
|
|
8584 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8585 |
" <td>...</td>\n", |
|
|
8586 |
" <td>0.0019831751974015745</td>\n", |
|
|
8587 |
" <td>7.046603724629845</td>\n", |
|
|
8588 |
" <td>0.056624844352870886</td>\n", |
|
|
8589 |
" <td>836145.833284638</td>\n", |
|
|
8590 |
" <td>5.159575840023793</td>\n", |
|
|
8591 |
" <td>5.309999706126223e-05</td>\n", |
|
|
8592 |
" <td>975.6577339498588</td>\n", |
|
|
8593 |
" <td>0.008739278504770832</td>\n", |
|
|
8594 |
" <td>0.314596299454889</td>\n", |
|
|
8595 |
" <td>387</td>\n", |
|
|
8596 |
" </tr>\n", |
|
|
8597 |
" <tr>\n", |
|
|
8598 |
" <th>114</th>\n", |
|
|
8599 |
" <td>2.2.0</td>\n", |
|
|
8600 |
" <td>1.17.4</td>\n", |
|
|
8601 |
" <td>1.2.4</td>\n", |
|
|
8602 |
" <td>0.5.2</td>\n", |
|
|
8603 |
" <td>3.6.5</td>\n", |
|
|
8604 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8605 |
" <td>{'Original': {}}</td>\n", |
|
|
8606 |
" <td>e409232560b4849557d6dbbfb99104ad46f771da</td>\n", |
|
|
8607 |
" <td>3D</td>\n", |
|
|
8608 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8609 |
" <td>...</td>\n", |
|
|
8610 |
" <td>0.0008012685187611323</td>\n", |
|
|
8611 |
" <td>7.394066541839875</td>\n", |
|
|
8612 |
" <td>0.04941498270156874</td>\n", |
|
|
8613 |
" <td>567619.235481018</td>\n", |
|
|
8614 |
" <td>4.1906592441504</td>\n", |
|
|
8615 |
" <td>5.865278267922613e-05</td>\n", |
|
|
8616 |
" <td>1267.910184634066</td>\n", |
|
|
8617 |
" <td>0.006286878339812724</td>\n", |
|
|
8618 |
" <td>0.3838231320748535</td>\n", |
|
|
8619 |
" <td>398</td>\n", |
|
|
8620 |
" </tr>\n", |
|
|
8621 |
" <tr>\n", |
|
|
8622 |
" <th>115</th>\n", |
|
|
8623 |
" <td>None</td>\n", |
|
|
8624 |
" <td>None</td>\n", |
|
|
8625 |
" <td>None</td>\n", |
|
|
8626 |
" <td>None</td>\n", |
|
|
8627 |
" <td>None</td>\n", |
|
|
8628 |
" <td>None</td>\n", |
|
|
8629 |
" <td>None</td>\n", |
|
|
8630 |
" <td>None</td>\n", |
|
|
8631 |
" <td>None</td>\n", |
|
|
8632 |
" <td>None</td>\n", |
|
|
8633 |
" <td>...</td>\n", |
|
|
8634 |
" <td>None</td>\n", |
|
|
8635 |
" <td>None</td>\n", |
|
|
8636 |
" <td>None</td>\n", |
|
|
8637 |
" <td>None</td>\n", |
|
|
8638 |
" <td>None</td>\n", |
|
|
8639 |
" <td>None</td>\n", |
|
|
8640 |
" <td>None</td>\n", |
|
|
8641 |
" <td>None</td>\n", |
|
|
8642 |
" <td>None</td>\n", |
|
|
8643 |
" <td>404</td>\n", |
|
|
8644 |
" </tr>\n", |
|
|
8645 |
" <tr>\n", |
|
|
8646 |
" <th>116</th>\n", |
|
|
8647 |
" <td>2.2.0</td>\n", |
|
|
8648 |
" <td>1.17.4</td>\n", |
|
|
8649 |
" <td>1.2.4</td>\n", |
|
|
8650 |
" <td>0.5.2</td>\n", |
|
|
8651 |
" <td>3.6.5</td>\n", |
|
|
8652 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8653 |
" <td>{'Original': {}}</td>\n", |
|
|
8654 |
" <td>ae3f025df03ee1c7fb921be3e072a4c1e64c1f66</td>\n", |
|
|
8655 |
" <td>3D</td>\n", |
|
|
8656 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8657 |
" <td>...</td>\n", |
|
|
8658 |
" <td>0.0019622405594830732</td>\n", |
|
|
8659 |
" <td>7.343350413196008</td>\n", |
|
|
8660 |
" <td>0.15911913055900484</td>\n", |
|
|
8661 |
" <td>34583.515757298126</td>\n", |
|
|
8662 |
" <td>1.7726586432182057</td>\n", |
|
|
8663 |
" <td>0.00021330453567814433</td>\n", |
|
|
8664 |
" <td>1239.2690074665556</td>\n", |
|
|
8665 |
" <td>0.10742161509496133</td>\n", |
|
|
8666 |
" <td>0.4387650631723471</td>\n", |
|
|
8667 |
" <td>405</td>\n", |
|
|
8668 |
" </tr>\n", |
|
|
8669 |
" <tr>\n", |
|
|
8670 |
" <th>117</th>\n", |
|
|
8671 |
" <td>2.2.0</td>\n", |
|
|
8672 |
" <td>1.17.4</td>\n", |
|
|
8673 |
" <td>1.2.4</td>\n", |
|
|
8674 |
" <td>0.5.2</td>\n", |
|
|
8675 |
" <td>3.6.5</td>\n", |
|
|
8676 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8677 |
" <td>{'Original': {}}</td>\n", |
|
|
8678 |
" <td>d813d4c1f0c05bebed452ec0587c325d3c326615</td>\n", |
|
|
8679 |
" <td>3D</td>\n", |
|
|
8680 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8681 |
" <td>...</td>\n", |
|
|
8682 |
" <td>0.0017841696757871135</td>\n", |
|
|
8683 |
" <td>7.164660013235399</td>\n", |
|
|
8684 |
" <td>0.10005430355688298</td>\n", |
|
|
8685 |
" <td>16145.069170000494</td>\n", |
|
|
8686 |
" <td>0.33193044780371306</td>\n", |
|
|
8687 |
" <td>0.0007828676838876653</td>\n", |
|
|
8688 |
" <td>1518.3577988463776</td>\n", |
|
|
8689 |
" <td>0.024138324990012467</td>\n", |
|
|
8690 |
" <td>3.333053159235531</td>\n", |
|
|
8691 |
" <td>407</td>\n", |
|
|
8692 |
" </tr>\n", |
|
|
8693 |
" <tr>\n", |
|
|
8694 |
" <th>118</th>\n", |
|
|
8695 |
" <td>2.2.0</td>\n", |
|
|
8696 |
" <td>1.17.4</td>\n", |
|
|
8697 |
" <td>1.2.4</td>\n", |
|
|
8698 |
" <td>0.5.2</td>\n", |
|
|
8699 |
" <td>3.6.5</td>\n", |
|
|
8700 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8701 |
" <td>{'Original': {}}</td>\n", |
|
|
8702 |
" <td>5396693b96794cf593f8cba977cf4aca75e6fe57</td>\n", |
|
|
8703 |
" <td>3D</td>\n", |
|
|
8704 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8705 |
" <td>...</td>\n", |
|
|
8706 |
" <td>0.0037109837182313023</td>\n", |
|
|
8707 |
" <td>6.977998439577439</td>\n", |
|
|
8708 |
" <td>0.36580734261710207</td>\n", |
|
|
8709 |
" <td>6563.19153991484</td>\n", |
|
|
8710 |
" <td>1.0744601809934957</td>\n", |
|
|
8711 |
" <td>0.0001097569923580824</td>\n", |
|
|
8712 |
" <td>42061.21374856239</td>\n", |
|
|
8713 |
" <td>0.06638070897238856</td>\n", |
|
|
8714 |
" <td>2.6870359781538564</td>\n", |
|
|
8715 |
" <td>408</td>\n", |
|
|
8716 |
" </tr>\n", |
|
|
8717 |
" <tr>\n", |
|
|
8718 |
" <th>119</th>\n", |
|
|
8719 |
" <td>2.2.0</td>\n", |
|
|
8720 |
" <td>1.17.4</td>\n", |
|
|
8721 |
" <td>1.2.4</td>\n", |
|
|
8722 |
" <td>0.5.2</td>\n", |
|
|
8723 |
" <td>3.6.5</td>\n", |
|
|
8724 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8725 |
" <td>{'Original': {}}</td>\n", |
|
|
8726 |
" <td>49cf68b71478075077aae6b5865bb9a22c4c289a</td>\n", |
|
|
8727 |
" <td>3D</td>\n", |
|
|
8728 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8729 |
" <td>...</td>\n", |
|
|
8730 |
" <td>0.003007768913538569</td>\n", |
|
|
8731 |
" <td>6.9407929790772025</td>\n", |
|
|
8732 |
" <td>0.3619009743487771</td>\n", |
|
|
8733 |
" <td>104.48952391015578</td>\n", |
|
|
8734 |
" <td>0.23074648713212081</td>\n", |
|
|
8735 |
" <td>0.003908611687093402</td>\n", |
|
|
8736 |
" <td>1280.390559382203</td>\n", |
|
|
8737 |
" <td>0.21346433936224996</td>\n", |
|
|
8738 |
" <td>2.4985246031596042</td>\n", |
|
|
8739 |
" <td>410</td>\n", |
|
|
8740 |
" </tr>\n", |
|
|
8741 |
" <tr>\n", |
|
|
8742 |
" <th>120</th>\n", |
|
|
8743 |
" <td>2.2.0</td>\n", |
|
|
8744 |
" <td>1.17.4</td>\n", |
|
|
8745 |
" <td>1.2.4</td>\n", |
|
|
8746 |
" <td>0.5.2</td>\n", |
|
|
8747 |
" <td>3.6.5</td>\n", |
|
|
8748 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8749 |
" <td>{'Original': {}}</td>\n", |
|
|
8750 |
" <td>c6e86385c89bf3c13f576f90e29293b08e4f2168</td>\n", |
|
|
8751 |
" <td>3D</td>\n", |
|
|
8752 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8753 |
" <td>...</td>\n", |
|
|
8754 |
" <td>0.010075701965476344</td>\n", |
|
|
8755 |
" <td>6.0993773731215235</td>\n", |
|
|
8756 |
" <td>0.5219399538106235</td>\n", |
|
|
8757 |
" <td>46.51505599498787</td>\n", |
|
|
8758 |
" <td>0.10340895584775858</td>\n", |
|
|
8759 |
" <td>0.006276318164644369</td>\n", |
|
|
8760 |
" <td>4134.876870641823</td>\n", |
|
|
8761 |
" <td>0.7670438665533905</td>\n", |
|
|
8762 |
" <td>6.366573936376155</td>\n", |
|
|
8763 |
" <td>411</td>\n", |
|
|
8764 |
" </tr>\n", |
|
|
8765 |
" <tr>\n", |
|
|
8766 |
" <th>121</th>\n", |
|
|
8767 |
" <td>2.2.0</td>\n", |
|
|
8768 |
" <td>1.17.4</td>\n", |
|
|
8769 |
" <td>1.2.4</td>\n", |
|
|
8770 |
" <td>0.5.2</td>\n", |
|
|
8771 |
" <td>3.6.5</td>\n", |
|
|
8772 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8773 |
" <td>{'Original': {}}</td>\n", |
|
|
8774 |
" <td>02826b1db6c5353d2f6d70e4f2bdff50858c79c1</td>\n", |
|
|
8775 |
" <td>3D</td>\n", |
|
|
8776 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8777 |
" <td>...</td>\n", |
|
|
8778 |
" <td>0.01646721981147634</td>\n", |
|
|
8779 |
" <td>7.011653874203149</td>\n", |
|
|
8780 |
" <td>0.30067447639332623</td>\n", |
|
|
8781 |
" <td>29.1807128151445</td>\n", |
|
|
8782 |
" <td>1.3085642777769355</td>\n", |
|
|
8783 |
" <td>0.004362685576214294</td>\n", |
|
|
8784 |
" <td>958.8147221435177</td>\n", |
|
|
8785 |
" <td>0.18745747878370758</td>\n", |
|
|
8786 |
" <td>2.8754860445648287</td>\n", |
|
|
8787 |
" <td>412</td>\n", |
|
|
8788 |
" </tr>\n", |
|
|
8789 |
" <tr>\n", |
|
|
8790 |
" <th>122</th>\n", |
|
|
8791 |
" <td>2.2.0</td>\n", |
|
|
8792 |
" <td>1.17.4</td>\n", |
|
|
8793 |
" <td>1.2.4</td>\n", |
|
|
8794 |
" <td>0.5.2</td>\n", |
|
|
8795 |
" <td>3.6.5</td>\n", |
|
|
8796 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8797 |
" <td>{'Original': {}}</td>\n", |
|
|
8798 |
" <td>f85fbdd3b892cb1f6c4ddff6c52d2335b2fdb2a3</td>\n", |
|
|
8799 |
" <td>3D</td>\n", |
|
|
8800 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8801 |
" <td>...</td>\n", |
|
|
8802 |
" <td>0.0027211270780033723</td>\n", |
|
|
8803 |
" <td>6.773491446614239</td>\n", |
|
|
8804 |
" <td>0.3555760085902746</td>\n", |
|
|
8805 |
" <td>248.4501152402215</td>\n", |
|
|
8806 |
" <td>0.31679582345784657</td>\n", |
|
|
8807 |
" <td>0.0023886443672453354</td>\n", |
|
|
8808 |
" <td>1456.5277302932097</td>\n", |
|
|
8809 |
" <td>0.203987238983539</td>\n", |
|
|
8810 |
" <td>1.713392243116665</td>\n", |
|
|
8811 |
" <td>413</td>\n", |
|
|
8812 |
" </tr>\n", |
|
|
8813 |
" <tr>\n", |
|
|
8814 |
" <th>123</th>\n", |
|
|
8815 |
" <td>2.2.0</td>\n", |
|
|
8816 |
" <td>1.17.4</td>\n", |
|
|
8817 |
" <td>1.2.4</td>\n", |
|
|
8818 |
" <td>0.5.2</td>\n", |
|
|
8819 |
" <td>3.6.5</td>\n", |
|
|
8820 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8821 |
" <td>{'Original': {}}</td>\n", |
|
|
8822 |
" <td>e7c8d73d44fb7f546298727aa5c48476ed4430da</td>\n", |
|
|
8823 |
" <td>3D</td>\n", |
|
|
8824 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8825 |
" <td>...</td>\n", |
|
|
8826 |
" <td>0.002643240035718965</td>\n", |
|
|
8827 |
" <td>6.705839551330013</td>\n", |
|
|
8828 |
" <td>0.18991288399816597</td>\n", |
|
|
8829 |
" <td>3374.168969240443</td>\n", |
|
|
8830 |
" <td>0.4049830751560497</td>\n", |
|
|
8831 |
" <td>0.0014098867076919712</td>\n", |
|
|
8832 |
" <td>947.0140577942461</td>\n", |
|
|
8833 |
" <td>0.06318696600183107</td>\n", |
|
|
8834 |
" <td>1.5318233636625185</td>\n", |
|
|
8835 |
" <td>415</td>\n", |
|
|
8836 |
" </tr>\n", |
|
|
8837 |
" <tr>\n", |
|
|
8838 |
" <th>124</th>\n", |
|
|
8839 |
" <td>2.2.0</td>\n", |
|
|
8840 |
" <td>1.17.4</td>\n", |
|
|
8841 |
" <td>1.2.4</td>\n", |
|
|
8842 |
" <td>0.5.2</td>\n", |
|
|
8843 |
" <td>3.6.5</td>\n", |
|
|
8844 |
" <td>{'minimumROIDimensions': 2, 'minimumROISize': ...</td>\n", |
|
|
8845 |
" <td>{'Original': {}}</td>\n", |
|
|
8846 |
" <td>86bbd3a4b79ada86c05660998789bf6c0575fec0</td>\n", |
|
|
8847 |
" <td>3D</td>\n", |
|
|
8848 |
" <td>(1.0, 1.0, 1.0)</td>\n", |
|
|
8849 |
" <td>...</td>\n", |
|
|
8850 |
" <td>0.0021372612525416925</td>\n", |
|
|
8851 |
" <td>6.820178021315897</td>\n", |
|
|
8852 |
" <td>0.17709405227413047</td>\n", |
|
|
8853 |
" <td>2932.077399158158</td>\n", |
|
|
8854 |
" <td>0.22432841908751996</td>\n", |
|
|
8855 |
" <td>0.0020667477801126354</td>\n", |
|
|
8856 |
" <td>1045.8591768731944</td>\n", |
|
|
8857 |
" <td>0.08495472885593744</td>\n", |
|
|
8858 |
" <td>2.832900477688721</td>\n", |
|
|
8859 |
" <td>419</td>\n", |
|
|
8860 |
" </tr>\n", |
|
|
8861 |
" </tbody>\n", |
|
|
8862 |
"</table>\n", |
|
|
8863 |
"<p>125 rows × 130 columns</p>\n", |
|
|
8864 |
"</div>" |
|
|
8865 |
], |
|
|
8866 |
"text/plain": [ |
|
|
8867 |
" diagnostics_Versions_PyRadiomics diagnostics_Versions_Numpy \\\n", |
|
|
8868 |
"0 2.2.0 1.17.4 \n", |
|
|
8869 |
"1 2.2.0 1.17.4 \n", |
|
|
8870 |
"2 2.2.0 1.17.4 \n", |
|
|
8871 |
"3 2.2.0 1.17.4 \n", |
|
|
8872 |
"4 2.2.0 1.17.4 \n", |
|
|
8873 |
"5 2.2.0 1.17.4 \n", |
|
|
8874 |
"6 2.2.0 1.17.4 \n", |
|
|
8875 |
"7 2.2.0 1.17.4 \n", |
|
|
8876 |
"8 2.2.0 1.17.4 \n", |
|
|
8877 |
"9 2.2.0 1.17.4 \n", |
|
|
8878 |
"10 2.2.0 1.17.4 \n", |
|
|
8879 |
"11 2.2.0 1.17.4 \n", |
|
|
8880 |
"12 2.2.0 1.17.4 \n", |
|
|
8881 |
"13 2.2.0 1.17.4 \n", |
|
|
8882 |
"14 2.2.0 1.17.4 \n", |
|
|
8883 |
"15 None None \n", |
|
|
8884 |
"16 2.2.0 1.17.4 \n", |
|
|
8885 |
"17 2.2.0 1.17.4 \n", |
|
|
8886 |
"18 2.2.0 1.17.4 \n", |
|
|
8887 |
"19 2.2.0 1.17.4 \n", |
|
|
8888 |
"20 2.2.0 1.17.4 \n", |
|
|
8889 |
"21 2.2.0 1.17.4 \n", |
|
|
8890 |
"22 2.2.0 1.17.4 \n", |
|
|
8891 |
"23 2.2.0 1.17.4 \n", |
|
|
8892 |
"24 2.2.0 1.17.4 \n", |
|
|
8893 |
"25 2.2.0 1.17.4 \n", |
|
|
8894 |
"26 2.2.0 1.17.4 \n", |
|
|
8895 |
"27 2.2.0 1.17.4 \n", |
|
|
8896 |
"28 2.2.0 1.17.4 \n", |
|
|
8897 |
"29 2.2.0 1.17.4 \n", |
|
|
8898 |
".. ... ... \n", |
|
|
8899 |
"95 2.2.0 1.17.4 \n", |
|
|
8900 |
"96 2.2.0 1.17.4 \n", |
|
|
8901 |
"97 2.2.0 1.17.4 \n", |
|
|
8902 |
"98 2.2.0 1.17.4 \n", |
|
|
8903 |
"99 2.2.0 1.17.4 \n", |
|
|
8904 |
"100 2.2.0 1.17.4 \n", |
|
|
8905 |
"101 2.2.0 1.17.4 \n", |
|
|
8906 |
"102 2.2.0 1.17.4 \n", |
|
|
8907 |
"103 2.2.0 1.17.4 \n", |
|
|
8908 |
"104 2.2.0 1.17.4 \n", |
|
|
8909 |
"105 2.2.0 1.17.4 \n", |
|
|
8910 |
"106 2.2.0 1.17.4 \n", |
|
|
8911 |
"107 2.2.0 1.17.4 \n", |
|
|
8912 |
"108 2.2.0 1.17.4 \n", |
|
|
8913 |
"109 2.2.0 1.17.4 \n", |
|
|
8914 |
"110 2.2.0 1.17.4 \n", |
|
|
8915 |
"111 2.2.0 1.17.4 \n", |
|
|
8916 |
"112 2.2.0 1.17.4 \n", |
|
|
8917 |
"113 2.2.0 1.17.4 \n", |
|
|
8918 |
"114 2.2.0 1.17.4 \n", |
|
|
8919 |
"115 None None \n", |
|
|
8920 |
"116 2.2.0 1.17.4 \n", |
|
|
8921 |
"117 2.2.0 1.17.4 \n", |
|
|
8922 |
"118 2.2.0 1.17.4 \n", |
|
|
8923 |
"119 2.2.0 1.17.4 \n", |
|
|
8924 |
"120 2.2.0 1.17.4 \n", |
|
|
8925 |
"121 2.2.0 1.17.4 \n", |
|
|
8926 |
"122 2.2.0 1.17.4 \n", |
|
|
8927 |
"123 2.2.0 1.17.4 \n", |
|
|
8928 |
"124 2.2.0 1.17.4 \n", |
|
|
8929 |
"\n", |
|
|
8930 |
" diagnostics_Versions_SimpleITK diagnostics_Versions_PyWavelet \\\n", |
|
|
8931 |
"0 1.2.4 0.5.2 \n", |
|
|
8932 |
"1 1.2.4 0.5.2 \n", |
|
|
8933 |
"2 1.2.4 0.5.2 \n", |
|
|
8934 |
"3 1.2.4 0.5.2 \n", |
|
|
8935 |
"4 1.2.4 0.5.2 \n", |
|
|
8936 |
"5 1.2.4 0.5.2 \n", |
|
|
8937 |
"6 1.2.4 0.5.2 \n", |
|
|
8938 |
"7 1.2.4 0.5.2 \n", |
|
|
8939 |
"8 1.2.4 0.5.2 \n", |
|
|
8940 |
"9 1.2.4 0.5.2 \n", |
|
|
8941 |
"10 1.2.4 0.5.2 \n", |
|
|
8942 |
"11 1.2.4 0.5.2 \n", |
|
|
8943 |
"12 1.2.4 0.5.2 \n", |
|
|
8944 |
"13 1.2.4 0.5.2 \n", |
|
|
8945 |
"14 1.2.4 0.5.2 \n", |
|
|
8946 |
"15 None None \n", |
|
|
8947 |
"16 1.2.4 0.5.2 \n", |
|
|
8948 |
"17 1.2.4 0.5.2 \n", |
|
|
8949 |
"18 1.2.4 0.5.2 \n", |
|
|
8950 |
"19 1.2.4 0.5.2 \n", |
|
|
8951 |
"20 1.2.4 0.5.2 \n", |
|
|
8952 |
"21 1.2.4 0.5.2 \n", |
|
|
8953 |
"22 1.2.4 0.5.2 \n", |
|
|
8954 |
"23 1.2.4 0.5.2 \n", |
|
|
8955 |
"24 1.2.4 0.5.2 \n", |
|
|
8956 |
"25 1.2.4 0.5.2 \n", |
|
|
8957 |
"26 1.2.4 0.5.2 \n", |
|
|
8958 |
"27 1.2.4 0.5.2 \n", |
|
|
8959 |
"28 1.2.4 0.5.2 \n", |
|
|
8960 |
"29 1.2.4 0.5.2 \n", |
|
|
8961 |
".. ... ... \n", |
|
|
8962 |
"95 1.2.4 0.5.2 \n", |
|
|
8963 |
"96 1.2.4 0.5.2 \n", |
|
|
8964 |
"97 1.2.4 0.5.2 \n", |
|
|
8965 |
"98 1.2.4 0.5.2 \n", |
|
|
8966 |
"99 1.2.4 0.5.2 \n", |
|
|
8967 |
"100 1.2.4 0.5.2 \n", |
|
|
8968 |
"101 1.2.4 0.5.2 \n", |
|
|
8969 |
"102 1.2.4 0.5.2 \n", |
|
|
8970 |
"103 1.2.4 0.5.2 \n", |
|
|
8971 |
"104 1.2.4 0.5.2 \n", |
|
|
8972 |
"105 1.2.4 0.5.2 \n", |
|
|
8973 |
"106 1.2.4 0.5.2 \n", |
|
|
8974 |
"107 1.2.4 0.5.2 \n", |
|
|
8975 |
"108 1.2.4 0.5.2 \n", |
|
|
8976 |
"109 1.2.4 0.5.2 \n", |
|
|
8977 |
"110 1.2.4 0.5.2 \n", |
|
|
8978 |
"111 1.2.4 0.5.2 \n", |
|
|
8979 |
"112 1.2.4 0.5.2 \n", |
|
|
8980 |
"113 1.2.4 0.5.2 \n", |
|
|
8981 |
"114 1.2.4 0.5.2 \n", |
|
|
8982 |
"115 None None \n", |
|
|
8983 |
"116 1.2.4 0.5.2 \n", |
|
|
8984 |
"117 1.2.4 0.5.2 \n", |
|
|
8985 |
"118 1.2.4 0.5.2 \n", |
|
|
8986 |
"119 1.2.4 0.5.2 \n", |
|
|
8987 |
"120 1.2.4 0.5.2 \n", |
|
|
8988 |
"121 1.2.4 0.5.2 \n", |
|
|
8989 |
"122 1.2.4 0.5.2 \n", |
|
|
8990 |
"123 1.2.4 0.5.2 \n", |
|
|
8991 |
"124 1.2.4 0.5.2 \n", |
|
|
8992 |
"\n", |
|
|
8993 |
" diagnostics_Versions_Python \\\n", |
|
|
8994 |
"0 3.6.5 \n", |
|
|
8995 |
"1 3.6.5 \n", |
|
|
8996 |
"2 3.6.5 \n", |
|
|
8997 |
"3 3.6.5 \n", |
|
|
8998 |
"4 3.6.5 \n", |
|
|
8999 |
"5 3.6.5 \n", |
|
|
9000 |
"6 3.6.5 \n", |
|
|
9001 |
"7 3.6.5 \n", |
|
|
9002 |
"8 3.6.5 \n", |
|
|
9003 |
"9 3.6.5 \n", |
|
|
9004 |
"10 3.6.5 \n", |
|
|
9005 |
"11 3.6.5 \n", |
|
|
9006 |
"12 3.6.5 \n", |
|
|
9007 |
"13 3.6.5 \n", |
|
|
9008 |
"14 3.6.5 \n", |
|
|
9009 |
"15 None \n", |
|
|
9010 |
"16 3.6.5 \n", |
|
|
9011 |
"17 3.6.5 \n", |
|
|
9012 |
"18 3.6.5 \n", |
|
|
9013 |
"19 3.6.5 \n", |
|
|
9014 |
"20 3.6.5 \n", |
|
|
9015 |
"21 3.6.5 \n", |
|
|
9016 |
"22 3.6.5 \n", |
|
|
9017 |
"23 3.6.5 \n", |
|
|
9018 |
"24 3.6.5 \n", |
|
|
9019 |
"25 3.6.5 \n", |
|
|
9020 |
"26 3.6.5 \n", |
|
|
9021 |
"27 3.6.5 \n", |
|
|
9022 |
"28 3.6.5 \n", |
|
|
9023 |
"29 3.6.5 \n", |
|
|
9024 |
".. ... \n", |
|
|
9025 |
"95 3.6.5 \n", |
|
|
9026 |
"96 3.6.5 \n", |
|
|
9027 |
"97 3.6.5 \n", |
|
|
9028 |
"98 3.6.5 \n", |
|
|
9029 |
"99 3.6.5 \n", |
|
|
9030 |
"100 3.6.5 \n", |
|
|
9031 |
"101 3.6.5 \n", |
|
|
9032 |
"102 3.6.5 \n", |
|
|
9033 |
"103 3.6.5 \n", |
|
|
9034 |
"104 3.6.5 \n", |
|
|
9035 |
"105 3.6.5 \n", |
|
|
9036 |
"106 3.6.5 \n", |
|
|
9037 |
"107 3.6.5 \n", |
|
|
9038 |
"108 3.6.5 \n", |
|
|
9039 |
"109 3.6.5 \n", |
|
|
9040 |
"110 3.6.5 \n", |
|
|
9041 |
"111 3.6.5 \n", |
|
|
9042 |
"112 3.6.5 \n", |
|
|
9043 |
"113 3.6.5 \n", |
|
|
9044 |
"114 3.6.5 \n", |
|
|
9045 |
"115 None \n", |
|
|
9046 |
"116 3.6.5 \n", |
|
|
9047 |
"117 3.6.5 \n", |
|
|
9048 |
"118 3.6.5 \n", |
|
|
9049 |
"119 3.6.5 \n", |
|
|
9050 |
"120 3.6.5 \n", |
|
|
9051 |
"121 3.6.5 \n", |
|
|
9052 |
"122 3.6.5 \n", |
|
|
9053 |
"123 3.6.5 \n", |
|
|
9054 |
"124 3.6.5 \n", |
|
|
9055 |
"\n", |
|
|
9056 |
" diagnostics_Configuration_Settings \\\n", |
|
|
9057 |
"0 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9058 |
"1 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9059 |
"2 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9060 |
"3 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9061 |
"4 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9062 |
"5 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9063 |
"6 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9064 |
"7 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9065 |
"8 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9066 |
"9 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9067 |
"10 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9068 |
"11 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9069 |
"12 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9070 |
"13 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9071 |
"14 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9072 |
"15 None \n", |
|
|
9073 |
"16 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9074 |
"17 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9075 |
"18 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9076 |
"19 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9077 |
"20 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9078 |
"21 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9079 |
"22 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9080 |
"23 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9081 |
"24 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9082 |
"25 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9083 |
"26 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9084 |
"27 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9085 |
"28 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9086 |
"29 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9087 |
".. ... \n", |
|
|
9088 |
"95 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9089 |
"96 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9090 |
"97 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9091 |
"98 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9092 |
"99 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9093 |
"100 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9094 |
"101 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9095 |
"102 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9096 |
"103 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9097 |
"104 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9098 |
"105 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9099 |
"106 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9100 |
"107 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9101 |
"108 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9102 |
"109 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9103 |
"110 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9104 |
"111 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9105 |
"112 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9106 |
"113 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9107 |
"114 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9108 |
"115 None \n", |
|
|
9109 |
"116 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9110 |
"117 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9111 |
"118 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9112 |
"119 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9113 |
"120 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9114 |
"121 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9115 |
"122 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9116 |
"123 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9117 |
"124 {'minimumROIDimensions': 2, 'minimumROISize': ... \n", |
|
|
9118 |
"\n", |
|
|
9119 |
" diagnostics_Configuration_EnabledImageTypes \\\n", |
|
|
9120 |
"0 {'Original': {}} \n", |
|
|
9121 |
"1 {'Original': {}} \n", |
|
|
9122 |
"2 {'Original': {}} \n", |
|
|
9123 |
"3 {'Original': {}} \n", |
|
|
9124 |
"4 {'Original': {}} \n", |
|
|
9125 |
"5 {'Original': {}} \n", |
|
|
9126 |
"6 {'Original': {}} \n", |
|
|
9127 |
"7 {'Original': {}} \n", |
|
|
9128 |
"8 {'Original': {}} \n", |
|
|
9129 |
"9 {'Original': {}} \n", |
|
|
9130 |
"10 {'Original': {}} \n", |
|
|
9131 |
"11 {'Original': {}} \n", |
|
|
9132 |
"12 {'Original': {}} \n", |
|
|
9133 |
"13 {'Original': {}} \n", |
|
|
9134 |
"14 {'Original': {}} \n", |
|
|
9135 |
"15 None \n", |
|
|
9136 |
"16 {'Original': {}} \n", |
|
|
9137 |
"17 {'Original': {}} \n", |
|
|
9138 |
"18 {'Original': {}} \n", |
|
|
9139 |
"19 {'Original': {}} \n", |
|
|
9140 |
"20 {'Original': {}} \n", |
|
|
9141 |
"21 {'Original': {}} \n", |
|
|
9142 |
"22 {'Original': {}} \n", |
|
|
9143 |
"23 {'Original': {}} \n", |
|
|
9144 |
"24 {'Original': {}} \n", |
|
|
9145 |
"25 {'Original': {}} \n", |
|
|
9146 |
"26 {'Original': {}} \n", |
|
|
9147 |
"27 {'Original': {}} \n", |
|
|
9148 |
"28 {'Original': {}} \n", |
|
|
9149 |
"29 {'Original': {}} \n", |
|
|
9150 |
".. ... \n", |
|
|
9151 |
"95 {'Original': {}} \n", |
|
|
9152 |
"96 {'Original': {}} \n", |
|
|
9153 |
"97 {'Original': {}} \n", |
|
|
9154 |
"98 {'Original': {}} \n", |
|
|
9155 |
"99 {'Original': {}} \n", |
|
|
9156 |
"100 {'Original': {}} \n", |
|
|
9157 |
"101 {'Original': {}} \n", |
|
|
9158 |
"102 {'Original': {}} \n", |
|
|
9159 |
"103 {'Original': {}} \n", |
|
|
9160 |
"104 {'Original': {}} \n", |
|
|
9161 |
"105 {'Original': {}} \n", |
|
|
9162 |
"106 {'Original': {}} \n", |
|
|
9163 |
"107 {'Original': {}} \n", |
|
|
9164 |
"108 {'Original': {}} \n", |
|
|
9165 |
"109 {'Original': {}} \n", |
|
|
9166 |
"110 {'Original': {}} \n", |
|
|
9167 |
"111 {'Original': {}} \n", |
|
|
9168 |
"112 {'Original': {}} \n", |
|
|
9169 |
"113 {'Original': {}} \n", |
|
|
9170 |
"114 {'Original': {}} \n", |
|
|
9171 |
"115 None \n", |
|
|
9172 |
"116 {'Original': {}} \n", |
|
|
9173 |
"117 {'Original': {}} \n", |
|
|
9174 |
"118 {'Original': {}} \n", |
|
|
9175 |
"119 {'Original': {}} \n", |
|
|
9176 |
"120 {'Original': {}} \n", |
|
|
9177 |
"121 {'Original': {}} \n", |
|
|
9178 |
"122 {'Original': {}} \n", |
|
|
9179 |
"123 {'Original': {}} \n", |
|
|
9180 |
"124 {'Original': {}} \n", |
|
|
9181 |
"\n", |
|
|
9182 |
" diagnostics_Image-original_Hash \\\n", |
|
|
9183 |
"0 a14c1903ca44b9c8bee21607abe86b6092e0e784 \n", |
|
|
9184 |
"1 012bee7c6eb8bc6eb005674e2786b955b3f2d343 \n", |
|
|
9185 |
"2 57504b176455455b107b42a27734198353b891b5 \n", |
|
|
9186 |
"3 466571f330c0e12c21c0e6b2ee64953b043a074a \n", |
|
|
9187 |
"4 e85f367b7409c24d3dda412f0616f26da1ea8d55 \n", |
|
|
9188 |
"5 ad9134c02294af33a76dd455adb2ea656e73d0bb \n", |
|
|
9189 |
"6 d37a13f547ac65b0c300c7a8bfee84b3115e7c8c \n", |
|
|
9190 |
"7 9f427e296f28dcda6c8ba2256469bf910fc1fdf0 \n", |
|
|
9191 |
"8 65e056af2c7644355d20656e3143dd6ec4212f41 \n", |
|
|
9192 |
"9 f59894d720e8d39348e9565d038b4d67f5b75b73 \n", |
|
|
9193 |
"10 650e3ddb43a406163856a490d35b09e1757e9a8a \n", |
|
|
9194 |
"11 2201f289b612c94b4e6cccf95a9f35f3a031e568 \n", |
|
|
9195 |
"12 3aaf1a6dfffb4502cb009a245e3f624143e45c75 \n", |
|
|
9196 |
"13 31d84fbf5c8a8881bbb03b34a76602a365a9fda7 \n", |
|
|
9197 |
"14 65d22cf14a9630e32cb1075687c067d85639a38a \n", |
|
|
9198 |
"15 None \n", |
|
|
9199 |
"16 a853815d68e5984787d97b80aedd8ac2194c8fd1 \n", |
|
|
9200 |
"17 273809757cdce6a3e507758ff42b9bcb0ceb26d9 \n", |
|
|
9201 |
"18 4e1d46819f6b163f98d7153b112617d99661b92b \n", |
|
|
9202 |
"19 a9a60e65302972e1eaffa4b25823aa80356e194f \n", |
|
|
9203 |
"20 e70047a300e13cd902203d6f4ed8065d409c2a9d \n", |
|
|
9204 |
"21 2897d9cb4324ba5e066db20a1872ff2d559f87f7 \n", |
|
|
9205 |
"22 3d2168d982f3c4e7a17708c461e032ca8ff5f654 \n", |
|
|
9206 |
"23 e0ff78eb127fe29cf197fcb0c0ddffa55934e921 \n", |
|
|
9207 |
"24 258d59a8e908d298439736c4ac470e7c32d649e8 \n", |
|
|
9208 |
"25 9dbe2d9abec6f23b48d4e089c88a3b27f7296b87 \n", |
|
|
9209 |
"26 45f93b8b702ba8eb34b6af937d89560f03f8b390 \n", |
|
|
9210 |
"27 beb477947a6861cccda1d87f4eccaa9f3154e1fb \n", |
|
|
9211 |
"28 549cc78e0ad653cb0218a534c9ae24ab598ffa78 \n", |
|
|
9212 |
"29 0dd431132afc7bfd4892f29112f28e0f7ad35654 \n", |
|
|
9213 |
".. ... \n", |
|
|
9214 |
"95 a48538a692ca41da321af57cab9dbe41fd5eda48 \n", |
|
|
9215 |
"96 5a478d9f70829b4d70e56a3525f4a4233f26d0dc \n", |
|
|
9216 |
"97 ca69b4e631d22e2a2714a46c291422b8f557562f \n", |
|
|
9217 |
"98 4c73b8f2321e9406d59183208c8e5184389ebd2a \n", |
|
|
9218 |
"99 3e133fd0606e4b0005d2018fa2c64516ef304e50 \n", |
|
|
9219 |
"100 47f2eed0427fee7e4a7234f4dfd74e3f74bf6ce2 \n", |
|
|
9220 |
"101 a2a39d9669721c7dac8beb68627618aee4b0aa44 \n", |
|
|
9221 |
"102 5d27478c0b1206d1ea3f3f3d2cb80a8c359fd6ec \n", |
|
|
9222 |
"103 66350ef67042b6f2ab840c95ca7e9ec64c824575 \n", |
|
|
9223 |
"104 38a431e88e9083427bc345b6028b7a8a677b9f5a \n", |
|
|
9224 |
"105 11830ba3ebcfd326a5e687a02dcd82ebfc517c18 \n", |
|
|
9225 |
"106 5d8be51376643971f19bd3a2f59d24b159cb3920 \n", |
|
|
9226 |
"107 d64474fb114ffaebce9a6a04abc8859f45b942a0 \n", |
|
|
9227 |
"108 c0d87c1345034c02e0a322e623111be89fecd323 \n", |
|
|
9228 |
"109 b275f9c5fd33616636bec06bab9ce6643edf85bc \n", |
|
|
9229 |
"110 7d289fb4b5ae72fd48b88220d93241c7569b4273 \n", |
|
|
9230 |
"111 2e10443a78f941589953e1dab07d55706884f10d \n", |
|
|
9231 |
"112 d16ad6f8ca976a826ace427f0de8db8750dda245 \n", |
|
|
9232 |
"113 f5e27141894f1ff823fddc4c04a8d2bcd1e952d7 \n", |
|
|
9233 |
"114 e409232560b4849557d6dbbfb99104ad46f771da \n", |
|
|
9234 |
"115 None \n", |
|
|
9235 |
"116 ae3f025df03ee1c7fb921be3e072a4c1e64c1f66 \n", |
|
|
9236 |
"117 d813d4c1f0c05bebed452ec0587c325d3c326615 \n", |
|
|
9237 |
"118 5396693b96794cf593f8cba977cf4aca75e6fe57 \n", |
|
|
9238 |
"119 49cf68b71478075077aae6b5865bb9a22c4c289a \n", |
|
|
9239 |
"120 c6e86385c89bf3c13f576f90e29293b08e4f2168 \n", |
|
|
9240 |
"121 02826b1db6c5353d2f6d70e4f2bdff50858c79c1 \n", |
|
|
9241 |
"122 f85fbdd3b892cb1f6c4ddff6c52d2335b2fdb2a3 \n", |
|
|
9242 |
"123 e7c8d73d44fb7f546298727aa5c48476ed4430da \n", |
|
|
9243 |
"124 86bbd3a4b79ada86c05660998789bf6c0575fec0 \n", |
|
|
9244 |
"\n", |
|
|
9245 |
" diagnostics_Image-original_Dimensionality \\\n", |
|
|
9246 |
"0 3D \n", |
|
|
9247 |
"1 3D \n", |
|
|
9248 |
"2 3D \n", |
|
|
9249 |
"3 3D \n", |
|
|
9250 |
"4 3D \n", |
|
|
9251 |
"5 3D \n", |
|
|
9252 |
"6 3D \n", |
|
|
9253 |
"7 3D \n", |
|
|
9254 |
"8 3D \n", |
|
|
9255 |
"9 3D \n", |
|
|
9256 |
"10 3D \n", |
|
|
9257 |
"11 3D \n", |
|
|
9258 |
"12 3D \n", |
|
|
9259 |
"13 3D \n", |
|
|
9260 |
"14 3D \n", |
|
|
9261 |
"15 None \n", |
|
|
9262 |
"16 3D \n", |
|
|
9263 |
"17 3D \n", |
|
|
9264 |
"18 3D \n", |
|
|
9265 |
"19 3D \n", |
|
|
9266 |
"20 3D \n", |
|
|
9267 |
"21 3D \n", |
|
|
9268 |
"22 3D \n", |
|
|
9269 |
"23 3D \n", |
|
|
9270 |
"24 3D \n", |
|
|
9271 |
"25 3D \n", |
|
|
9272 |
"26 3D \n", |
|
|
9273 |
"27 3D \n", |
|
|
9274 |
"28 3D \n", |
|
|
9275 |
"29 3D \n", |
|
|
9276 |
".. ... \n", |
|
|
9277 |
"95 3D \n", |
|
|
9278 |
"96 3D \n", |
|
|
9279 |
"97 3D \n", |
|
|
9280 |
"98 3D \n", |
|
|
9281 |
"99 3D \n", |
|
|
9282 |
"100 3D \n", |
|
|
9283 |
"101 3D \n", |
|
|
9284 |
"102 3D \n", |
|
|
9285 |
"103 3D \n", |
|
|
9286 |
"104 3D \n", |
|
|
9287 |
"105 3D \n", |
|
|
9288 |
"106 3D \n", |
|
|
9289 |
"107 3D \n", |
|
|
9290 |
"108 3D \n", |
|
|
9291 |
"109 3D \n", |
|
|
9292 |
"110 3D \n", |
|
|
9293 |
"111 3D \n", |
|
|
9294 |
"112 3D \n", |
|
|
9295 |
"113 3D \n", |
|
|
9296 |
"114 3D \n", |
|
|
9297 |
"115 None \n", |
|
|
9298 |
"116 3D \n", |
|
|
9299 |
"117 3D \n", |
|
|
9300 |
"118 3D \n", |
|
|
9301 |
"119 3D \n", |
|
|
9302 |
"120 3D \n", |
|
|
9303 |
"121 3D \n", |
|
|
9304 |
"122 3D \n", |
|
|
9305 |
"123 3D \n", |
|
|
9306 |
"124 3D \n", |
|
|
9307 |
"\n", |
|
|
9308 |
" diagnostics_Image-original_Spacing ... \\\n", |
|
|
9309 |
"0 (1.0, 1.0, 1.0) ... \n", |
|
|
9310 |
"1 (1.0, 1.0, 1.0) ... \n", |
|
|
9311 |
"2 (1.0, 1.0, 1.0) ... \n", |
|
|
9312 |
"3 (1.0, 1.0, 1.0) ... \n", |
|
|
9313 |
"4 (1.0, 1.0, 1.0) ... \n", |
|
|
9314 |
"5 (1.0, 1.0, 1.0) ... \n", |
|
|
9315 |
"6 (1.0, 1.0, 1.0) ... \n", |
|
|
9316 |
"7 (1.0, 1.0, 1.0) ... \n", |
|
|
9317 |
"8 (1.0, 1.0, 1.0) ... \n", |
|
|
9318 |
"9 (1.0, 1.0, 1.0) ... \n", |
|
|
9319 |
"10 (1.0, 1.0, 1.0) ... \n", |
|
|
9320 |
"11 (1.0, 1.0, 1.0) ... \n", |
|
|
9321 |
"12 (1.0, 1.0, 1.0) ... \n", |
|
|
9322 |
"13 (1.0, 1.0, 1.0) ... \n", |
|
|
9323 |
"14 (1.0, 1.0, 1.0) ... \n", |
|
|
9324 |
"15 None ... \n", |
|
|
9325 |
"16 (1.0, 1.0, 1.0) ... \n", |
|
|
9326 |
"17 (1.0, 1.0, 1.0) ... \n", |
|
|
9327 |
"18 (1.0, 1.0, 1.0) ... \n", |
|
|
9328 |
"19 (1.0, 1.0, 1.0) ... \n", |
|
|
9329 |
"20 (1.0, 1.0, 1.0) ... \n", |
|
|
9330 |
"21 (1.0, 1.0, 1.0) ... \n", |
|
|
9331 |
"22 (1.0, 1.0, 1.0) ... \n", |
|
|
9332 |
"23 (1.0, 1.0, 1.0) ... \n", |
|
|
9333 |
"24 (1.0, 1.0, 1.0) ... \n", |
|
|
9334 |
"25 (1.0, 1.0, 1.0) ... \n", |
|
|
9335 |
"26 (1.0, 1.0, 1.0) ... \n", |
|
|
9336 |
"27 (1.0, 1.0, 1.0) ... \n", |
|
|
9337 |
"28 (1.0, 1.0, 1.0) ... \n", |
|
|
9338 |
"29 (1.0, 1.0, 1.0) ... \n", |
|
|
9339 |
".. ... ... \n", |
|
|
9340 |
"95 (1.0, 1.0, 1.0) ... \n", |
|
|
9341 |
"96 (1.0, 1.0, 1.0) ... \n", |
|
|
9342 |
"97 (1.0, 1.0, 1.0) ... \n", |
|
|
9343 |
"98 (1.0, 1.0, 1.0) ... \n", |
|
|
9344 |
"99 (1.0, 1.0, 1.0) ... \n", |
|
|
9345 |
"100 (1.0, 1.0, 1.0) ... \n", |
|
|
9346 |
"101 (1.0, 1.0, 1.0) ... \n", |
|
|
9347 |
"102 (1.0, 1.0, 1.0) ... \n", |
|
|
9348 |
"103 (1.0, 1.0, 1.0) ... \n", |
|
|
9349 |
"104 (1.0, 1.0, 1.0) ... \n", |
|
|
9350 |
"105 (1.0, 1.0, 1.0) ... \n", |
|
|
9351 |
"106 (1.0, 1.0, 1.0) ... \n", |
|
|
9352 |
"107 (1.0, 1.0, 1.0) ... \n", |
|
|
9353 |
"108 (1.0, 1.0, 1.0) ... \n", |
|
|
9354 |
"109 (1.0, 1.0, 1.0) ... \n", |
|
|
9355 |
"110 (1.0, 1.0, 1.0) ... \n", |
|
|
9356 |
"111 (1.0, 1.0, 1.0) ... \n", |
|
|
9357 |
"112 (1.0, 1.0, 1.0) ... \n", |
|
|
9358 |
"113 (1.0, 1.0, 1.0) ... \n", |
|
|
9359 |
"114 (1.0, 1.0, 1.0) ... \n", |
|
|
9360 |
"115 None ... \n", |
|
|
9361 |
"116 (1.0, 1.0, 1.0) ... \n", |
|
|
9362 |
"117 (1.0, 1.0, 1.0) ... \n", |
|
|
9363 |
"118 (1.0, 1.0, 1.0) ... \n", |
|
|
9364 |
"119 (1.0, 1.0, 1.0) ... \n", |
|
|
9365 |
"120 (1.0, 1.0, 1.0) ... \n", |
|
|
9366 |
"121 (1.0, 1.0, 1.0) ... \n", |
|
|
9367 |
"122 (1.0, 1.0, 1.0) ... \n", |
|
|
9368 |
"123 (1.0, 1.0, 1.0) ... \n", |
|
|
9369 |
"124 (1.0, 1.0, 1.0) ... \n", |
|
|
9370 |
"\n", |
|
|
9371 |
" original_glszm_SmallAreaLowGrayLevelEmphasis original_glszm_ZoneEntropy \\\n", |
|
|
9372 |
"0 0.00650396833685046 7.030494272641832 \n", |
|
|
9373 |
"1 0.0011372251755402353 7.056755551475125 \n", |
|
|
9374 |
"2 0.0030927233376598366 7.295787467156062 \n", |
|
|
9375 |
"3 0.011458708772295158 7.0290292656028655 \n", |
|
|
9376 |
"4 0.001263275408950132 7.296961213716396 \n", |
|
|
9377 |
"5 0.0032969046158858 6.8678024800660165 \n", |
|
|
9378 |
"6 0.0029809603474066533 7.738243027132657 \n", |
|
|
9379 |
"7 0.00517823384912288 6.614141307851755 \n", |
|
|
9380 |
"8 0.0010366632480026004 7.11280310139011 \n", |
|
|
9381 |
"9 0.010479469010200998 7.093423309251276 \n", |
|
|
9382 |
"10 0.0013135666223513395 7.290249750775166 \n", |
|
|
9383 |
"11 0.004386699758318983 6.993143319987266 \n", |
|
|
9384 |
"12 0.0022866037506234327 7.281882549196636 \n", |
|
|
9385 |
"13 0.001279280063784213 6.412111568664334 \n", |
|
|
9386 |
"14 0.007799168118793287 6.4700844404606315 \n", |
|
|
9387 |
"15 None None \n", |
|
|
9388 |
"16 0.0016018154028825543 7.182125278034371 \n", |
|
|
9389 |
"17 0.007394451023779944 6.433873357070576 \n", |
|
|
9390 |
"18 0.00207901957713131 7.216761375837666 \n", |
|
|
9391 |
"19 0.0011489558850105274 7.546747055523174 \n", |
|
|
9392 |
"20 0.012763629194190777 7.325373958378649 \n", |
|
|
9393 |
"21 0.0022758772300454227 7.2664282658107675 \n", |
|
|
9394 |
"22 0.0011185688377459372 8.248728886910184 \n", |
|
|
9395 |
"23 0.0010770241078634668 7.313909732997244 \n", |
|
|
9396 |
"24 0.0037926422490696353 6.637507422942822 \n", |
|
|
9397 |
"25 0.0036225818700725155 6.824029228836075 \n", |
|
|
9398 |
"26 0.013122570791631413 7.149332972704863 \n", |
|
|
9399 |
"27 0.0006920896717820855 7.097369645021458 \n", |
|
|
9400 |
"28 0.005145583882401662 7.402984092444055 \n", |
|
|
9401 |
"29 0.0015563728529436637 7.171018692542549 \n", |
|
|
9402 |
".. ... ... \n", |
|
|
9403 |
"95 0.004909861018104349 6.3634196700345145 \n", |
|
|
9404 |
"96 0.0021843297990240874 6.523018054335413 \n", |
|
|
9405 |
"97 0.005567100092065029 6.284519913123125 \n", |
|
|
9406 |
"98 0.004127494117094649 6.9872152856031935 \n", |
|
|
9407 |
"99 0.012503581567686 7.002932104126142 \n", |
|
|
9408 |
"100 0.0012915079086775018 6.357307447508318 \n", |
|
|
9409 |
"101 0.0016584864651334468 7.316153462141182 \n", |
|
|
9410 |
"102 0.002222608977493873 7.246356479894696 \n", |
|
|
9411 |
"103 0.001711024852536452 7.211211919390604 \n", |
|
|
9412 |
"104 0.0007228405208663204 7.606218979639587 \n", |
|
|
9413 |
"105 0.005955592567047564 6.647190991501348 \n", |
|
|
9414 |
"106 0.0019019244473467048 7.504007551014153 \n", |
|
|
9415 |
"107 0.0018885625093965745 7.285933177231522 \n", |
|
|
9416 |
"108 0.0026086440557093883 6.487526847584183 \n", |
|
|
9417 |
"109 0.006231414377284782 6.777064560803622 \n", |
|
|
9418 |
"110 0.0017730477625832414 6.626865194133249 \n", |
|
|
9419 |
"111 0.007946782920712922 7.217992093283175 \n", |
|
|
9420 |
"112 0.008373282253858156 6.633171142766264 \n", |
|
|
9421 |
"113 0.0019831751974015745 7.046603724629845 \n", |
|
|
9422 |
"114 0.0008012685187611323 7.394066541839875 \n", |
|
|
9423 |
"115 None None \n", |
|
|
9424 |
"116 0.0019622405594830732 7.343350413196008 \n", |
|
|
9425 |
"117 0.0017841696757871135 7.164660013235399 \n", |
|
|
9426 |
"118 0.0037109837182313023 6.977998439577439 \n", |
|
|
9427 |
"119 0.003007768913538569 6.9407929790772025 \n", |
|
|
9428 |
"120 0.010075701965476344 6.0993773731215235 \n", |
|
|
9429 |
"121 0.01646721981147634 7.011653874203149 \n", |
|
|
9430 |
"122 0.0027211270780033723 6.773491446614239 \n", |
|
|
9431 |
"123 0.002643240035718965 6.705839551330013 \n", |
|
|
9432 |
"124 0.0021372612525416925 6.820178021315897 \n", |
|
|
9433 |
"\n", |
|
|
9434 |
" original_glszm_ZonePercentage original_glszm_ZoneVariance \\\n", |
|
|
9435 |
"0 0.3864306784660767 88.6209195268341 \n", |
|
|
9436 |
"1 0.16735686583842765 28829.700225615623 \n", |
|
|
9437 |
"2 0.16808601234830742 9195.18109360467 \n", |
|
|
9438 |
"3 0.466265441875198 11.03069203021621 \n", |
|
|
9439 |
"4 0.11617878762749813 64430.20175176771 \n", |
|
|
9440 |
"5 0.34163816967920535 544.6214691280725 \n", |
|
|
9441 |
"6 0.03732633079136861 1309263.1233864485 \n", |
|
|
9442 |
"7 0.3871290430143381 45.285296393483 \n", |
|
|
9443 |
"8 0.0696949112495939 605556.5375066835 \n", |
|
|
9444 |
"9 0.5298420976387078 43.43556805391967 \n", |
|
|
9445 |
"10 0.08715231366558462 106691.33898015402 \n", |
|
|
9446 |
"11 0.47312989467998917 6.884929617293218 \n", |
|
|
9447 |
"12 0.22450729804264477 6012.703448594982 \n", |
|
|
9448 |
"13 0.08001851328070762 73198.95628983667 \n", |
|
|
9449 |
"14 0.467940813810111 27.130104967877784 \n", |
|
|
9450 |
"15 None None \n", |
|
|
9451 |
"16 0.20367269321374848 8741.141397075318 \n", |
|
|
9452 |
"17 0.4601181683899557 32.09514877785478 \n", |
|
|
9453 |
"18 0.10587706685837527 76440.78066121768 \n", |
|
|
9454 |
"19 0.05381876744032939 830330.9076159397 \n", |
|
|
9455 |
"20 0.4870036609405801 525.5645610801705 \n", |
|
|
9456 |
"21 0.13389295353850855 85544.06999992867 \n", |
|
|
9457 |
"22 0.0730208262668747 139592.72769047518 \n", |
|
|
9458 |
"23 0.06114648479281229 1237003.6374900725 \n", |
|
|
9459 |
"24 0.3844765342960289 147.45577376622805 \n", |
|
|
9460 |
"25 0.2104562597056866 3496.143136993939 \n", |
|
|
9461 |
"26 0.2962899347303332 78.12656702373451 \n", |
|
|
9462 |
"27 0.05234754009620629 876377.4641854893 \n", |
|
|
9463 |
"28 0.16720340074713383 1438.188380963008 \n", |
|
|
9464 |
"29 0.14653526878856482 56852.351194028306 \n", |
|
|
9465 |
".. ... ... \n", |
|
|
9466 |
"95 0.4908802537668517 28.439653305007553 \n", |
|
|
9467 |
"96 0.3223493900138347 950.5396868214782 \n", |
|
|
9468 |
"97 0.02604800353943148 118365.46946687042 \n", |
|
|
9469 |
"98 0.374845869297164 28.681559470221607 \n", |
|
|
9470 |
"99 0.5721212121212121 8.92743195202528 \n", |
|
|
9471 |
"100 0.19026213894699365 12689.343166868439 \n", |
|
|
9472 |
"101 0.1603829597743803 8142.572534881569 \n", |
|
|
9473 |
"102 0.22850904076003678 5392.334253078696 \n", |
|
|
9474 |
"103 0.07534246575342465 140176.600645958 \n", |
|
|
9475 |
"104 0.04023138726000061 3717878.664198988 \n", |
|
|
9476 |
"105 0.3758221108675227 103.89746597222222 \n", |
|
|
9477 |
"106 0.05953543827391042 614376.1469985214 \n", |
|
|
9478 |
"107 0.09055182577370231 48730.28641406892 \n", |
|
|
9479 |
"108 0.24706457925636008 4968.021503774141 \n", |
|
|
9480 |
"109 0.4981838502374965 88.96629569036918 \n", |
|
|
9481 |
"110 0.1299949514674084 158592.56550772983 \n", |
|
|
9482 |
"111 0.5187952898550725 35.91334441929315 \n", |
|
|
9483 |
"112 0.4473029045643154 5.8869685840266275 \n", |
|
|
9484 |
"113 0.056624844352870886 836145.833284638 \n", |
|
|
9485 |
"114 0.04941498270156874 567619.235481018 \n", |
|
|
9486 |
"115 None None \n", |
|
|
9487 |
"116 0.15911913055900484 34583.515757298126 \n", |
|
|
9488 |
"117 0.10005430355688298 16145.069170000494 \n", |
|
|
9489 |
"118 0.36580734261710207 6563.19153991484 \n", |
|
|
9490 |
"119 0.3619009743487771 104.48952391015578 \n", |
|
|
9491 |
"120 0.5219399538106235 46.51505599498787 \n", |
|
|
9492 |
"121 0.30067447639332623 29.1807128151445 \n", |
|
|
9493 |
"122 0.3555760085902746 248.4501152402215 \n", |
|
|
9494 |
"123 0.18991288399816597 3374.168969240443 \n", |
|
|
9495 |
"124 0.17709405227413047 2932.077399158158 \n", |
|
|
9496 |
"\n", |
|
|
9497 |
" original_ngtdm_Busyness original_ngtdm_Coarseness \\\n", |
|
|
9498 |
"0 0.3192207510507349 0.0029973859057788035 \n", |
|
|
9499 |
"1 1.0432795311296523 0.000299498303363116 \n", |
|
|
9500 |
"2 0.4240922951318243 0.0009696911689902665 \n", |
|
|
9501 |
"3 3.3630953665269554 0.00046453293179421864 \n", |
|
|
9502 |
"4 0.8221696618971971 0.00016990275935880697 \n", |
|
|
9503 |
"5 0.2863143301056496 0.0025691941507084907 \n", |
|
|
9504 |
"6 7.805748110033149 4.954695416944482e-05 \n", |
|
|
9505 |
"7 0.2705994297708851 0.004530731014635755 \n", |
|
|
9506 |
"8 4.077923636426653 6.20967645037254e-05 \n", |
|
|
9507 |
"9 0.8254093902613867 0.0006990957187612052 \n", |
|
|
9508 |
"10 1.6728991723332216 0.0001561327523102608 \n", |
|
|
9509 |
"11 0.35121142360815816 0.0026347858751217734 \n", |
|
|
9510 |
"12 1.864169981077123 0.0002987021988376117 \n", |
|
|
9511 |
"13 1.388880577180543 0.0002998454900873995 \n", |
|
|
9512 |
"14 0.1501706253921209 0.007955072276613552 \n", |
|
|
9513 |
"15 None None \n", |
|
|
9514 |
"16 1.1055475120072882 0.0004574843042622475 \n", |
|
|
9515 |
"17 0.11023960241102679 0.0087337091685833 \n", |
|
|
9516 |
"18 1.2577313175994982 0.00027738856464899536 \n", |
|
|
9517 |
"19 5.746706476154839 5.699361308135361e-05 \n", |
|
|
9518 |
"20 1.7551337628417458 0.00012971495401556526 \n", |
|
|
9519 |
"21 2.859580693174141 0.0001532977554033749 \n", |
|
|
9520 |
"22 1.2134631034886427 0.0001280631202416637 \n", |
|
|
9521 |
"23 5.93905470974652 3.0491249955612493e-05 \n", |
|
|
9522 |
"24 0.1913375339584415 0.004166102926085494 \n", |
|
|
9523 |
"25 0.41135066550280985 0.0011465486712864447 \n", |
|
|
9524 |
"26 1.259889503856971 0.0023904668557108645 \n", |
|
|
9525 |
"27 8.177036987839658 3.5146532370158366e-05 \n", |
|
|
9526 |
"28 2.2829896732712696 0.001544110396124168 \n", |
|
|
9527 |
"29 2.7957047470336787 0.00011931026094401463 \n", |
|
|
9528 |
".. ... ... \n", |
|
|
9529 |
"95 0.09853983370572887 0.006128386463292559 \n", |
|
|
9530 |
"96 0.3418510303680603 0.0009726182310737089 \n", |
|
|
9531 |
"97 1.6205272258764905 0.0007486380658215003 \n", |
|
|
9532 |
"98 0.46010220474228475 0.002554600286353541 \n", |
|
|
9533 |
"99 0.6185986863045154 0.0012089641895892626 \n", |
|
|
9534 |
"100 0.8078584990099813 0.00031288421802832557 \n", |
|
|
9535 |
"101 1.0255212134410199 0.0005296958862443307 \n", |
|
|
9536 |
"102 0.5310859112566346 0.000791061766921541 \n", |
|
|
9537 |
"103 1.0493009059678187 0.00022909201834592387 \n", |
|
|
9538 |
"104 9.637744539407947 1.685693150912406e-05 \n", |
|
|
9539 |
"105 0.22256896238559867 0.005153939867356212 \n", |
|
|
9540 |
"106 2.415003699935183 6.8474833135653e-05 \n", |
|
|
9541 |
"107 0.6905228394131907 0.00035546769631391293 \n", |
|
|
9542 |
"108 0.6804066651536249 0.0006973213701255513 \n", |
|
|
9543 |
"109 0.21695867592903567 0.0024867334839892854 \n", |
|
|
9544 |
"110 3.8152392445127785 6.985684329472468e-05 \n", |
|
|
9545 |
"111 0.6270759219303694 0.0005591724966979988 \n", |
|
|
9546 |
"112 0.26027179000208106 0.007746555989385689 \n", |
|
|
9547 |
"113 5.159575840023793 5.309999706126223e-05 \n", |
|
|
9548 |
"114 4.1906592441504 5.865278267922613e-05 \n", |
|
|
9549 |
"115 None None \n", |
|
|
9550 |
"116 1.7726586432182057 0.00021330453567814433 \n", |
|
|
9551 |
"117 0.33193044780371306 0.0007828676838876653 \n", |
|
|
9552 |
"118 1.0744601809934957 0.0001097569923580824 \n", |
|
|
9553 |
"119 0.23074648713212081 0.003908611687093402 \n", |
|
|
9554 |
"120 0.10340895584775858 0.006276318164644369 \n", |
|
|
9555 |
"121 1.3085642777769355 0.004362685576214294 \n", |
|
|
9556 |
"122 0.31679582345784657 0.0023886443672453354 \n", |
|
|
9557 |
"123 0.4049830751560497 0.0014098867076919712 \n", |
|
|
9558 |
"124 0.22432841908751996 0.0020667477801126354 \n", |
|
|
9559 |
"\n", |
|
|
9560 |
" original_ngtdm_Complexity original_ngtdm_Contrast \\\n", |
|
|
9561 |
"0 2400.7459995508075 0.2587860762411749 \n", |
|
|
9562 |
"1 1503.157610147304 0.05499763926588297 \n", |
|
|
9563 |
"2 1549.136212300552 0.04406541279692153 \n", |
|
|
9564 |
"3 5166.658333866696 0.2505568367343866 \n", |
|
|
9565 |
"4 5325.885346788066 0.010699961481524708 \n", |
|
|
9566 |
"5 1379.2028413909507 0.2628539609310901 \n", |
|
|
9567 |
"6 822.2480054589579 0.004100770738762614 \n", |
|
|
9568 |
"7 1220.8504664217726 0.20120530288705538 \n", |
|
|
9569 |
"8 1006.0517011238957 0.010350257260902742 \n", |
|
|
9570 |
"9 11044.45288293424 0.41551539995882586 \n", |
|
|
9571 |
"10 1593.5885238173992 0.010860246929524961 \n", |
|
|
9572 |
"11 4805.504622046324 0.21742004640356255 \n", |
|
|
9573 |
"12 2759.1888943053364 0.20721851269319333 \n", |
|
|
9574 |
"13 745.5657726234778 0.01223376137924379 \n", |
|
|
9575 |
"14 1518.9731658901567 0.41458437806298254 \n", |
|
|
9576 |
"15 None None \n", |
|
|
9577 |
"16 1152.711679956383 0.12063673720755935 \n", |
|
|
9578 |
"17 1691.460822118643 0.3678397007257342 \n", |
|
|
9579 |
"18 973.6351580528127 0.03444450654353795 \n", |
|
|
9580 |
"19 761.4420879198275 0.01474535986952564 \n", |
|
|
9581 |
"20 40696.270734442085 0.21091397452450425 \n", |
|
|
9582 |
"21 849.3310725848982 0.0652664253181279 \n", |
|
|
9583 |
"22 5342.310426158639 0.0073132615707251335 \n", |
|
|
9584 |
"23 1766.462333348672 0.006612829440770413 \n", |
|
|
9585 |
"24 1412.896263155049 0.24176798197313495 \n", |
|
|
9586 |
"25 1361.8468773052925 0.07590032713802068 \n", |
|
|
9587 |
"26 1208.3624642500931 0.17425748937293656 \n", |
|
|
9588 |
"27 1145.4730793940223 0.006323161648866281 \n", |
|
|
9589 |
"28 763.2340750570938 0.14610978301077746 \n", |
|
|
9590 |
"29 1569.2943277075763 0.05618356449732737 \n", |
|
|
9591 |
".. ... ... \n", |
|
|
9592 |
"95 3713.741867175296 0.34207218015051943 \n", |
|
|
9593 |
"96 3788.8960015646708 0.14614563436055536 \n", |
|
|
9594 |
"97 178.0344916193256 0.003122302546334271 \n", |
|
|
9595 |
"98 1382.2005623989996 0.20750914289398348 \n", |
|
|
9596 |
"99 9944.430297311308 0.6108036684377867 \n", |
|
|
9597 |
"100 3314.5747748649055 0.031582891546476685 \n", |
|
|
9598 |
"101 1036.4138688656208 0.06208671081422941 \n", |
|
|
9599 |
"102 1436.2593017841912 0.12902073703553343 \n", |
|
|
9600 |
"103 1270.0607685978507 0.007485074313258024 \n", |
|
|
9601 |
"104 1634.587095246822 0.002255290037989331 \n", |
|
|
9602 |
"105 1136.9648640515823 0.2670402478948995 \n", |
|
|
9603 |
"106 1928.8285616928829 0.008531148721170723 \n", |
|
|
9604 |
"107 1289.767393925453 0.023004384382165524 \n", |
|
|
9605 |
"108 1576.2136981987005 0.13530594300509916 \n", |
|
|
9606 |
"109 6173.743883319467 0.5213400830095554 \n", |
|
|
9607 |
"110 1992.1961740610318 0.033305282386164994 \n", |
|
|
9608 |
"111 16917.21097410635 0.3784727364995947 \n", |
|
|
9609 |
"112 1964.4592706737542 0.2239367720503079 \n", |
|
|
9610 |
"113 975.6577339498588 0.008739278504770832 \n", |
|
|
9611 |
"114 1267.910184634066 0.006286878339812724 \n", |
|
|
9612 |
"115 None None \n", |
|
|
9613 |
"116 1239.2690074665556 0.10742161509496133 \n", |
|
|
9614 |
"117 1518.3577988463776 0.024138324990012467 \n", |
|
|
9615 |
"118 42061.21374856239 0.06638070897238856 \n", |
|
|
9616 |
"119 1280.390559382203 0.21346433936224996 \n", |
|
|
9617 |
"120 4134.876870641823 0.7670438665533905 \n", |
|
|
9618 |
"121 958.8147221435177 0.18745747878370758 \n", |
|
|
9619 |
"122 1456.5277302932097 0.203987238983539 \n", |
|
|
9620 |
"123 947.0140577942461 0.06318696600183107 \n", |
|
|
9621 |
"124 1045.8591768731944 0.08495472885593744 \n", |
|
|
9622 |
"\n", |
|
|
9623 |
" original_ngtdm_Strength patient_number \n", |
|
|
9624 |
"0 3.0193578055002153 000 \n", |
|
|
9625 |
"1 0.8124728927622762 001 \n", |
|
|
9626 |
"2 1.8312712830615954 006 \n", |
|
|
9627 |
"3 0.7531802976962354 009 \n", |
|
|
9628 |
"4 2.6618141092070435 010 \n", |
|
|
9629 |
"5 2.0394846613420556 012 \n", |
|
|
9630 |
"6 0.2195195589714611 013 \n", |
|
|
9631 |
"7 2.1775998993460277 019 \n", |
|
|
9632 |
"8 0.4301401259562533 027 \n", |
|
|
9633 |
"9 1.6537484042783042 028 \n", |
|
|
9634 |
"10 0.7415849420946503 034 \n", |
|
|
9635 |
"11 3.378920442731471 038 \n", |
|
|
9636 |
"12 0.5068317775037102 041 \n", |
|
|
9637 |
"13 0.9720661501394185 046 \n", |
|
|
9638 |
"14 4.1919466935123575 049 \n", |
|
|
9639 |
"15 None 050 \n", |
|
|
9640 |
"16 0.6521431547984168 054 \n", |
|
|
9641 |
"17 5.244593289310793 055 \n", |
|
|
9642 |
"18 0.7563117010648652 059 \n", |
|
|
9643 |
"19 0.31072496994970683 060 \n", |
|
|
9644 |
"20 1.3871357925853178 062 \n", |
|
|
9645 |
"21 0.27323796534755646 065 \n", |
|
|
9646 |
"22 2.5740353091891435 066 \n", |
|
|
9647 |
"23 0.3412408907520753 071 \n", |
|
|
9648 |
"24 2.874594943496401 074 \n", |
|
|
9649 |
"25 1.369533910463784 075 \n", |
|
|
9650 |
"26 1.5808995476622967 080 \n", |
|
|
9651 |
"27 0.18872669227202768 085 \n", |
|
|
9652 |
"28 1.1043825094567077 087 \n", |
|
|
9653 |
"29 0.3037241294257559 097 \n", |
|
|
9654 |
".. ... ... \n", |
|
|
9655 |
"95 5.19609367552519 322 \n", |
|
|
9656 |
"96 1.8751632807093437 324 \n", |
|
|
9657 |
"97 0.541301148998348 326 \n", |
|
|
9658 |
"98 1.4318893988970918 332 \n", |
|
|
9659 |
"99 2.3780051831861786 337 \n", |
|
|
9660 |
"100 1.0740660461843676 339 \n", |
|
|
9661 |
"101 0.522867677661479 342 \n", |
|
|
9662 |
"102 1.1849621401171695 344 \n", |
|
|
9663 |
"103 1.3073652723603235 351 \n", |
|
|
9664 |
"104 0.2637152947699818 352 \n", |
|
|
9665 |
"105 2.76514096705966 360 \n", |
|
|
9666 |
"106 0.9330691390698211 363 \n", |
|
|
9667 |
"107 1.6165925895635536 364 \n", |
|
|
9668 |
"108 1.190679865743594 369 \n", |
|
|
9669 |
"109 3.5582820444505576 370 \n", |
|
|
9670 |
"110 0.3270461822118756 374 \n", |
|
|
9671 |
"111 2.025850017902886 377 \n", |
|
|
9672 |
"112 4.630788924816604 379 \n", |
|
|
9673 |
"113 0.314596299454889 387 \n", |
|
|
9674 |
"114 0.3838231320748535 398 \n", |
|
|
9675 |
"115 None 404 \n", |
|
|
9676 |
"116 0.4387650631723471 405 \n", |
|
|
9677 |
"117 3.333053159235531 407 \n", |
|
|
9678 |
"118 2.6870359781538564 408 \n", |
|
|
9679 |
"119 2.4985246031596042 410 \n", |
|
|
9680 |
"120 6.366573936376155 411 \n", |
|
|
9681 |
"121 2.8754860445648287 412 \n", |
|
|
9682 |
"122 1.713392243116665 413 \n", |
|
|
9683 |
"123 1.5318233636625185 415 \n", |
|
|
9684 |
"124 2.832900477688721 419 \n", |
|
|
9685 |
"\n", |
|
|
9686 |
"[125 rows x 130 columns]" |
|
|
9687 |
] |
|
|
9688 |
}, |
|
|
9689 |
"execution_count": 99, |
|
|
9690 |
"metadata": {}, |
|
|
9691 |
"output_type": "execute_result" |
|
|
9692 |
} |
|
|
9693 |
], |
|
|
9694 |
"source": [ |
|
|
9695 |
"df" |
|
|
9696 |
] |
|
|
9697 |
}, |
|
|
9698 |
{ |
|
|
9699 |
"cell_type": "code", |
|
|
9700 |
"execution_count": 102, |
|
|
9701 |
"metadata": {}, |
|
|
9702 |
"outputs": [ |
|
|
9703 |
{ |
|
|
9704 |
"data": { |
|
|
9705 |
"text/plain": [ |
|
|
9706 |
"['diagnostics_Versions_PyRadiomics',\n", |
|
|
9707 |
" 'diagnostics_Versions_Numpy',\n", |
|
|
9708 |
" 'diagnostics_Versions_SimpleITK',\n", |
|
|
9709 |
" 'diagnostics_Versions_PyWavelet',\n", |
|
|
9710 |
" 'diagnostics_Versions_Python',\n", |
|
|
9711 |
" 'diagnostics_Configuration_Settings',\n", |
|
|
9712 |
" 'diagnostics_Configuration_EnabledImageTypes',\n", |
|
|
9713 |
" 'diagnostics_Image-original_Hash',\n", |
|
|
9714 |
" 'diagnostics_Image-original_Dimensionality',\n", |
|
|
9715 |
" 'diagnostics_Image-original_Spacing',\n", |
|
|
9716 |
" 'diagnostics_Image-original_Size',\n", |
|
|
9717 |
" 'diagnostics_Image-original_Mean',\n", |
|
|
9718 |
" 'diagnostics_Image-original_Minimum',\n", |
|
|
9719 |
" 'diagnostics_Image-original_Maximum',\n", |
|
|
9720 |
" 'diagnostics_Mask-original_Hash',\n", |
|
|
9721 |
" 'diagnostics_Mask-original_Spacing',\n", |
|
|
9722 |
" 'diagnostics_Mask-original_Size',\n", |
|
|
9723 |
" 'diagnostics_Mask-original_BoundingBox',\n", |
|
|
9724 |
" 'diagnostics_Mask-original_VoxelNum',\n", |
|
|
9725 |
" 'diagnostics_Mask-original_VolumeNum',\n", |
|
|
9726 |
" 'diagnostics_Mask-original_CenterOfMassIndex',\n", |
|
|
9727 |
" 'diagnostics_Mask-original_CenterOfMass',\n", |
|
|
9728 |
" 'original_shape_Elongation',\n", |
|
|
9729 |
" 'original_shape_Flatness',\n", |
|
|
9730 |
" 'original_shape_LeastAxisLength',\n", |
|
|
9731 |
" 'original_shape_MajorAxisLength',\n", |
|
|
9732 |
" 'original_shape_Maximum2DDiameterColumn',\n", |
|
|
9733 |
" 'original_shape_Maximum2DDiameterRow',\n", |
|
|
9734 |
" 'original_shape_Maximum2DDiameterSlice',\n", |
|
|
9735 |
" 'original_shape_Maximum3DDiameter',\n", |
|
|
9736 |
" 'original_shape_MeshVolume',\n", |
|
|
9737 |
" 'original_shape_MinorAxisLength',\n", |
|
|
9738 |
" 'original_shape_Sphericity',\n", |
|
|
9739 |
" 'original_shape_SurfaceArea',\n", |
|
|
9740 |
" 'original_shape_SurfaceVolumeRatio',\n", |
|
|
9741 |
" 'original_shape_VoxelVolume',\n", |
|
|
9742 |
" 'original_firstorder_10Percentile',\n", |
|
|
9743 |
" 'original_firstorder_90Percentile',\n", |
|
|
9744 |
" 'original_firstorder_Energy',\n", |
|
|
9745 |
" 'original_firstorder_Entropy',\n", |
|
|
9746 |
" 'original_firstorder_InterquartileRange',\n", |
|
|
9747 |
" 'original_firstorder_Kurtosis',\n", |
|
|
9748 |
" 'original_firstorder_Maximum',\n", |
|
|
9749 |
" 'original_firstorder_MeanAbsoluteDeviation',\n", |
|
|
9750 |
" 'original_firstorder_Mean',\n", |
|
|
9751 |
" 'original_firstorder_Median',\n", |
|
|
9752 |
" 'original_firstorder_Minimum',\n", |
|
|
9753 |
" 'original_firstorder_Range',\n", |
|
|
9754 |
" 'original_firstorder_RobustMeanAbsoluteDeviation',\n", |
|
|
9755 |
" 'original_firstorder_RootMeanSquared',\n", |
|
|
9756 |
" 'original_firstorder_Skewness',\n", |
|
|
9757 |
" 'original_firstorder_TotalEnergy',\n", |
|
|
9758 |
" 'original_firstorder_Uniformity',\n", |
|
|
9759 |
" 'original_firstorder_Variance',\n", |
|
|
9760 |
" 'original_glcm_Autocorrelation',\n", |
|
|
9761 |
" 'original_glcm_ClusterProminence',\n", |
|
|
9762 |
" 'original_glcm_ClusterShade',\n", |
|
|
9763 |
" 'original_glcm_ClusterTendency',\n", |
|
|
9764 |
" 'original_glcm_Contrast',\n", |
|
|
9765 |
" 'original_glcm_Correlation',\n", |
|
|
9766 |
" 'original_glcm_DifferenceAverage',\n", |
|
|
9767 |
" 'original_glcm_DifferenceEntropy',\n", |
|
|
9768 |
" 'original_glcm_DifferenceVariance',\n", |
|
|
9769 |
" 'original_glcm_Id',\n", |
|
|
9770 |
" 'original_glcm_Idm',\n", |
|
|
9771 |
" 'original_glcm_Idmn',\n", |
|
|
9772 |
" 'original_glcm_Idn',\n", |
|
|
9773 |
" 'original_glcm_Imc1',\n", |
|
|
9774 |
" 'original_glcm_Imc2',\n", |
|
|
9775 |
" 'original_glcm_InverseVariance',\n", |
|
|
9776 |
" 'original_glcm_JointAverage',\n", |
|
|
9777 |
" 'original_glcm_JointEnergy',\n", |
|
|
9778 |
" 'original_glcm_JointEntropy',\n", |
|
|
9779 |
" 'original_glcm_MCC',\n", |
|
|
9780 |
" 'original_glcm_MaximumProbability',\n", |
|
|
9781 |
" 'original_glcm_SumAverage',\n", |
|
|
9782 |
" 'original_glcm_SumEntropy',\n", |
|
|
9783 |
" 'original_glcm_SumSquares',\n", |
|
|
9784 |
" 'original_gldm_DependenceEntropy',\n", |
|
|
9785 |
" 'original_gldm_DependenceNonUniformity',\n", |
|
|
9786 |
" 'original_gldm_DependenceNonUniformityNormalized',\n", |
|
|
9787 |
" 'original_gldm_DependenceVariance',\n", |
|
|
9788 |
" 'original_gldm_GrayLevelNonUniformity',\n", |
|
|
9789 |
" 'original_gldm_GrayLevelVariance',\n", |
|
|
9790 |
" 'original_gldm_HighGrayLevelEmphasis',\n", |
|
|
9791 |
" 'original_gldm_LargeDependenceEmphasis',\n", |
|
|
9792 |
" 'original_gldm_LargeDependenceHighGrayLevelEmphasis',\n", |
|
|
9793 |
" 'original_gldm_LargeDependenceLowGrayLevelEmphasis',\n", |
|
|
9794 |
" 'original_gldm_LowGrayLevelEmphasis',\n", |
|
|
9795 |
" 'original_gldm_SmallDependenceEmphasis',\n", |
|
|
9796 |
" 'original_gldm_SmallDependenceHighGrayLevelEmphasis',\n", |
|
|
9797 |
" 'original_gldm_SmallDependenceLowGrayLevelEmphasis',\n", |
|
|
9798 |
" 'original_glrlm_GrayLevelNonUniformity',\n", |
|
|
9799 |
" 'original_glrlm_GrayLevelNonUniformityNormalized',\n", |
|
|
9800 |
" 'original_glrlm_GrayLevelVariance',\n", |
|
|
9801 |
" 'original_glrlm_HighGrayLevelRunEmphasis',\n", |
|
|
9802 |
" 'original_glrlm_LongRunEmphasis',\n", |
|
|
9803 |
" 'original_glrlm_LongRunHighGrayLevelEmphasis',\n", |
|
|
9804 |
" 'original_glrlm_LongRunLowGrayLevelEmphasis',\n", |
|
|
9805 |
" 'original_glrlm_LowGrayLevelRunEmphasis',\n", |
|
|
9806 |
" 'original_glrlm_RunEntropy',\n", |
|
|
9807 |
" 'original_glrlm_RunLengthNonUniformity',\n", |
|
|
9808 |
" 'original_glrlm_RunLengthNonUniformityNormalized',\n", |
|
|
9809 |
" 'original_glrlm_RunPercentage',\n", |
|
|
9810 |
" 'original_glrlm_RunVariance',\n", |
|
|
9811 |
" 'original_glrlm_ShortRunEmphasis',\n", |
|
|
9812 |
" 'original_glrlm_ShortRunHighGrayLevelEmphasis',\n", |
|
|
9813 |
" 'original_glrlm_ShortRunLowGrayLevelEmphasis',\n", |
|
|
9814 |
" 'original_glszm_GrayLevelNonUniformity',\n", |
|
|
9815 |
" 'original_glszm_GrayLevelNonUniformityNormalized',\n", |
|
|
9816 |
" 'original_glszm_GrayLevelVariance',\n", |
|
|
9817 |
" 'original_glszm_HighGrayLevelZoneEmphasis',\n", |
|
|
9818 |
" 'original_glszm_LargeAreaEmphasis',\n", |
|
|
9819 |
" 'original_glszm_LargeAreaHighGrayLevelEmphasis',\n", |
|
|
9820 |
" 'original_glszm_LargeAreaLowGrayLevelEmphasis',\n", |
|
|
9821 |
" 'original_glszm_LowGrayLevelZoneEmphasis',\n", |
|
|
9822 |
" 'original_glszm_SizeZoneNonUniformity',\n", |
|
|
9823 |
" 'original_glszm_SizeZoneNonUniformityNormalized',\n", |
|
|
9824 |
" 'original_glszm_SmallAreaEmphasis',\n", |
|
|
9825 |
" 'original_glszm_SmallAreaHighGrayLevelEmphasis',\n", |
|
|
9826 |
" 'original_glszm_SmallAreaLowGrayLevelEmphasis',\n", |
|
|
9827 |
" 'original_glszm_ZoneEntropy',\n", |
|
|
9828 |
" 'original_glszm_ZonePercentage',\n", |
|
|
9829 |
" 'original_glszm_ZoneVariance',\n", |
|
|
9830 |
" 'original_ngtdm_Busyness',\n", |
|
|
9831 |
" 'original_ngtdm_Coarseness',\n", |
|
|
9832 |
" 'original_ngtdm_Complexity',\n", |
|
|
9833 |
" 'original_ngtdm_Contrast',\n", |
|
|
9834 |
" 'original_ngtdm_Strength',\n", |
|
|
9835 |
" 'patient_number']" |
|
|
9836 |
] |
|
|
9837 |
}, |
|
|
9838 |
"execution_count": 102, |
|
|
9839 |
"metadata": {}, |
|
|
9840 |
"output_type": "execute_result" |
|
|
9841 |
} |
|
|
9842 |
], |
|
|
9843 |
"source": [ |
|
|
9844 |
"list(features_list.keys())" |
|
|
9845 |
] |
|
|
9846 |
}, |
|
|
9847 |
{ |
|
|
9848 |
"cell_type": "code", |
|
|
9849 |
"execution_count": null, |
|
|
9850 |
"metadata": {}, |
|
|
9851 |
"outputs": [], |
|
|
9852 |
"source": [] |
|
|
9853 |
} |
|
|
9854 |
], |
|
|
9855 |
"metadata": { |
|
|
9856 |
"kernelspec": { |
|
|
9857 |
"display_name": "Python 3", |
|
|
9858 |
"language": "python", |
|
|
9859 |
"name": "python3" |
|
|
9860 |
}, |
|
|
9861 |
"language_info": { |
|
|
9862 |
"codemirror_mode": { |
|
|
9863 |
"name": "ipython", |
|
|
9864 |
"version": 3 |
|
|
9865 |
}, |
|
|
9866 |
"file_extension": ".py", |
|
|
9867 |
"mimetype": "text/x-python", |
|
|
9868 |
"name": "python", |
|
|
9869 |
"nbconvert_exporter": "python", |
|
|
9870 |
"pygments_lexer": "ipython3", |
|
|
9871 |
"version": "3.6.5" |
|
|
9872 |
} |
|
|
9873 |
}, |
|
|
9874 |
"nbformat": 4, |
|
|
9875 |
"nbformat_minor": 2 |
|
|
9876 |
} |