amaazetools 0.2.2__tar.gz → 0.2.4__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.
Files changed (26) hide show
  1. {amaazetools-0.2.2/amaazetools.egg-info → amaazetools-0.2.4}/PKG-INFO +1 -1
  2. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/dicom.py +2 -2
  3. {amaazetools-0.2.2 → amaazetools-0.2.4/amaazetools.egg-info}/PKG-INFO +1 -1
  4. {amaazetools-0.2.2 → amaazetools-0.2.4}/pyproject.toml +1 -1
  5. {amaazetools-0.2.2 → amaazetools-0.2.4}/LICENSE +0 -0
  6. {amaazetools-0.2.2 → amaazetools-0.2.4}/MANIFEST.in +0 -0
  7. {amaazetools-0.2.2 → amaazetools-0.2.4}/README.md +0 -0
  8. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/__init__.py +0 -0
  9. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/edge_detection.py +0 -0
  10. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/mesh_segmentation.py +0 -0
  11. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/svi.py +0 -0
  12. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools/trimesh.py +0 -0
  13. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools.egg-info/SOURCES.txt +0 -0
  14. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools.egg-info/dependency_links.txt +0 -0
  15. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools.egg-info/requires.txt +0 -0
  16. {amaazetools-0.2.2 → amaazetools-0.2.4}/amaazetools.egg-info/top_level.txt +0 -0
  17. {amaazetools-0.2.2 → amaazetools-0.2.4}/setup.cfg +0 -0
  18. {amaazetools-0.2.2 → amaazetools-0.2.4}/setup.py +0 -0
  19. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/cextensions.c +0 -0
  20. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/memory_allocation.c +0 -0
  21. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/memory_allocation.h +0 -0
  22. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/mesh_operations.c +0 -0
  23. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/mesh_operations.h +0 -0
  24. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/svi_computations.c +0 -0
  25. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/svi_computations.h +0 -0
  26. {amaazetools-0.2.2 → amaazetools-0.2.4}/src/vector_operations.h +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amaazetools
3
- Version: 0.2.2
3
+ Version: 0.2.4
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
@@ -876,7 +876,7 @@ def seg_adjacency_matrix(u):
876
876
  return M,X,Y
877
877
 
878
878
 
879
- def surfacing_subproc(filename,directory,iso_level,write_gif=False,miror=False):
879
+ def surfacing_subproc(filename,directory,iso_level,write_gif=False,mirror=False):
880
880
 
881
881
  print('Loading '+filename+'...')
882
882
  M = np.load(os.path.join(directory,filename))
@@ -943,7 +943,7 @@ def surface_bones_parallel(directory, iso=2500, write_gif=False, mirror=False, e
943
943
  else:
944
944
  num_cores =multiprocessing.cpu_count()
945
945
 
946
- errs = Parallel(n_jobs=num_cores)(delayed(surfacing_subproc)(f,directory,iso,mirror,write_gif) for f in fnames)
946
+ errs = Parallel(n_jobs=num_cores)(delayed(surfacing_subproc)(f,directory,iso,write_gif,mirror) for f in fnames)
947
947
 
948
948
  errs = np.array(errs)
949
949
  errs = errs[errs!='0']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amaazetools
3
- Version: 0.2.2
3
+ Version: 0.2.4
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
@@ -9,7 +9,7 @@ packages = ['amaazetools']
9
9
 
10
10
  [project]
11
11
  name = "amaazetools"
12
- version = "0.2.2"
12
+ version = "0.2.4"
13
13
  authors = [
14
14
  { name="Jeff Calder", email="jwcalder@umn.edu" },
15
15
  ]
File without changes
File without changes
File without changes
File without changes
File without changes