drap 0.0.2__tar.gz → 0.0.3.post0__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.
- {drap-0.0.2/src/drap.egg-info → drap-0.0.3.post0}/PKG-INFO +17 -3
- {drap-0.0.2 → drap-0.0.3.post0}/README.md +16 -2
- {drap-0.0.2 → drap-0.0.3.post0}/pyproject.toml +9 -3
- drap-0.0.3.post0/src/drap/__init__.py +3 -0
- {drap-0.0.2/src → drap-0.0.3.post0/src/drap}/automation.py +1 -2
- {drap-0.0.2/src → drap-0.0.3.post0/src/drap}/gui.py +2 -3
- {drap-0.0.2/src → drap-0.0.3.post0/src/drap}/terminal_interface.py +1 -2
- drap-0.0.3.post0/src/drap/utils.py +1622 -0
- {drap-0.0.2 → drap-0.0.3.post0/src/drap.egg-info}/PKG-INFO +17 -3
- {drap-0.0.2 → drap-0.0.3.post0}/src/drap.egg-info/SOURCES.txt +6 -5
- {drap-0.0.2 → drap-0.0.3.post0}/src/drap.egg-info/entry_points.txt +1 -1
- drap-0.0.3.post0/src/drap.egg-info/top_level.txt +1 -0
- drap-0.0.2/src/__init__.py +0 -3
- drap-0.0.2/src/drap.egg-info/top_level.txt +0 -5
- {drap-0.0.2 → drap-0.0.3.post0}/LICENSE +0 -0
- {drap-0.0.2 → drap-0.0.3.post0}/setup.cfg +0 -0
- {drap-0.0.2/src → drap-0.0.3.post0/src/drap}/main.py +0 -0
- {drap-0.0.2 → drap-0.0.3.post0}/src/drap.egg-info/dependency_links.txt +0 -0
- {drap-0.0.2 → drap-0.0.3.post0}/src/drap.egg-info/requires.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: drap
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3.post0
|
4
4
|
Summary: Tool for analyzing droplet size and concentration using video and EDF images
|
5
|
-
Author-email: "Gabriel Braga Marques Teobaldo
|
5
|
+
Author-email: "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira" <alves.casssio@gmail.com>
|
6
6
|
License: MIT
|
7
7
|
Project-URL: Homepage, https://test.pypi.org/project/DrAP/
|
8
8
|
Project-URL: Source, https://test.pypi.org/project/DrAP/
|
@@ -19,7 +19,7 @@ Requires-Dist: reportlab
|
|
19
19
|
Requires-Dist: PyQt5
|
20
20
|
Dynamic: license-file
|
21
21
|
|
22
|
-
# Droplet
|
22
|
+
# Droplet Computer program
|
23
23
|
|
24
24
|
This package allows the analysis of videos and images in EDF format to extract
|
25
25
|
physical parameters of droplets in acoustic levitation or other experimental techniques.
|
@@ -33,3 +33,17 @@ The graphical user interface provides:
|
|
33
33
|
## How to use
|
34
34
|
|
35
35
|
Install:
|
36
|
+
|
37
|
+
python -m venv venv
|
38
|
+
|
39
|
+
source venv/bin/activate
|
40
|
+
|
41
|
+
pip install drap
|
42
|
+
|
43
|
+
Use:
|
44
|
+
|
45
|
+
drap -o 1 (Gui interface)
|
46
|
+
|
47
|
+
drap -o 2 (Terminal interface)
|
48
|
+
|
49
|
+
drap -o 3 (Automatic file: name_videos.dat)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Droplet
|
1
|
+
# Droplet Computer program
|
2
2
|
|
3
3
|
This package allows the analysis of videos and images in EDF format to extract
|
4
4
|
physical parameters of droplets in acoustic levitation or other experimental techniques.
|
@@ -11,4 +11,18 @@ The graphical user interface provides:
|
|
11
11
|
|
12
12
|
## How to use
|
13
13
|
|
14
|
-
Install:
|
14
|
+
Install:
|
15
|
+
|
16
|
+
python -m venv venv
|
17
|
+
|
18
|
+
source venv/bin/activate
|
19
|
+
|
20
|
+
pip install drap
|
21
|
+
|
22
|
+
Use:
|
23
|
+
|
24
|
+
drap -o 1 (Gui interface)
|
25
|
+
|
26
|
+
drap -o 2 (Terminal interface)
|
27
|
+
|
28
|
+
drap -o 3 (Automatic file: name_videos.dat)
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "drap"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.3.post0"
|
8
8
|
description = "Tool for analyzing droplet size and concentration using video and EDF images"
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
11
|
-
authors = [{ name = "Gabriel Braga Marques Teobaldo
|
11
|
+
authors = [{ name = "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira", email = "alves.casssio@gmail.com" }]
|
12
12
|
requires-python = ">=3.8"
|
13
13
|
|
14
14
|
dependencies = [
|
@@ -25,7 +25,13 @@ keywords = ["saxs", "x-ray", "edf", "opencv", "pyqt5", "droplet"]
|
|
25
25
|
|
26
26
|
[project.scripts]
|
27
27
|
drap = "drap.main:main"
|
28
|
-
drap-gui = "drap.gui:
|
28
|
+
drap-gui = "drap.gui:gui"
|
29
|
+
|
30
|
+
[tool.setuptools]
|
31
|
+
package-dir = {"" = "src"}
|
32
|
+
|
33
|
+
[tool.setuptools.packages.find]
|
34
|
+
where = ["src"]
|
29
35
|
|
30
36
|
[project.urls]
|
31
37
|
Homepage = "https://test.pypi.org/project/DrAP/"
|
@@ -1,5 +1,4 @@
|
|
1
|
-
from .
|
2
|
-
from .utils import get_info_video, get_video_file, get_dir_paths
|
1
|
+
from .utils import *
|
3
2
|
|
4
3
|
import cv2
|
5
4
|
from fabio.edfimage import EdfImage
|
@@ -34,11 +33,11 @@ import matplotlib.pyplot as plt
|
|
34
33
|
matplotlib.use('Agg')
|
35
34
|
|
36
35
|
|
37
|
-
from .image_cropper_full import ImageCropper # importa sua classe real
|
38
36
|
|
39
37
|
|
40
38
|
|
41
39
|
def main_gui():
|
40
|
+
|
42
41
|
app = QApplication(sys.argv)
|
43
42
|
cropper = ImageCropper()
|
44
43
|
sys.exit(app.exec_())
|