nettracer3d 1.1.3__tar.gz → 1.1.9__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.
Potentially problematic release.
This version of nettracer3d might be problematic. Click here for more details.
- {nettracer3d-1.1.3/src/nettracer3d.egg-info → nettracer3d-1.1.9}/PKG-INFO +9 -3
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/README.md +9 -3
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/pyproject.toml +1 -1
- nettracer3d-1.1.9/src/nettracer3d/filaments.py +1074 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/neighborhoods.py +102 -70
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/nettracer.py +200 -33
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/nettracer_gui.py +1452 -433
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/network_draw.py +9 -3
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/node_draw.py +5 -1
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/proximity.py +123 -2
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/smart_dilate.py +36 -0
- nettracer3d-1.1.9/src/nettracer3d/tutorial.py +2853 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9/src/nettracer3d.egg-info}/PKG-INFO +9 -3
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/SOURCES.txt +2 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/LICENSE +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/setup.cfg +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/__init__.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/cellpose_manager.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/community_extractor.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/excelotron.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/modularity.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/morphology.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/network_analysis.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/painting.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/run.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/segmenter.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/segmenter_GPU.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/simple_network.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d/stats.py +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/entry_points.txt +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/requires.txt +0 -0
- {nettracer3d-1.1.3 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.9
|
|
4
4
|
Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
|
|
5
5
|
Author-email: Liam McLaughlin <liamm@wustl.edu>
|
|
6
6
|
Project-URL: Documentation, https://nettracer3d.readthedocs.io/en/latest/
|
|
@@ -110,6 +110,12 @@ McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neuro
|
|
|
110
110
|
|
|
111
111
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
112
112
|
|
|
113
|
-
-- Version 1.1.
|
|
113
|
+
-- Version 1.1.9 Updates --
|
|
114
114
|
|
|
115
|
-
*
|
|
115
|
+
* Fixed saving of Boolean True/False arrays.
|
|
116
|
+
* Fixed branch functions not working correctly when a temporary downsample was being applied
|
|
117
|
+
* Added the 'filaments tracer' which can be used to improve vessel based segmentations
|
|
118
|
+
* Removed options for 'cubic' downsampling during processing as this option actually made outputs worse.
|
|
119
|
+
* Rearranged the 'Analyze -> Stats' menu
|
|
120
|
+
|
|
121
|
+
|
|
@@ -65,6 +65,12 @@ McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neuro
|
|
|
65
65
|
|
|
66
66
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
67
67
|
|
|
68
|
-
-- Version 1.1.
|
|
69
|
-
|
|
70
|
-
*
|
|
68
|
+
-- Version 1.1.9 Updates --
|
|
69
|
+
|
|
70
|
+
* Fixed saving of Boolean True/False arrays.
|
|
71
|
+
* Fixed branch functions not working correctly when a temporary downsample was being applied
|
|
72
|
+
* Added the 'filaments tracer' which can be used to improve vessel based segmentations
|
|
73
|
+
* Removed options for 'cubic' downsampling during processing as this option actually made outputs worse.
|
|
74
|
+
* Rearranged the 'Analyze -> Stats' menu
|
|
75
|
+
|
|
76
|
+
|