amaazetools 0.1.6__tar.gz → 0.1.7__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.6/amaazetools.egg-info → amaazetools-0.1.7}/PKG-INFO +1 -1
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/dicom.py +2 -2
- {amaazetools-0.1.6 → amaazetools-0.1.7/amaazetools.egg-info}/PKG-INFO +1 -1
- {amaazetools-0.1.6 → amaazetools-0.1.7}/pyproject.toml +1 -1
- {amaazetools-0.1.6 → amaazetools-0.1.7}/LICENSE +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/MANIFEST.in +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/README.md +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/__init__.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/edge_detection.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/mesh_segmentation.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/svi.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools/trimesh.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools.egg-info/SOURCES.txt +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools.egg-info/dependency_links.txt +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools.egg-info/requires.txt +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/amaazetools.egg-info/top_level.txt +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/setup.cfg +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/setup.py +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/cextensions.c +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/memory_allocation.c +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/memory_allocation.h +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/mesh_operations.c +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/mesh_operations.h +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/svi_computations.c +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/svi_computations.h +0 -0
- {amaazetools-0.1.6 → amaazetools-0.1.7}/src/vector_operations.h +0 -0
|
@@ -369,7 +369,7 @@ def surface_bones(directory, iso=2500, write_gif=False):
|
|
|
369
369
|
|
|
370
370
|
#Marching cubes for isosurface
|
|
371
371
|
iso_level = iso
|
|
372
|
-
verts,faces,normals,values =
|
|
372
|
+
verts,faces,normals,values = tm.marching_cubes(J,iso_level)
|
|
373
373
|
mesh = tm.mesh(dx*verts,faces) #Multiplication by dx fixes units
|
|
374
374
|
|
|
375
375
|
#Reverse orientation of triangles (marching_cubes returns inward normals)
|
|
@@ -880,7 +880,7 @@ def surfacing_subproc(filename,directory,iso_level,write_gif=False):
|
|
|
880
880
|
J = rescale(I.astype(float),(dz/dx,1,1),mode='constant')
|
|
881
881
|
|
|
882
882
|
try:
|
|
883
|
-
verts,faces,normals,values =
|
|
883
|
+
verts,faces,normals,values = tm.marching_cubes(J,iso_level)
|
|
884
884
|
mesh = tm.mesh(dx*verts,faces) #Multiplication by dx fixes units
|
|
885
885
|
|
|
886
886
|
#Reverse orientation of triangles (marching_cubes returns inward normals)
|
|
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
|