Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
uva
Commits
b7e9b760
Commit
b7e9b760
authored
Sep 23, 2011
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ImProc ass2: implemented perspective transform.
parent
2393aae2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
13 deletions
+43
-13
improc/ass2/affine.py
improc/ass2/affine.py
+41
-9
improc/ass2/flyeronground.png
improc/ass2/flyeronground.png
+0
-0
improc/ass2/interpolation.py
improc/ass2/interpolation.py
+2
-4
No files found.
improc/ass2/affine.py
View file @
b7e9b760
from
interpolation
import
pv
from
interpolation
import
pv
from
pylab
import
array
,
matrix
,
zeros
,
show
from
pylab
import
array
,
matrix
,
zeros
,
show
,
dot
,
lstsq
,
inv
,
svd
from
numpy.linalg
import
lstsq
,
inv
# url: http://www.leptonica.com/affine.html
# url: http://www.leptonica.com/affine.html
...
@@ -35,26 +34,59 @@ def affine_transform(image, p1, p2, p3, width, height):
...
@@ -35,26 +34,59 @@ def affine_transform(image, p1, p2, p3, width, height):
# Construct the transformed image
# Construct the transformed image
result
=
zeros
((
width
,
height
))
result
=
zeros
((
width
,
height
))
for
y
in
xrange
(
height
):
for
x
in
xrange
(
width
):
for
x
in
xrange
(
width
):
for
y
in
xrange
(
height
):
orig_pos
=
(
A
*
array
([[
x
,
y
,
1
]]).
T
).
T
.
tolist
()[
0
]
orig_pos
=
(
A
*
array
([[
x
,
y
,
1
]]).
T
).
T
.
tolist
()[
0
]
result
[
x
][
y
]
=
pv
(
image
,
orig_pos
[
0
],
orig_pos
[
1
],
'linear'
)
result
[
x
][
y
]
=
pv
(
image
,
orig_pos
[
0
],
orig_pos
[
1
],
'linear'
)
return
result
return
result
def
perspective_transform
(
image
,
p1
,
p2
,
p3
,
p4
,
width
,
height
):
"""Warps the parallelogram defined by four corner points onto a new image
of size MxN."""
x1
,
y1
=
p1
x2
,
y2
=
p2
x3
,
y3
=
p3
x4
,
y4
=
p4
M
=
array
([[
x1
,
y1
,
1
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
x1
,
y1
,
1
,
0
,
0
,
0
],
[
x2
,
y2
,
1
,
0
,
0
,
0
,
-
width
*
x2
,
-
width
*
y2
,
-
width
],
[
0
,
0
,
0
,
x2
,
y2
,
1
,
0
,
0
,
0
],
[
x3
,
y3
,
1
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
x3
,
y3
,
1
,
-
height
*
x3
,
-
height
*
y3
,
-
height
],
[
x4
,
y4
,
1
,
0
,
0
,
0
,
-
width
*
x4
,
-
width
*
y4
,
-
width
],
[
0
,
0
,
0
,
x4
,
y4
,
1
,
-
height
*
x4
,
-
height
*
y4
,
-
height
]])
# Calculate transform matrix
A
=
inv
(
svd
(
M
)[
2
].
T
[:,
-
1
].
reshape
(
3
,
3
))
# Construct the transformed image
result
=
zeros
((
width
,
height
,
4
))
for
x
in
xrange
(
width
):
for
y
in
xrange
(
height
):
p
=
dot
(
A
,
array
([[
x
],
[
y
],
[
1
]]))
result
[
x
][
y
]
=
pv
(
image
,
p
[
0
]
/
p
[
2
],
p
[
1
]
/
p
[
2
],
'linear'
)
return
result
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
from
pylab
import
imread
,
imshow
from
pylab
import
imread
,
imshow
image
=
imread
(
'cameraman.png'
)
#image = imread('cameraman.png')
image
=
imread
(
'flyeronground.png'
)
half_width
=
image
.
shape
[
0
]
/
2
half_width
=
image
.
shape
[
0
]
/
2
half_height
=
image
.
shape
[
1
]
/
2
half_height
=
image
.
shape
[
1
]
/
2
M
,
N
=
image
.
shape
M
,
N
=
image
.
shape
[:
2
]
# TODO: validate MxN -> width x height
#result = affine_transform(image, (0., half_height), (half_width, 0.),
result
=
affine_transform
(
image
,
(
0.
,
half_height
),
(
half_width
,
0.
),
# (image.shape[0], half_height), 128, 128)
(
image
.
shape
[
0
],
half_height
),
128
,
128
)
result
=
perspective_transform
(
image
,
(
149
,
590
),
(
101
,
376
),
(
301
,
209
),
(
393
,
392
),
64
,
64
)
imshow
(
result
,
cmap
=
'gray'
)
imshow
(
result
,
cmap
=
'gray'
)
show
()
show
()
improc/ass2/flyeronground.png
0 → 100644
View file @
b7e9b760
728 KB
improc/ass2/interpolation.py
View file @
b7e9b760
...
@@ -12,10 +12,8 @@ def pv(image, x, y, method):
...
@@ -12,10 +12,8 @@ def pv(image, x, y, method):
return
image
[
round
(
x
)][
round
(
y
)]
if
in_image
(
image
,
x
,
y
)
else
bgcolor
return
image
[
round
(
x
)][
round
(
y
)]
if
in_image
(
image
,
x
,
y
)
else
bgcolor
if
method
==
'linear'
:
if
method
==
'linear'
:
x1
=
floor
(
x
)
x1
,
y1
=
floor
(
x
),
floor
(
y
)
x2
=
floor
(
x
+
1
)
x2
,
y2
=
floor
(
x
+
1
),
floor
(
y
+
1
)
y1
=
floor
(
y
)
y2
=
floor
(
y
+
1
)
if
not
in_image
(
image
,
x1
,
y1
)
or
not
in_image
(
image
,
x2
,
y2
):
if
not
in_image
(
image
,
x1
,
y1
)
or
not
in_image
(
image
,
x2
,
y2
):
return
bgcolor
return
bgcolor
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment