sgtlib 3.3.9__py3-none-any.whl
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.
- StructuralGT/__init__.py +31 -0
- StructuralGT/apps/__init__.py +0 -0
- StructuralGT/apps/cli_main.py +258 -0
- StructuralGT/apps/gui_main.py +69 -0
- StructuralGT/apps/gui_mcw/__init__.py +0 -0
- StructuralGT/apps/gui_mcw/checkbox_model.py +91 -0
- StructuralGT/apps/gui_mcw/controller.py +1073 -0
- StructuralGT/apps/gui_mcw/image_provider.py +74 -0
- StructuralGT/apps/gui_mcw/imagegrid_model.py +75 -0
- StructuralGT/apps/gui_mcw/qthread_worker.py +102 -0
- StructuralGT/apps/gui_mcw/table_model.py +79 -0
- StructuralGT/apps/gui_mcw/tree_model.py +154 -0
- StructuralGT/apps/sgt_qml/CenterMainContent.qml +19 -0
- StructuralGT/apps/sgt_qml/LeftContent.qml +48 -0
- StructuralGT/apps/sgt_qml/MainWindow.qml +762 -0
- StructuralGT/apps/sgt_qml/RightLoggingPanel.qml +125 -0
- StructuralGT/apps/sgt_qml/assets/icons/.DS_Store +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/back_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/brightness_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/cancel_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/crop_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/edit_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/graph_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/hide_panel.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/next_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/notify_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/rescale_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/show_panel.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/square_icon.png +0 -0
- StructuralGT/apps/sgt_qml/assets/icons/undo_icon.png +0 -0
- StructuralGT/apps/sgt_qml/components/ImageFilters.qml +82 -0
- StructuralGT/apps/sgt_qml/components/ImageProperties.qml +112 -0
- StructuralGT/apps/sgt_qml/components/ProjectNav.qml +127 -0
- StructuralGT/apps/sgt_qml/widgets/BinaryFilterWidget.qml +151 -0
- StructuralGT/apps/sgt_qml/widgets/BrightnessControlWidget.qml +103 -0
- StructuralGT/apps/sgt_qml/widgets/CreateProjectWidget.qml +112 -0
- StructuralGT/apps/sgt_qml/widgets/GTWidget.qml +94 -0
- StructuralGT/apps/sgt_qml/widgets/GraphComputeWidget.qml +77 -0
- StructuralGT/apps/sgt_qml/widgets/GraphExtractWidget.qml +175 -0
- StructuralGT/apps/sgt_qml/widgets/GraphPropertyWidget.qml +77 -0
- StructuralGT/apps/sgt_qml/widgets/ImageFilterWidget.qml +137 -0
- StructuralGT/apps/sgt_qml/widgets/ImagePropertyWidget.qml +78 -0
- StructuralGT/apps/sgt_qml/widgets/ImageViewWidget.qml +585 -0
- StructuralGT/apps/sgt_qml/widgets/MenuBarWidget.qml +137 -0
- StructuralGT/apps/sgt_qml/widgets/MicroscopyPropertyWidget.qml +80 -0
- StructuralGT/apps/sgt_qml/widgets/ProjectWidget.qml +141 -0
- StructuralGT/apps/sgt_qml/widgets/RescaleControlWidget.qml +83 -0
- StructuralGT/apps/sgt_qml/widgets/RibbonWidget.qml +406 -0
- StructuralGT/apps/sgt_qml/widgets/StatusBarWidget.qml +173 -0
- StructuralGT/compute/__init__.py +0 -0
- StructuralGT/compute/c_lang/include/sgt_base.h +21 -0
- StructuralGT/compute/graph_analyzer.py +1499 -0
- StructuralGT/entrypoints.py +49 -0
- StructuralGT/imaging/__init__.py +0 -0
- StructuralGT/imaging/base_image.py +403 -0
- StructuralGT/imaging/image_processor.py +780 -0
- StructuralGT/modules.py +29 -0
- StructuralGT/networks/__init__.py +0 -0
- StructuralGT/networks/fiber_network.py +490 -0
- StructuralGT/networks/graph_skeleton.py +425 -0
- StructuralGT/networks/sknw_mod.py +199 -0
- StructuralGT/utils/__init__.py +0 -0
- StructuralGT/utils/config_loader.py +244 -0
- StructuralGT/utils/configs.ini +97 -0
- StructuralGT/utils/progress_update.py +67 -0
- StructuralGT/utils/sgt_utils.py +291 -0
- sgtlib-3.3.9.dist-info/METADATA +789 -0
- sgtlib-3.3.9.dist-info/RECORD +72 -0
- sgtlib-3.3.9.dist-info/WHEEL +5 -0
- sgtlib-3.3.9.dist-info/entry_points.txt +3 -0
- sgtlib-3.3.9.dist-info/licenses/LICENSE +674 -0
- sgtlib-3.3.9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
StructuralGT/__init__.py,sha256=8ZPZzGG6VkSz9C6kJXnyGIrUcM7tccD0DMMyXvB8Jmw,1254
|
2
|
+
StructuralGT/entrypoints.py,sha256=s2upsOVsy9zsoorxiZXaZKiLw7fUOQwHjwup3C089Hs,1413
|
3
|
+
StructuralGT/modules.py,sha256=CYudBMwP70cRFWj_Dppr_Kdc08V_-9wWKVd48bEHkS0,743
|
4
|
+
StructuralGT/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
StructuralGT/apps/cli_main.py,sha256=yp4rSz-TCCctOdP-Lczu5G3ZeITA_sFxfOnFjXaPJW0,10897
|
6
|
+
StructuralGT/apps/gui_main.py,sha256=uffgrdxiWCHulFjWvC6KYix93OElWFj8EuWjd7WoQAk,3115
|
7
|
+
StructuralGT/apps/gui_mcw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
StructuralGT/apps/gui_mcw/checkbox_model.py,sha256=3IPrn0NloxKaLM5sIyM0f4iP8DPJ9jbYAhVEI800x-I,3364
|
9
|
+
StructuralGT/apps/gui_mcw/controller.py,sha256=2Z6yYK6lVwy5ckfRSPFANUuPXpDqTgfFxjzqZ7YdKH4,45542
|
10
|
+
StructuralGT/apps/gui_mcw/image_provider.py,sha256=keVrmlb1gn6z309bfit0GVLUlDM1R9dq1wpWz3eSiTM,3377
|
11
|
+
StructuralGT/apps/gui_mcw/imagegrid_model.py,sha256=zjZg6djvcYC6liS5t_mWeXvCxomuyWIV1-NwyxzUz2A,2588
|
12
|
+
StructuralGT/apps/gui_mcw/qthread_worker.py,sha256=UvMroRT2houHl_Dm60aq5Piq-UWhx53nKowzsawRbOU,5037
|
13
|
+
StructuralGT/apps/gui_mcw/table_model.py,sha256=cehewlzdh51AI1aZqeO_CDV_PBSkMO31oB-z7Am1sKU,3141
|
14
|
+
StructuralGT/apps/gui_mcw/tree_model.py,sha256=DILZu97L8uQQu0hqqlIe-l-w-ZBn6b1B-N8pqZ_EDck,5241
|
15
|
+
StructuralGT/apps/sgt_qml/CenterMainContent.qml,sha256=2ootfj4KX-GDh8QeeSUv8XhbeN337HgGBjf64BvTSdE,266
|
16
|
+
StructuralGT/apps/sgt_qml/LeftContent.qml,sha256=J4_b0x5D5HDrA9ghCBzH3pusGfQyjz8cWdx98X8-ezw,900
|
17
|
+
StructuralGT/apps/sgt_qml/MainWindow.qml,sha256=RcDlHDG_f2iyg98bM7zWxuv9HyKqI6D5XH6GLVLm23s,22319
|
18
|
+
StructuralGT/apps/sgt_qml/RightLoggingPanel.qml,sha256=w2ktA2zfdZHOMWeyBaAy85_-7MTgbLRuEq92h4UF9u0,3601
|
19
|
+
StructuralGT/apps/sgt_qml/assets/icons/.DS_Store,sha256=SQSw7szW7SxfMjl6ebm_gylaSv39_Xxzo5abejHNfRw,6148
|
20
|
+
StructuralGT/apps/sgt_qml/assets/icons/back_icon.png,sha256=3fDW0jSj2xYDXVItIrOXsV2UERghJDmFmPLWrCig7oQ,8983
|
21
|
+
StructuralGT/apps/sgt_qml/assets/icons/brightness_icon.png,sha256=L8u6Vi7KCy4oM38I_5_v50HhBAmiX5l1ufsvJ9qo8yg,10828
|
22
|
+
StructuralGT/apps/sgt_qml/assets/icons/cancel_icon.png,sha256=lziiQwurt6zTJd1A0LkyfAhs8S2HRsgPGhQf__8Rbj0,17906
|
23
|
+
StructuralGT/apps/sgt_qml/assets/icons/crop_icon.png,sha256=PtkriJ6zLBtTXm67ekOOKCsjDTZpzNXznq0Ua1OoTLc,7673
|
24
|
+
StructuralGT/apps/sgt_qml/assets/icons/edit_icon.png,sha256=CdP7t4ROmZWzMTQkCwoOfiHJySnGQe0P6NA-yEO66zc,5156
|
25
|
+
StructuralGT/apps/sgt_qml/assets/icons/graph_icon.png,sha256=PE06PSCUrNpaw9SCVaivtGaH1KXKgetAginIU6-Tx0I,12579
|
26
|
+
StructuralGT/apps/sgt_qml/assets/icons/hide_panel.png,sha256=_3izElYcCqP44sAUvplZ-JFwd23WWfLrOaQCFgipNeE,5810
|
27
|
+
StructuralGT/apps/sgt_qml/assets/icons/next_icon.png,sha256=IEovuciS5XJXTnfsT3TlhSRnrO4Gi6WUioZOEgrEIHw,5863
|
28
|
+
StructuralGT/apps/sgt_qml/assets/icons/notify_icon.png,sha256=3ojbjWyL6mjG3-gjNnxkmSo8g-3Yinc74n9qGJVmcQw,10130
|
29
|
+
StructuralGT/apps/sgt_qml/assets/icons/rescale_icon.png,sha256=c42mql2KaIhWEgPXC4g0-OYGDgMddxKdjxS9LdJ_6eI,3919
|
30
|
+
StructuralGT/apps/sgt_qml/assets/icons/show_panel.png,sha256=eQ8LHG2zB87IJ-QHF9tv8o9W1owF0IFpDdxa9IB7ems,6587
|
31
|
+
StructuralGT/apps/sgt_qml/assets/icons/square_icon.png,sha256=TTJHLtxk93d6UiwA9X64wlPk5zM9Eb3Mt6m4MbPlxno,3433
|
32
|
+
StructuralGT/apps/sgt_qml/assets/icons/undo_icon.png,sha256=PL8WJqVuoryfbkiQtc1mQX1jDWQViBN5xlFMB0vBf3A,3702
|
33
|
+
StructuralGT/apps/sgt_qml/components/ImageFilters.qml,sha256=DLPXhs4y9GHpKvBBUAUu1JIvIFC1sEM018X58UAjqIY,2261
|
34
|
+
StructuralGT/apps/sgt_qml/components/ImageProperties.qml,sha256=acr4md5adEk5MV4I-StifpwQOpeHasKa9DFUvvlnz6A,3503
|
35
|
+
StructuralGT/apps/sgt_qml/components/ProjectNav.qml,sha256=FmVCJQf1IFJvajhHYoOIYeWZlNqxsnNE_EaBUmaY7tU,3896
|
36
|
+
StructuralGT/apps/sgt_qml/widgets/BinaryFilterWidget.qml,sha256=K0AICJptQYpMWyKhbmk1Ixy6nWXNiE-7aXvor4oQJfk,4718
|
37
|
+
StructuralGT/apps/sgt_qml/widgets/BrightnessControlWidget.qml,sha256=bUJUthLhnLTGE_27xz9_XmBHHNqKG1c_odK8j7RU1dM,3277
|
38
|
+
StructuralGT/apps/sgt_qml/widgets/CreateProjectWidget.qml,sha256=MhVK2DX4S2pJDe__SqXagptBldsFaEbor4AXIiMm8FI,3004
|
39
|
+
StructuralGT/apps/sgt_qml/widgets/GTWidget.qml,sha256=DSJoPwo6TVYidX60yA3MmAHi7cCf9KA4niIJjpStrLk,2980
|
40
|
+
StructuralGT/apps/sgt_qml/widgets/GraphComputeWidget.qml,sha256=Q5Z3r9ROUUhUqltQd1sZOzyYMqtQYl1VtcX0Ixngua0,1970
|
41
|
+
StructuralGT/apps/sgt_qml/widgets/GraphExtractWidget.qml,sha256=yLZVr2x9wzcwmoj1uSav5whfl8dqQWOGJk-MjRJwdug,6594
|
42
|
+
StructuralGT/apps/sgt_qml/widgets/GraphPropertyWidget.qml,sha256=NBztDsA8az-QvuK33-zCjCwgiPNwy41kR9uWFJTmp9s,1958
|
43
|
+
StructuralGT/apps/sgt_qml/widgets/ImageFilterWidget.qml,sha256=eG4jRVRAZHgt2Z5AvpvLXKl4z_dhBxEn9RMuqkb6RYg,4780
|
44
|
+
StructuralGT/apps/sgt_qml/widgets/ImagePropertyWidget.qml,sha256=P_ijkdQEVsuJI30SyL9NOC2VTU_8lunCn95nj_fopI0,2028
|
45
|
+
StructuralGT/apps/sgt_qml/widgets/ImageViewWidget.qml,sha256=hyYAn_DnQkidKvRWGHXIyGscWoe0_0EUtcEte2GCc30,20354
|
46
|
+
StructuralGT/apps/sgt_qml/widgets/MenuBarWidget.qml,sha256=RQ4bwXXRGkMRbIW1uBJiHq7HympnM62Bx8vAJDpP1MI,5313
|
47
|
+
StructuralGT/apps/sgt_qml/widgets/MicroscopyPropertyWidget.qml,sha256=lGgqN-hoqKyDab9I2Tofc1xdyyDaYNjOtqS6w4Jo_wo,2485
|
48
|
+
StructuralGT/apps/sgt_qml/widgets/ProjectWidget.qml,sha256=jqeLYngkOAsCe7zOYetETgwfMauDeuLo-9_kyjA015s,4466
|
49
|
+
StructuralGT/apps/sgt_qml/widgets/RescaleControlWidget.qml,sha256=qb6fXok5C1HJjb6yq-C_W2CDtPgd64WHoC1ubEgLHdk,2263
|
50
|
+
StructuralGT/apps/sgt_qml/widgets/RibbonWidget.qml,sha256=POaPwXh7vE4UwU82x-80BuI2625FLWbmJQsZliy618w,13990
|
51
|
+
StructuralGT/apps/sgt_qml/widgets/StatusBarWidget.qml,sha256=YRTSg_4aYA3FO69wT1NnX0Ri_qRx3AHhVrS1n3pVwd4,5969
|
52
|
+
StructuralGT/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
|
+
StructuralGT/compute/graph_analyzer.py,sha256=zQ8qZSeGysU3ubIvOPKMQlSTmUxdRoENa_lV4jpDxE4,69851
|
54
|
+
StructuralGT/compute/c_lang/include/sgt_base.h,sha256=jkCpNy_01bSKk_ay6_1TilNhribMmw-p8r8FRhamstM,530
|
55
|
+
StructuralGT/imaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
+
StructuralGT/imaging/base_image.py,sha256=Cc4xeVOxpID6SukVolYtD6OiEQ4tsUGQ4mYjE3QF_2E,16555
|
57
|
+
StructuralGT/imaging/image_processor.py,sha256=dElOT51scHbEwsRpfnUUbLQ68twiGAhALgxcqTJBzzM,32878
|
58
|
+
StructuralGT/networks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
+
StructuralGT/networks/fiber_network.py,sha256=Sno9fD5JsdhB0hLsi6CM7EPRKZAuxnbWBTwkhlkc8AA,20060
|
60
|
+
StructuralGT/networks/graph_skeleton.py,sha256=_uWDvoHG4Pu-iKIRbIx0FyYqkiQZDk73md9-bOnWswQ,19246
|
61
|
+
StructuralGT/networks/sknw_mod.py,sha256=rBLdBmiawj1eURGKreuUJjKeEg5v76WNHkNxVEZhQWY,5542
|
62
|
+
StructuralGT/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
+
StructuralGT/utils/config_loader.py,sha256=8px8iGOFCGz8qIZCfyGuAFfvvaVdOjogf9PqStY1ltY,16599
|
64
|
+
StructuralGT/utils/configs.ini,sha256=sKPsAd15_YubgGhLMVuse1JRuU7S6bFYjLbzkuoD5JI,2326
|
65
|
+
StructuralGT/utils/progress_update.py,sha256=9X_9mGLgTMF5dDSTNKpELQcmFv8r1wz6YZQCqy4tCl8,1621
|
66
|
+
StructuralGT/utils/sgt_utils.py,sha256=0vg7I4P6PIao_H8-KYgkCJ6TM9eESW-RwGZB4sGgCI4,9109
|
67
|
+
sgtlib-3.3.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
68
|
+
sgtlib-3.3.9.dist-info/METADATA,sha256=C1z37wVvj79-1J31QaGa8jdLh1VmZRay7VIb-DbMxdc,45278
|
69
|
+
sgtlib-3.3.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
70
|
+
sgtlib-3.3.9.dist-info/entry_points.txt,sha256=zY3v_U9Qi4L965BPrURXn84yF_TxdKDZI3VcTUbTh0M,120
|
71
|
+
sgtlib-3.3.9.dist-info/top_level.txt,sha256=daVVcqfvgGeWXFnHArFOFbRmtWxL93fxmZjF19Sg69I,13
|
72
|
+
sgtlib-3.3.9.dist-info/RECORD,,
|