-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtest_segentatation_tiledclump.py
68 lines (55 loc) · 2.12 KB
/
test_segentatation_tiledclump.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
import os
DATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
SEGMENT_DATA_DIR = os.path.join(DATA_DIR, "segmentation")
IMGCALC_DATA_DIR = os.path.join(DATA_DIR, "imagecalc")
def test_perform_clumping_single_thread(tmp_path):
import rsgislib.segmentation.tiledclump
input_img = os.path.join(IMGCALC_DATA_DIR, "sen2_20210527_aber_ndvi_cats.kea")
clumps_img = os.path.join(tmp_path, "out_img.kea")
rsgislib.segmentation.tiledclump.perform_clumping_single_thread(
input_img, clumps_img, tmp_dir=tmp_path, width=500, height=500, gdalformat="KEA"
)
assert os.path.exists(clumps_img)
def test_perform_clumping_multi_process(tmp_path):
import rsgislib.segmentation.tiledclump
input_img = os.path.join(IMGCALC_DATA_DIR, "sen2_20210527_aber_ndvi_cats.kea")
clumps_img = os.path.join(tmp_path, "out_img.kea")
rsgislib.segmentation.tiledclump.perform_clumping_multi_process(
input_img,
clumps_img,
tmp_dir=tmp_path,
width=500,
height=500,
gdalformat="KEA",
n_cores=1,
)
assert os.path.exists(clumps_img)
def test_perform_union_clumping_single_thread(tmp_path):
import rsgislib.segmentation.tiledclump
input_img = os.path.join(IMGCALC_DATA_DIR, "sen2_20210527_aber_ndvi_cats.kea")
clumps_img = os.path.join(tmp_path, "out_img.kea")
rsgislib.segmentation.tiledclump.perform_union_clumping_single_thread(
input_img,
input_img,
clumps_img,
tmp_dir=tmp_path,
width=500,
height=500,
gdalformat="KEA",
)
assert os.path.exists(clumps_img)
def test_perform_union_clumping_multi_process(tmp_path):
import rsgislib.segmentation.tiledclump
input_img = os.path.join(IMGCALC_DATA_DIR, "sen2_20210527_aber_ndvi_cats.kea")
clumps_img = os.path.join(tmp_path, "out_img.kea")
rsgislib.segmentation.tiledclump.perform_union_clumping_multi_process(
input_img,
input_img,
clumps_img,
tmp_dir=tmp_path,
width=500,
height=500,
gdalformat="KEA",
n_cores=1,
)
assert os.path.exists(clumps_img)