-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_scaling.py
executable file
·221 lines (173 loc) · 5.08 KB
/
time_scaling.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#!/usr/bin/env python
"""Profile the ``PatchExtractor``."""
from itertools import product
from time import perf_counter
from typing import List, Union, Dict
from shutil import rmtree
from pathlib import Path
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter, Namespace
from argparse import BooleanOptionalAction
from pandas import DataFrame
from patch_extractor import PatchExtractor
def _parse_command_line() -> Namespace:
"""Parse the command-line arguments.
Returns
-------
Namespace
Command-line arguments.
"""
parser = ArgumentParser(
description="Time profile the patch extractor.",
formatter_class=ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"source_path",
help="Path to the image to profile on.",
type=Path,
)
parser.add_argument(
"--patch-size",
type=int,
help="Length of the square patches to generate.",
default=512,
)
parser.add_argument(
"--stride",
type=int,
help="Stride to use in the sliding-window patch extraction.",
default=512,
)
parser.add_argument(
"--mpp",
type=float,
help="Microns per pixel to use in the patch extraction.",
default=0.5,
)
parser.add_argument(
"--overview-mpp",
type=float,
help="Microns per pixel of the low-power overview image",
default=4.0,
)
parser.add_argument(
"--min-workers",
type=int,
help="Minimum number of workers to profile with.",
default=1,
)
parser.add_argument(
"--max-workers",
type=int,
help="Maximum number of workers to profile with.",
default=12,
)
parser.add_argument(
"--mask-method",
type=str,
help="Method to use when producing the tissue mask (see docs).",
default="otsu",
)
parser.add_argument(
"--element-size",
type=float,
help="Size of the square structuring element (see docs).",
default=100.0,
)
parser.add_argument(
"--patch-foreground",
type=float,
help="Fraction of each patch which must intersect with the tissue mask.",
default=0.5,
)
parser.add_argument(
"--min_obj_size",
type=float,
help="Minimum size of objects allowed in the mask.",
default=2500.0,
)
parser.add_argument(
"--zip-patches",
type=bool,
help="Whether to zip the individual patch directories or not.",
default=False,
action=BooleanOptionalAction,
)
parser.add_argument(
"--print-time",
type=bool,
help="Whether to print the processing time of each patch.",
default=True,
action=BooleanOptionalAction,
)
parser.add_argument(
"--patches",
type=bool,
help="Whether to extract patches or just overviews and masks.",
default=False,
action=BooleanOptionalAction,
)
parser.add_argument(
"--file-types",
type=str,
help="Types of files to allow in the patch extraction.",
default=[".svs", ".ndpi"],
nargs="*",
)
parser.add_argument(
"--num-realisations",
help="Number of realisations to run.",
type=int,
default=5,
)
return parser.parse_args()
def _extract_patches(args: Namespace):
"""Extract patches from target images.
Parameters
----------
args : Namespace
Command-line arguments.
"""
worker_list = range(args.min_workers, args.max_workers + 1)
save_dir = Path(".tmp-patch-scaling-out-dir")
profile_data: Dict[str, List[Union[float, int]]] = {
"workers": [],
"patches": [],
"wall_time_secs": [],
"run_idx": []
}
param_iter = product(
worker_list,
[True, False],
range(args.num_realisations),
)
for workers, no_patches, run_idx in param_iter:
save_dir.mkdir()
extractor = PatchExtractor(
patch_size=args.patch_size,
stride=args.stride,
mpp=args.mpp,
overview_mpp=args.overview_mpp,
workers=workers,
mask_method=args.mask_method,
element_size=args.element_size,
patch_foreground=args.patch_foreground,
min_obj_size=args.min_obj_size,
zip_patches=args.zip_patches,
)
start_time = perf_counter()
extractor(
args.source_path,
save_dir=save_dir,
print_time=False,
no_patches=no_patches,
)
stop_time = perf_counter()
rmtree(save_dir)
profile_data["workers"].append(workers)
profile_data["patches"].append(not no_patches)
profile_data["wall_time_secs"].append(stop_time - start_time)
profile_data["run_idx"].append(run_idx)
profile_frame = DataFrame(profile_data)
profile_frame.to_csv("profile-data.csv", index=False)
if __name__ == "__main__":
_extract_patches(_parse_command_line())