-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtest_classification_clustersklearn.py
46 lines (35 loc) · 1.61 KB
/
test_classification_clustersklearn.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
import os
import pytest
SKLEARN_NOT_AVAIL = False
try:
import sklearn
except ImportError:
SKLEARN_NOT_AVAIL = True
DATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
@pytest.mark.skipif(SKLEARN_NOT_AVAIL, reason="scikit-learn dependency not available")
def test_img_pixel_sample_cluster(tmp_path):
import rsgislib.classification.clustersklearn
input_img = os.path.join(DATA_DIR, "sen2_20210527_aber.kea")
output_img = os.path.join(tmp_path, "sen2_20210527_aber_clustered.kea")
rsgislib.classification.clustersklearn.img_pixel_sample_cluster(
input_img, output_img, gdalformat="KEA"
)
assert os.path.exists(output_img)
@pytest.mark.skipif(SKLEARN_NOT_AVAIL, reason="scikit-learn dependency not available")
def test_img_pixel_tiled_cluster(tmp_path):
import rsgislib.classification.clustersklearn
input_img = os.path.join(DATA_DIR, "sen2_20210527_aber.kea")
output_img = os.path.join(tmp_path, "sen2_20210527_aber_clustered.kea")
rsgislib.classification.clustersklearn.img_pixel_tiled_cluster(
input_img, output_img, gdalformat="KEA"
)
assert os.path.exists(output_img)
@pytest.mark.skipif(SKLEARN_NOT_AVAIL, reason="scikit-learn dependency not available")
def test_img_pixel_cluster(tmp_path):
import rsgislib.classification.clustersklearn
input_img = os.path.join(DATA_DIR, "sen2_20210527_aber.kea")
output_img = os.path.join(tmp_path, "sen2_20210527_aber_clustered.kea")
rsgislib.classification.clustersklearn.img_pixel_cluster(
input_img, output_img, gdalformat="KEA"
)
assert os.path.exists(output_img)