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 CHANGED
@@ -1,5 +1,4 @@
1
- from .conc_scat_video import conc_scat_video # e outros imports necessários
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
drap/gui.py CHANGED
@@ -1,5 +1,4 @@
1
- from .conc_scat_video import conc_scat_video # e outros imports necessários
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_())
@@ -1,5 +1,4 @@
1
- from .conc_scat_video import conc_scat_video # e outros imports necessários
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