nettracer3d 0.3.3__tar.gz → 0.3.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 (23) hide show
  1. {nettracer3d-0.3.3/src/nettracer3d.egg-info → nettracer3d-0.3.4}/PKG-INFO +1 -1
  2. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/pyproject.toml +1 -1
  3. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/nettracer_gui.py +3 -3
  4. {nettracer3d-0.3.3 → nettracer3d-0.3.4/src/nettracer3d.egg-info}/PKG-INFO +1 -1
  5. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/LICENSE +0 -0
  6. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/README.md +0 -0
  7. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/setup.cfg +0 -0
  8. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/__init__.py +0 -0
  9. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/community_extractor.py +0 -0
  10. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/hub_getter.py +0 -0
  11. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/modularity.py +0 -0
  12. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/morphology.py +0 -0
  13. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/nettracer.py +0 -0
  14. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/network_analysis.py +0 -0
  15. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/network_draw.py +0 -0
  16. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/node_draw.py +0 -0
  17. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/proximity.py +0 -0
  18. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/simple_network.py +0 -0
  19. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d/smart_dilate.py +0 -0
  20. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
  21. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
  22. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d.egg-info/requires.txt +0 -0
  23. {nettracer3d-0.3.3 → nettracer3d-0.3.4}/src/nettracer3d.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nettracer3d
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
5
5
  Author-email: Liam McLaughlin <boom2449@gmail.com>
6
6
  Project-URL: User_Manual, https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nettracer3d"
3
- version = "0.3.3"
3
+ version = "0.3.4"
4
4
  authors = [
5
5
  { name="Liam McLaughlin", email="boom2449@gmail.com" },
6
6
  ]
@@ -476,7 +476,7 @@ class ImageViewerWindow(QMainWindow):
476
476
  return np.vstack(chunk_results)
477
477
 
478
478
  # Process nodes and edges in parallel using multiprocessing
479
- with ThreadPoolExecutor(max_workers=mp.cpu_count()) as executor:
479
+ with ThreadPoolExecutor(max_workers=2) as executor:
480
480
  future_nodes = executor.submit(process_channel, self.channel_data[0], node_indices, full_shape)
481
481
  future_edges = executor.submit(process_channel, self.channel_data[1], edge_indices, full_shape)
482
482
  future_overlay1 = executor.submit(process_channel, self.channel_data[2], overlay1_indices, full_shape)
@@ -2520,8 +2520,8 @@ class ImageViewerWindow(QMainWindow):
2520
2520
  try:
2521
2521
  # Store current zoom limits if they exist and weren't provided
2522
2522
  if preserve_zoom is None and hasattr(self, 'ax'):
2523
- current_xlim = self.ax.get_xlim() if self.ax.get_xlim() != (0, 1) else None
2524
- current_ylim = self.ax.get_ylim() if self.ax.get_ylim() != (0, 1) else None
2523
+ current_xlim = None
2524
+ current_ylim = None
2525
2525
  else:
2526
2526
  current_xlim, current_ylim = preserve_zoom if preserve_zoom else (None, None)
2527
2527
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nettracer3d
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
5
5
  Author-email: Liam McLaughlin <boom2449@gmail.com>
6
6
  Project-URL: User_Manual, https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
File without changes
File without changes
File without changes