-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathauto_test.py
36 lines (29 loc) · 837 Bytes
/
auto_test.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
from scipy.spatial import Delaunay
import numpy as np
import math
from cloud_to_gts import gts_write
from cloud_to_gts import input_triangulation
from run_non_iterative import run_non_iterative
from BilateralMeshDenoising import run_bilateral_denoising
from run_icp import run_icp
def test_1():
print()
print("************************************")
print("* RUNNING AUTOMATED TEST *")
print("************************************")
print()
run_bilateral_denoising(True)
print()
print("BILATERAL MESH DENOISING is FUNCTIONAL")
print()
run_non_iterative(True)
print()
print("NON ITERATIVE FEATURE PRESERVING MESH SMOOTHING is FUNCTIONAL")
print()
run_icp(True)
print()
print("ICP is FUNCTIONAL")
print()
print("ALL TESTS PASSED")
print()
test_1()