amaazetools 0.1.9__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {amaazetools-0.1.9/amaazetools.egg-info → amaazetools-0.2.0}/PKG-INFO +3 -2
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/dicom.py +4 -3
- {amaazetools-0.1.9 → amaazetools-0.2.0/amaazetools.egg-info}/PKG-INFO +3 -2
- {amaazetools-0.1.9 → amaazetools-0.2.0}/pyproject.toml +1 -1
- {amaazetools-0.1.9 → amaazetools-0.2.0}/LICENSE +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/MANIFEST.in +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/README.md +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/__init__.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/edge_detection.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/mesh_segmentation.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/svi.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools/trimesh.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools.egg-info/SOURCES.txt +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools.egg-info/dependency_links.txt +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools.egg-info/requires.txt +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/amaazetools.egg-info/top_level.txt +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/setup.cfg +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/setup.py +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/cextensions.c +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/memory_allocation.c +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/memory_allocation.h +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/mesh_operations.c +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/mesh_operations.h +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/svi_computations.c +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/svi_computations.h +0 -0
- {amaazetools-0.1.9 → amaazetools-0.2.0}/src/vector_operations.h +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: amaazetools
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Python package for mesh processing tools developed by AMAAZE
|
|
5
5
|
Author-email: Jeff Calder <jwcalder@umn.edu>
|
|
6
6
|
License: MIT
|
|
@@ -21,6 +21,7 @@ Requires-Dist: scikit-learn
|
|
|
21
21
|
Requires-Dist: matplotlib
|
|
22
22
|
Requires-Dist: graphlearning
|
|
23
23
|
Requires-Dist: plyfile
|
|
24
|
+
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# AMAAZE Tools
|
|
26
27
|
|
|
@@ -486,9 +486,10 @@ def process_dicom(directory, scanlayout, CTdir='ScanOverviews', Meshdir='Meshes'
|
|
|
486
486
|
str_z1 = np.array2string(z1, separator=',')
|
|
487
487
|
str_z2 = np.array2string(z2, separator=',')
|
|
488
488
|
|
|
489
|
-
df = df.
|
|
490
|
-
|
|
491
|
-
|
|
489
|
+
df = pd.concat([df, pd.DataFrame([{'ScanPacket':subdir, 'Process':True, 'x1':str_x1, 'x2':str_x2, 'y1':str_y1, 'y2':str_y2, 'z1':str_z1, 'z2':str_z2}])], ignore_index=True)
|
|
490
|
+
#df = df.append({'ScanPacket':subdir, 'Process':True, 'x1':str_x1, 'x2':str_x2,
|
|
491
|
+
# 'y1':str_y1, 'y2':str_y2,
|
|
492
|
+
# 'z1':str_z1, 'z2':str_z2,}, ignore_index=True)
|
|
492
493
|
else: #Load chop locations from spreadsheet
|
|
493
494
|
|
|
494
495
|
x1 = np.fromstring(chopsheet['x1'][i][1:-1], sep=',').astype(int)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: amaazetools
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Python package for mesh processing tools developed by AMAAZE
|
|
5
5
|
Author-email: Jeff Calder <jwcalder@umn.edu>
|
|
6
6
|
License: MIT
|
|
@@ -21,6 +21,7 @@ Requires-Dist: scikit-learn
|
|
|
21
21
|
Requires-Dist: matplotlib
|
|
22
22
|
Requires-Dist: graphlearning
|
|
23
23
|
Requires-Dist: plyfile
|
|
24
|
+
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# AMAAZE Tools
|
|
26
27
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|