drap 0.0.3.post7__tar.gz → 0.0.3.post8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drap
3
- Version: 0.0.3.post7
3
+ Version: 0.0.3.post8
4
4
  Summary: Tool for analyzing droplet size and concentration using video and EDF images
5
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
@@ -34,16 +34,16 @@ The graphical user interface provides:
34
34
 
35
35
  Install:
36
36
 
37
- python -m venv venv
37
+ python -m venv venv
38
38
 
39
- source venv/bin/activate
39
+ source venv/bin/activate
40
40
 
41
- pip install drap
41
+ pip install drap
42
42
 
43
43
  Use:
44
44
 
45
- drap -o 1 (Gui interface)
45
+ drap -o 1 (Gui interface)
46
46
 
47
- drap -o 2 (Terminal interface)
47
+ drap -o 2 (Terminal interface)
48
48
 
49
- drap -o 3 (Automatic file: name_videos.dat)
49
+ drap -o 3 (Automatic file: name_videos.dat)
@@ -13,16 +13,16 @@ The graphical user interface provides:
13
13
 
14
14
  Install:
15
15
 
16
- python -m venv venv
16
+ python -m venv venv
17
17
 
18
- source venv/bin/activate
18
+ source venv/bin/activate
19
19
 
20
- pip install drap
20
+ pip install drap
21
21
 
22
22
  Use:
23
23
 
24
- drap -o 1 (Gui interface)
24
+ drap -o 1 (Gui interface)
25
25
 
26
- drap -o 2 (Terminal interface)
26
+ drap -o 2 (Terminal interface)
27
27
 
28
- drap -o 3 (Automatic file: name_videos.dat)
28
+ drap -o 3 (Automatic file: name_videos.dat)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "drap"
7
- version = "0.0.3.post7"
7
+ version = "0.0.3.post8"
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"}
@@ -215,11 +215,13 @@ class ImageCropper(QMainWindow):
215
215
  QMessageBox.warning(self, 'Warning', 'No video selected.')
216
216
  return
217
217
 
218
- self.file_path = os.path.normpath(self.file_path)
219
- self.file_path = QFileInfo(self.file_path).fileName();
220
- self.file_path = Path(self.file_path);
221
- self.file_path = self.file_path.resolve();
222
- self.file_path = os.path.normpath(self.file_path);
218
+ self.file_path = os.path.normpath(str(Path(self.file_path).expanduser().resolve()))
219
+
220
+ # self.file_path = os.path.normpath(self.file_path)
221
+ # self.file_path = QFileInfo(self.file_path).fileName();
222
+ # self.file_path = Path(self.file_path);
223
+ # self.file_path = self.file_path.resolve();
224
+ # self.file_path = os.path.normpath(self.file_path);
223
225
 
224
226
  video = cv2.VideoCapture(self.file_path);
225
227
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drap
3
- Version: 0.0.3.post7
3
+ Version: 0.0.3.post8
4
4
  Summary: Tool for analyzing droplet size and concentration using video and EDF images
5
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
@@ -34,16 +34,16 @@ The graphical user interface provides:
34
34
 
35
35
  Install:
36
36
 
37
- python -m venv venv
37
+ python -m venv venv
38
38
 
39
- source venv/bin/activate
39
+ source venv/bin/activate
40
40
 
41
- pip install drap
41
+ pip install drap
42
42
 
43
43
  Use:
44
44
 
45
- drap -o 1 (Gui interface)
45
+ drap -o 1 (Gui interface)
46
46
 
47
- drap -o 2 (Terminal interface)
47
+ drap -o 2 (Terminal interface)
48
48
 
49
- drap -o 3 (Automatic file: name_videos.dat)
49
+ drap -o 3 (Automatic file: name_videos.dat)
File without changes
File without changes
File without changes
File without changes