drap 0.0.2.post1__py3-none-any.whl → 0.0.3.post1__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.
- drap/automation.py +1 -2
- drap/gui.py +2 -3
- drap/terminal_interface.py +1 -2
- drap/utils.py +1622 -0
- {drap-0.0.2.post1.dist-info → drap-0.0.3.post1.dist-info}/METADATA +15 -1
- drap-0.0.3.post1.dist-info/RECORD +12 -0
- drap-0.0.2.post1.dist-info/RECORD +0 -11
- {drap-0.0.2.post1.dist-info → drap-0.0.3.post1.dist-info}/WHEEL +0 -0
- {drap-0.0.2.post1.dist-info → drap-0.0.3.post1.dist-info}/entry_points.txt +0 -0
- {drap-0.0.2.post1.dist-info → drap-0.0.3.post1.dist-info}/licenses/LICENSE +0 -0
- {drap-0.0.2.post1.dist-info → drap-0.0.3.post1.dist-info}/top_level.txt +0 -0
drap/automation.py
CHANGED
drap/gui.py
CHANGED
@@ -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_())
|
drap/terminal_interface.py
CHANGED