Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
zesje
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zesje
zesje
Commits
a3d241e9
Commit
a3d241e9
authored
5 years ago
by
RABijl
Browse files
Options
Downloads
Patches
Plain Diff
adds tests for realign image and fixes bug with fix corner markers
parent
728f190b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!181
Pregrading and multiple choice questions
,
!169
Pregrading and creation of multiple choice options on the exam
,
!165
Remove data folder
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/test_scans.py
+23
-0
23 additions, 0 deletions
tests/test_scans.py
zesje/images.py
+6
-2
6 additions, 2 deletions
zesje/images.py
zesje/scans.py
+7
-1
7 additions, 1 deletion
zesje/scans.py
with
36 additions
and
3 deletions
tests/test_scans.py
+
23
−
0
View file @
a3d241e9
...
...
@@ -3,6 +3,7 @@ import os
import
pytest
import
numpy
as
np
import
PIL.Image
import
cv2
from
tempfile
import
NamedTemporaryFile
from
flask
import
Flask
from
io
import
BytesIO
...
...
@@ -280,3 +281,25 @@ def test_image_extraction(datadir, filename):
assert
img
is
not
None
assert
np
.
average
(
np
.
array
(
img
))
==
255
assert
page
==
2
@pytest.mark.parametrize
(
'
file_name
'
,
[
"
a4-rotated.png
"
,
"
a4-3-markers.png
"
,
"
a4-rotated-3-markers.png
"
])
def
test_realign_image
(
datadir
,
file_name
):
dir_name
=
"
cornermarkers
"
epsilon
=
2
test_file
=
os
.
path
.
join
(
datadir
,
dir_name
,
file_name
)
test_image
=
np
.
array
(
PIL
.
Image
.
open
(
test_file
))
correct_file
=
os
.
path
.
join
(
datadir
,
dir_name
,
"
a4.png
"
)
correct_image
=
cv2
.
imread
(
correct_file
)
correct_corner_markers
=
scans
.
find_corner_marker_keypoints
(
correct_image
)
result_image
,
result_corner_markers
=
scans
.
realign_image
(
test_image
)
assert
result_corner_markers
is
not
None
for
i
in
range
(
4
):
diff
=
np
.
absolute
(
np
.
subtract
(
correct_corner_markers
[
i
],
result_corner_markers
[
i
]))
assert
diff
[
0
]
<
epsilon
assert
diff
[
1
]
<
epsilon
This diff is collapsed.
Click to expand it.
zesje/images.py
+
6
−
2
View file @
a3d241e9
...
...
@@ -71,28 +71,32 @@ def fix_corner_markers(corner_keypoints, shape):
bottom_right
=
[(
x
,
y
)
for
x
,
y
in
corner_keypoints
if
x
>
x_sep
and
y
>
y_sep
]
missing_point
=
()
# index = 0
if
not
top_left
:
# Top left point is missing
(
dx
,
dy
)
=
tuple
(
map
(
sub
,
top_right
[
0
],
bottom_right
[
0
]))
missing_point
=
tuple
(
map
(
add
,
bottom_left
[
0
],
(
dx
,
dy
)))
index
=
0
elif
not
bottom_left
:
# Bottom left point is missing
(
dx
,
dy
)
=
tuple
(
map
(
sub
,
top_right
[
0
],
bottom_right
[
0
]))
missing_point
=
tuple
(
map
(
sub
,
top_left
[
0
],
(
dx
,
dy
)))
index
=
2
elif
not
top_right
:
# Top right point is missing
(
dx
,
dy
)
=
tuple
(
map
(
sub
,
top_left
[
0
],
bottom_left
[
0
]))
missing_point
=
tuple
(
map
(
add
,
bottom_right
[
0
],
(
dx
,
dy
)))
index
=
1
elif
not
bottom_right
:
# bottom right
(
dx
,
dy
)
=
tuple
(
map
(
sub
,
top_left
[
0
],
bottom_left
[
0
]))
missing_point
=
tuple
(
map
(
sub
,
top_right
[
0
],
(
dx
,
dy
)))
index
=
3
corner_keypoints
.
append
(
missing_point
)
corner_keypoints
.
insert
(
index
,
missing_point
)
return
corner_keypoints
...
...
This diff is collapsed.
Click to expand it.
zesje/scans.py
+
7
−
1
View file @
a3d241e9
...
...
@@ -792,6 +792,9 @@ def check_corner_keypoints(image_array, keypoints):
def
realign_image
(
image_array
,
keypoints
=
None
,
reference_keypoints
=
None
):
"""
This function realigns an images based on the template image
"""
if
(
keypoints
is
None
):
keypoints
=
find_corner_marker_keypoints
(
image_array
)
...
...
@@ -813,8 +816,11 @@ def realign_image(image_array, keypoints=None,
# get the transformation matrix
M
=
cv2
.
getPerspectiveTransform
(
keypoints_32
,
reference_keypoints_32
)
# apply the transformation matrix
return_image
=
cv2
.
warpPerspective
(
image_array
,
M
,
(
cols
,
rows
))
return_image
=
cv2
.
warpPerspective
(
image_array
,
M
,
(
cols
,
rows
),
borderValue
=
(
255
,
255
,
255
,
255
))
return_keypoints
=
find_corner_marker_keypoints
(
return_image
)
if
(
len
(
return_keypoints
)
!=
4
):
return_keypoints
=
fix_corner_markers
(
return_keypoints
,
return_image
.
shape
)
return
return_image
,
return_keypoints
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment