sgtlib 3.3.9__cp313-cp313-win_amd64.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/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/c_lang/sgt_base.c +61 -0
- StructuralGT/compute/c_lang/sgt_c_module.cp313-win_amd64.pyd +0 -0
- StructuralGT/compute/c_lang/sgtmodule.c +183 -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 +790 -0
- sgtlib-3.3.9.dist-info/RECORD +75 -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/licenses/license.txt +658 -0
- sgtlib-3.3.9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
StructuralGT/__init__.py,sha256=k2AYnKqzzo2WW6GdGdsUBcziR_UHUF71GkkTAyFWndU,1285
|
2
|
+
StructuralGT/entrypoints.py,sha256=eLY8nfsVbsDh4tB1jCZaLf9oUXnjNGH_lm4Grw9vmHI,1461
|
3
|
+
StructuralGT/modules.py,sha256=lUacF3tI8pmO-Xo6ykNVBWSXWxVQQ4Gbf5CqQAQGKW4,772
|
4
|
+
StructuralGT/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
StructuralGT/apps/cli_main.py,sha256=3udx96KUtb2DeSC__S86kg_dIRdoKtbLmjsBNpNvJ3c,11155
|
6
|
+
StructuralGT/apps/gui_main.py,sha256=GpPukbUWdZKZdMZ-6Z49Krd6Th1mskCLEAMPfycJSjg,3184
|
7
|
+
StructuralGT/apps/gui_mcw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
StructuralGT/apps/gui_mcw/checkbox_model.py,sha256=xfSddAHbUQbl4-BiIA-hCMyfegrcNDjpFbims9GaVJc,3454
|
9
|
+
StructuralGT/apps/gui_mcw/controller.py,sha256=5KqRDBV7ccH_KOQ3VdUlga-tYFUBkJLadaAmLjqTXG8,46615
|
10
|
+
StructuralGT/apps/gui_mcw/image_provider.py,sha256=j54V8t5KfXf5RwGCn-nmVs7CdXHALjloD6EDGdbrSQU,3451
|
11
|
+
StructuralGT/apps/gui_mcw/imagegrid_model.py,sha256=-BeGCzO1LC2AVDLXN7PtRXTbeFr3rfatCbmBNJaV6Rs,2663
|
12
|
+
StructuralGT/apps/gui_mcw/qthread_worker.py,sha256=p_aS7xyKd9nyDL5ja3x0ZsftQfPpb_vODviHNhwCzoI,5139
|
13
|
+
StructuralGT/apps/gui_mcw/table_model.py,sha256=FacY21AB4H6IB1Gb6fQ2ObQdcKjm5-MmZDZxI7qFtpU,3219
|
14
|
+
StructuralGT/apps/gui_mcw/tree_model.py,sha256=uGKHs4B0qRd5voo6j0B14aDfXt8MdrIq2a5DzERunvw,5395
|
15
|
+
StructuralGT/apps/sgt_qml/CenterMainContent.qml,sha256=_rQTo3VGbfyIi3B8FVJoCnLDUci1MpEqYnP_OnYDgok,285
|
16
|
+
StructuralGT/apps/sgt_qml/LeftContent.qml,sha256=KQh8uDxSW53wFZpyvQxqDNjq2XwD1OIeiTCZjHiE1uk,948
|
17
|
+
StructuralGT/apps/sgt_qml/MainWindow.qml,sha256=yJzcyS7xF8Pf0ffRkYKYT_Ee1YAaQEXMBDIT0Zj2SHk,23081
|
18
|
+
StructuralGT/apps/sgt_qml/RightLoggingPanel.qml,sha256=BANp9TqT0vcGTY3071CvP5319U5XIBekPL-3YqwZ_r0,3725
|
19
|
+
StructuralGT/apps/sgt_qml/assets/icons/back_icon.png,sha256=3fDW0jSj2xYDXVItIrOXsV2UERghJDmFmPLWrCig7oQ,8983
|
20
|
+
StructuralGT/apps/sgt_qml/assets/icons/brightness_icon.png,sha256=L8u6Vi7KCy4oM38I_5_v50HhBAmiX5l1ufsvJ9qo8yg,10828
|
21
|
+
StructuralGT/apps/sgt_qml/assets/icons/cancel_icon.png,sha256=lziiQwurt6zTJd1A0LkyfAhs8S2HRsgPGhQf__8Rbj0,17906
|
22
|
+
StructuralGT/apps/sgt_qml/assets/icons/crop_icon.png,sha256=PtkriJ6zLBtTXm67ekOOKCsjDTZpzNXznq0Ua1OoTLc,7673
|
23
|
+
StructuralGT/apps/sgt_qml/assets/icons/edit_icon.png,sha256=CdP7t4ROmZWzMTQkCwoOfiHJySnGQe0P6NA-yEO66zc,5156
|
24
|
+
StructuralGT/apps/sgt_qml/assets/icons/graph_icon.png,sha256=PE06PSCUrNpaw9SCVaivtGaH1KXKgetAginIU6-Tx0I,12579
|
25
|
+
StructuralGT/apps/sgt_qml/assets/icons/hide_panel.png,sha256=_3izElYcCqP44sAUvplZ-JFwd23WWfLrOaQCFgipNeE,5810
|
26
|
+
StructuralGT/apps/sgt_qml/assets/icons/next_icon.png,sha256=IEovuciS5XJXTnfsT3TlhSRnrO4Gi6WUioZOEgrEIHw,5863
|
27
|
+
StructuralGT/apps/sgt_qml/assets/icons/notify_icon.png,sha256=3ojbjWyL6mjG3-gjNnxkmSo8g-3Yinc74n9qGJVmcQw,10130
|
28
|
+
StructuralGT/apps/sgt_qml/assets/icons/rescale_icon.png,sha256=c42mql2KaIhWEgPXC4g0-OYGDgMddxKdjxS9LdJ_6eI,3919
|
29
|
+
StructuralGT/apps/sgt_qml/assets/icons/show_panel.png,sha256=eQ8LHG2zB87IJ-QHF9tv8o9W1owF0IFpDdxa9IB7ems,6587
|
30
|
+
StructuralGT/apps/sgt_qml/assets/icons/square_icon.png,sha256=TTJHLtxk93d6UiwA9X64wlPk5zM9Eb3Mt6m4MbPlxno,3433
|
31
|
+
StructuralGT/apps/sgt_qml/assets/icons/undo_icon.png,sha256=PL8WJqVuoryfbkiQtc1mQX1jDWQViBN5xlFMB0vBf3A,3702
|
32
|
+
StructuralGT/apps/sgt_qml/components/ImageFilters.qml,sha256=0Cu6xyKV48q5f2OX6xV_HfTnzG7DsXPhQTOB-wkWmYs,2343
|
33
|
+
StructuralGT/apps/sgt_qml/components/ImageProperties.qml,sha256=p0DGo2yjxanJuum5CgaDdub1oyqpoIIgBTAnDx-pVzs,3615
|
34
|
+
StructuralGT/apps/sgt_qml/components/ProjectNav.qml,sha256=kOF2_EnPGO_v9gJttisf_bBjs1pFUOShSMDX9RxZiZk,4023
|
35
|
+
StructuralGT/apps/sgt_qml/widgets/BinaryFilterWidget.qml,sha256=gV1z0X2GyGy0s8iKMs35oDu80qah5wlX6jPxJ3JK5sE,4869
|
36
|
+
StructuralGT/apps/sgt_qml/widgets/BrightnessControlWidget.qml,sha256=SVTzbiYe0837SV3TgT0SvPVuPCBxxboaq7EHRG_MIbU,3380
|
37
|
+
StructuralGT/apps/sgt_qml/widgets/CreateProjectWidget.qml,sha256=YqDm09aD81oyTAAqg1IAeMnUr9pFg4CBTGiNy8wDcok,3116
|
38
|
+
StructuralGT/apps/sgt_qml/widgets/GTWidget.qml,sha256=eV4lUlEj6Hz_erCus-fCjTXITkGNZaoV5onK4jvYsWI,3073
|
39
|
+
StructuralGT/apps/sgt_qml/widgets/GraphComputeWidget.qml,sha256=1QoMOBNlS2I1-WM5dRQbarOFcZhQubQ0LqE4T7MnEfQ,2046
|
40
|
+
StructuralGT/apps/sgt_qml/widgets/GraphExtractWidget.qml,sha256=sNCsa83U_EwwRzJOKdyZaK-jJSv3rc6PVjQtQPq8U3g,6769
|
41
|
+
StructuralGT/apps/sgt_qml/widgets/GraphPropertyWidget.qml,sha256=DWYyX3zM7ZXv5IEZHsZrC0VoTVSNqp2undg9OTeXIHQ,2035
|
42
|
+
StructuralGT/apps/sgt_qml/widgets/ImageFilterWidget.qml,sha256=09n2RS1nkEwyN6LPnCGzEaZKK_jYgJnDoqtBvC1OwkQ,4917
|
43
|
+
StructuralGT/apps/sgt_qml/widgets/ImagePropertyWidget.qml,sha256=g9te-CB1zDAJIOst8APALw55UyjLicXhORPSCOlZfhE,2106
|
44
|
+
StructuralGT/apps/sgt_qml/widgets/ImageViewWidget.qml,sha256=0hBJnR5W_XcHrkuLLtLf4PG2f3eBhrBdp-Q0PvkvsUs,20939
|
45
|
+
StructuralGT/apps/sgt_qml/widgets/MenuBarWidget.qml,sha256=XeUdQYocTFmdJuHEAaKWy3NgAkwtuw8MfvnskEpG6uo,5450
|
46
|
+
StructuralGT/apps/sgt_qml/widgets/MicroscopyPropertyWidget.qml,sha256=UNRjo0-QyXGq5jp_sJokUC_SZR8ZhZQ_xb1A03l7TdQ,2565
|
47
|
+
StructuralGT/apps/sgt_qml/widgets/ProjectWidget.qml,sha256=48nTpogSndXYtC-uuQ6-wKhWf65_Huhm8aXUwkqQkII,4607
|
48
|
+
StructuralGT/apps/sgt_qml/widgets/RescaleControlWidget.qml,sha256=xebHHhUiRpwYwgpGlKtreZAOJKnSDzPfc7yzRNEBeSg,2346
|
49
|
+
StructuralGT/apps/sgt_qml/widgets/RibbonWidget.qml,sha256=S-Xt54h6xuAxGKXM9b5-RiG8TgXtdFjwOVj_WtFJmpM,14396
|
50
|
+
StructuralGT/apps/sgt_qml/widgets/StatusBarWidget.qml,sha256=UpkXpn8Z2rswjNyUq7CjlMbG70sh7SZV8jVRbe4orwQ,6142
|
51
|
+
StructuralGT/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
+
StructuralGT/compute/graph_analyzer.py,sha256=xs_HHyJwnGPrXI8AtrU0oIlhiFx_5sShtuialRr0wLQ,71350
|
53
|
+
StructuralGT/compute/c_lang/sgt_base.c,sha256=2cLX3Z0INTBcNMhOd8aNfnIkxzn85cq8WoGhq1X0b_4,2014
|
54
|
+
StructuralGT/compute/c_lang/sgt_c_module.cp313-win_amd64.pyd,sha256=zYt5vQ3lI01ZdMxtCPAt9drTH4aHbN_v6579a8L9qs4,101376
|
55
|
+
StructuralGT/compute/c_lang/sgtmodule.c,sha256=vCZHdUFpKY-V8d4XDEwzhm2RhoeS_GZttLmn7HxOofY,5675
|
56
|
+
StructuralGT/compute/c_lang/include/sgt_base.h,sha256=3qxYEphomvog4rkhMFb5f1WrMy_g0UY-W4ZRj4TEac8,551
|
57
|
+
StructuralGT/imaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
+
StructuralGT/imaging/base_image.py,sha256=fc1OzifJ_HBkZ-IZIQwcdlpS2RG3_1eSRlPY9ZtdvPA,16958
|
59
|
+
StructuralGT/imaging/image_processor.py,sha256=TkDwTDWyQyZ0Q7vSoS0WYx3i6BcJOxoOS9nNKgrlsT0,33657
|
60
|
+
StructuralGT/networks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
61
|
+
StructuralGT/networks/fiber_network.py,sha256=KegpXarlbxp52m6HTuSn6NN8I0zLMkFcQfglLdo4Vos,20550
|
62
|
+
StructuralGT/networks/graph_skeleton.py,sha256=pos4gx66JK2oBsO5-6iG96JBYKWqefgoFK-Rb7ndfJ8,19671
|
63
|
+
StructuralGT/networks/sknw_mod.py,sha256=bOdmRSpVIb02QDA_3z0wIl919R5WuJoGEjcSSRkuXbI,5741
|
64
|
+
StructuralGT/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
+
StructuralGT/utils/config_loader.py,sha256=ACnv9tIo_1x0irGEsEt9ORHyYBffVd8aWYXfFaa0__8,16843
|
66
|
+
StructuralGT/utils/configs.ini,sha256=HurTZSxRZBorgIqJnSpTK21_r_E_84O7NxxZVXBmSjw,2423
|
67
|
+
StructuralGT/utils/progress_update.py,sha256=rRFRruDLggW1hvV_gIEVatflOYR17UPyADoREq1oQjk,1688
|
68
|
+
StructuralGT/utils/sgt_utils.py,sha256=J3hppRIrvhPRtm0HKohOPCQHzndsF9cj3JHyjXmI5PI,9399
|
69
|
+
sgtlib-3.3.9.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
70
|
+
sgtlib-3.3.9.dist-info/licenses/license.txt,sha256=tIAxaohcJWNQMAHfsOfBXN1D3vshmLrNqfkllxRjFg4,34663
|
71
|
+
sgtlib-3.3.9.dist-info/METADATA,sha256=yUDlG8vt5r0z_sr_WGDnGUfJjWzQa33wTaH_1QfKjSA,46094
|
72
|
+
sgtlib-3.3.9.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
|
73
|
+
sgtlib-3.3.9.dist-info/entry_points.txt,sha256=zY3v_U9Qi4L965BPrURXn84yF_TxdKDZI3VcTUbTh0M,120
|
74
|
+
sgtlib-3.3.9.dist-info/top_level.txt,sha256=daVVcqfvgGeWXFnHArFOFbRmtWxL93fxmZjF19Sg69I,13
|
75
|
+
sgtlib-3.3.9.dist-info/RECORD,,
|