nettracer3d 0.3.1__tar.gz → 0.3.2__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.
- {nettracer3d-0.3.1/src/nettracer3d.egg-info → nettracer3d-0.3.2}/PKG-INFO +4 -1
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/README.md +3 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/pyproject.toml +1 -1
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/nettracer_gui.py +2 -2
- {nettracer3d-0.3.1 → nettracer3d-0.3.2/src/nettracer3d.egg-info}/PKG-INFO +4 -1
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/LICENSE +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/setup.cfg +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/__init__.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/community_extractor.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/hub_getter.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/modularity.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/morphology.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/nettracer.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/network_analysis.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/network_draw.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/node_draw.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/proximity.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/simple_network.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d/smart_dilate.py +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/src/nettracer3d.egg-info/requires.txt +0 -0
- {nettracer3d-0.3.1 → nettracer3d-0.3.2}/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
|
+
Version: 0.3.2
|
|
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
|
|
@@ -34,8 +34,11 @@ Requires-Dist: cupy; extra == "cupy"
|
|
|
34
34
|
NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity or volumetric thresholding. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, run a python script in your env with the following commands:
|
|
35
35
|
|
|
36
36
|
#Start
|
|
37
|
+
|
|
37
38
|
from nettracer3d import nettracer_gui
|
|
39
|
+
|
|
38
40
|
nettracer_gui.run_gui()
|
|
41
|
+
|
|
39
42
|
#End
|
|
40
43
|
|
|
41
44
|
This gui is built from the PyQt6 package and therefore may not function on dockers or virtual envs that are unable to support PyQt6 displays. More advanced documentation (especially for the GUI) is coming down the line, but for now please see: https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity or volumetric thresholding. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, run a python script in your env with the following commands:
|
|
2
2
|
|
|
3
3
|
#Start
|
|
4
|
+
|
|
4
5
|
from nettracer3d import nettracer_gui
|
|
6
|
+
|
|
5
7
|
nettracer_gui.run_gui()
|
|
8
|
+
|
|
6
9
|
#End
|
|
7
10
|
|
|
8
11
|
This gui is built from the PyQt6 package and therefore may not function on dockers or virtual envs that are unable to support PyQt6 displays. More advanced documentation (especially for the GUI) is coming down the line, but for now please see: https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
|
|
@@ -4949,7 +4949,7 @@ class ResizeDialog(QDialog):
|
|
|
4949
4949
|
if self.parent().highlight_overlay is not None:
|
|
4950
4950
|
self.parent().highlight_overlay = n3d.resize(self.parent().highlight_overlay, resize, order)
|
|
4951
4951
|
if my_network.search_region is not None:
|
|
4952
|
-
my_network.search_region = n3d.resize(search_region, resize, order)
|
|
4952
|
+
my_network.search_region = n3d.resize(my_network.search_region, resize, order)
|
|
4953
4953
|
|
|
4954
4954
|
|
|
4955
4955
|
else:
|
|
@@ -4966,7 +4966,7 @@ class ResizeDialog(QDialog):
|
|
|
4966
4966
|
if self.parent().highlight_overlay is not None:
|
|
4967
4967
|
self.parent().highlight_overlay = n3d.upsample_with_padding(self.parent().highlight_overlay, original_shape = self.parent().original_shape)
|
|
4968
4968
|
|
|
4969
|
-
my_network.search_region = n3d.upsample_with_padding(search_region, original_shape = self.parent().original_shape)
|
|
4969
|
+
my_network.search_region = n3d.upsample_with_padding(my_network.search_region, original_shape = self.parent().original_shape)
|
|
4970
4970
|
|
|
4971
4971
|
|
|
4972
4972
|
# Update slider range based on new z-dimension
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
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
|
|
@@ -34,8 +34,11 @@ Requires-Dist: cupy; extra == "cupy"
|
|
|
34
34
|
NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity or volumetric thresholding. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, run a python script in your env with the following commands:
|
|
35
35
|
|
|
36
36
|
#Start
|
|
37
|
+
|
|
37
38
|
from nettracer3d import nettracer_gui
|
|
39
|
+
|
|
38
40
|
nettracer_gui.run_gui()
|
|
41
|
+
|
|
39
42
|
#End
|
|
40
43
|
|
|
41
44
|
This gui is built from the PyQt6 package and therefore may not function on dockers or virtual envs that are unable to support PyQt6 displays. More advanced documentation (especially for the GUI) is coming down the line, but for now please see: https://drive.google.com/drive/folders/1fTkz3n4LN9_VxKRKC8lVQSlrz_wq0bVn?usp=drive_link
|
|
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
|