dirigo-gui 0.1.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.
- dirigo_gui-0.1.4/LICENSE +21 -0
- dirigo_gui-0.1.4/PKG-INFO +49 -0
- dirigo_gui-0.1.4/README.md +27 -0
- dirigo_gui-0.1.4/dirigo_gui/__init__.py +4 -0
- dirigo_gui-0.1.4/dirigo_gui/components/__init__.py +0 -0
- dirigo_gui-0.1.4/dirigo_gui/components/acquisition_control.py +631 -0
- dirigo_gui-0.1.4/dirigo_gui/components/common.py +64 -0
- dirigo_gui-0.1.4/dirigo_gui/components/detector_control.py +128 -0
- dirigo_gui-0.1.4/dirigo_gui/components/display_control.py +360 -0
- dirigo_gui-0.1.4/dirigo_gui/components/stage_control.py +408 -0
- dirigo_gui-0.1.4/dirigo_gui/components/writer_control.py +85 -0
- dirigo_gui-0.1.4/dirigo_gui/reference_gui.py +319 -0
- dirigo_gui-0.1.4/dirigo_gui/widgets/image_display.py +245 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/PKG-INFO +49 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/SOURCES.txt +19 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/dependency_links.txt +1 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/entry_points.txt +2 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/requires.txt +3 -0
- dirigo_gui-0.1.4/dirigo_gui.egg-info/top_level.txt +1 -0
- dirigo_gui-0.1.4/pyproject.toml +32 -0
- dirigo_gui-0.1.4/setup.cfg +4 -0
dirigo_gui-0.1.4/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-2026 Massachusetts Institute of Technology
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dirigo-gui
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: Dirigo reference GUI implementation
|
|
5
|
+
Author-email: "T. D. Weber" <tweber@mit.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/dirigo-developers/dirigo-gui
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Topic :: System :: Hardware
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: dirigo
|
|
19
|
+
Requires-Dist: customtkinter
|
|
20
|
+
Requires-Dist: pillow
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# dirigo-gui
|
|
24
|
+
Reference GUI for Dirigo image acquisition software. Provides a basic frame scanning, display, and writing.
|
|
25
|
+
|
|
26
|
+
[](https://pypi.org/project/dirigo-gui/)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
First install required hardware plugins. A list can be found here: (https://github.com/orgs/dirigo-developers/repositories?type=all)
|
|
31
|
+
|
|
32
|
+
Then run:
|
|
33
|
+
```bash
|
|
34
|
+
pip install dirigo-gui
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## Legal Disclaimer
|
|
39
|
+
This library is provided "as is" without any warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The authors are not responsible for any damage to hardware, data loss, or other issues arising from the use or misuse of this library. Users are advised to thoroughly test this library with their specific hardware and configurations before deployment.
|
|
40
|
+
|
|
41
|
+
Use this library at your own risk. Proper operation of hardware and compliance with applicable laws and regulations is the sole responsibility of the user.
|
|
42
|
+
|
|
43
|
+
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Funding
|
|
47
|
+
Development has been supported in part by the National Cancer Institute of the National Institutes of Health under award number R01CA249151.
|
|
48
|
+
|
|
49
|
+
The content of this repository is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# dirigo-gui
|
|
2
|
+
Reference GUI for Dirigo image acquisition software. Provides a basic frame scanning, display, and writing.
|
|
3
|
+
|
|
4
|
+
[](https://pypi.org/project/dirigo-gui/)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
First install required hardware plugins. A list can be found here: (https://github.com/orgs/dirigo-developers/repositories?type=all)
|
|
9
|
+
|
|
10
|
+
Then run:
|
|
11
|
+
```bash
|
|
12
|
+
pip install dirigo-gui
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Legal Disclaimer
|
|
17
|
+
This library is provided "as is" without any warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The authors are not responsible for any damage to hardware, data loss, or other issues arising from the use or misuse of this library. Users are advised to thoroughly test this library with their specific hardware and configurations before deployment.
|
|
18
|
+
|
|
19
|
+
Use this library at your own risk. Proper operation of hardware and compliance with applicable laws and regulations is the sole responsibility of the user.
|
|
20
|
+
|
|
21
|
+
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Funding
|
|
25
|
+
Development has been supported in part by the National Cancer Institute of the National Institutes of Health under award number R01CA249151.
|
|
26
|
+
|
|
27
|
+
The content of this repository is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health.
|
|
File without changes
|