mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Co-authored-by: Kwabena W Agyeman <kwagyeman@users.noreply.github.com> Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
13 lines
493 B
Python
13 lines
493 B
Python
def unittest(data_path, temp_path):
|
|
import image
|
|
|
|
img = image.Image(data_path + "/shapes.ppm", copy_to_fb=True)
|
|
lines = img.find_lines(threshold=5000, theta_margin=25, rho_margin=25)
|
|
return (
|
|
len(lines) == 4
|
|
and lines[0][0:] == (22, 0, 22, 119, 119, 8670, 0, 22)
|
|
and lines[1][0:] == (0, 39, 159, 39, 159, 8670, 90, 39)
|
|
and lines[2][0:] == (57, 0, 57, 119, 119, 8670, 0, 57)
|
|
and lines[3][0:] == (0, 75, 159, 75, 159, 10710, 90, 75)
|
|
)
|