Add more unit-tests.

This commit is contained in:
iabdalkader 2017-08-08 00:18:05 +02:00
parent 26a74b7c72
commit 3a7bb9487c
4 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,5 @@
def unittest(data_path, temp_path):
import image
img = image.Image("unittest/data/shapes.ppm", copy_to_fb=True)
circles = img.find_circles(threshold = 5000, x_margin = 30, y_margin = 30, r_margin = 30)
return len(circles) == 1 and circles[0][0:] == (118, 56, 22, 5829)

View File

@ -0,0 +1,9 @@
def unittest(data_path, temp_path):
import image
img = image.Image("unittest/data/shapes.ppm", copy_to_fb=True)
lines = img.find_lines(threshold = 10000, theta_margin = 25, rho_margin = 25)
return len(lines) == 4 and\
lines[0][0:] == (22, 0, 22, 119, 119, 17340, 0, 22) and\
lines[1][0:] == (0, 39, 159, 39, 159, 17340, 90, 39) and\
lines[2][0:] == (57, 0, 57, 119, 119, 17340, 0, 57) and\
lines[3][0:] == (0, 75, 159, 75, 159, 21420, 90, 75)

View File

@ -0,0 +1,19 @@
def unittest(data_path, temp_path):
import image
img = image.Image("unittest/data/shapes.ppm", copy_to_fb=True)
lines = img.find_line_segments(threshold = 10000, theta_margin = 15, rho_margin = 15, segment_threshold = 100)
return len(lines) == 6 and\
lines[0][0:] ==(22, 40, 22, 73, 33, 17340, 0, 22) and\
lines[1][0:] ==(111, 37, 124, 37, 13, 17340, 90, 39) and\
lines[2][0:] ==(24, 39, 56, 39, 32, 17340, 90, 39) and\
lines[3][0:] ==(57, 40, 57, 73, 33, 17340, 0, 57) and\
lines[4][0:] ==(24, 75, 56, 75, 32, 21420, 90, 75) and\
lines[5][0:] ==(112, 75, 126, 75, 14, 21420, 90, 75)

View File

@ -0,0 +1,5 @@
def unittest(data_path, temp_path):
import image
img = image.Image("unittest/data/shapes.ppm", copy_to_fb=True)
rects = img.find_rects(threshold = 50000)
return len(rects) == 1 and rects[0][0:] == (23, 39, 35, 36, 146566)