Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
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
Shashank Suhas
seminar-breakout
Commits
fbeed06b
Commit
fbeed06b
authored
Aug 20, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge duplicated rotation implementation by using Transform
parent
16245e35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
37 deletions
+44
-37
tensorpack/dataflow/imgaug/geometry.py
tensorpack/dataflow/imgaug/geometry.py
+25
-37
tensorpack/dataflow/imgaug/transform.py
tensorpack/dataflow/imgaug/transform.py
+19
-0
No files found.
tensorpack/dataflow/imgaug/geometry.py
View file @
fbeed06b
...
...
@@ -3,15 +3,17 @@
# File: geometry.py
# Author: Yuxin Wu <ppwwyyxxc@gmail.com>
from
.base
import
ImageAugmentor
import
math
import
cv2
import
numpy
as
np
from
.base
import
ImageAugmentor
from
.transform
import
TransformAugmentorBase
,
WarpAffineTransform
__all__
=
[
'Shift'
,
'Rotation'
,
'RotationAndCropValid'
,
'Affine'
]
class
Shift
(
ImageAugmentor
):
class
Shift
(
TransformAugmentorBase
):
""" Random horizontal and vertical shifts """
def
__init__
(
self
,
horiz_frac
=
0
,
vert_frac
=
0
,
...
...
@@ -32,21 +34,12 @@ class Shift(ImageAugmentor):
max_dy
=
self
.
vert_frac
*
img
.
shape
[
0
]
dx
=
np
.
round
(
self
.
_rand_range
(
-
max_dx
,
max_dx
))
dy
=
np
.
round
(
self
.
_rand_range
(
-
max_dy
,
max_dy
))
return
np
.
float32
(
[[
1
,
0
,
dx
],
[
0
,
1
,
dy
]])
def
_augment
(
self
,
img
,
shift_m
):
ret
=
cv2
.
warpAffine
(
img
,
shift_m
,
img
.
shape
[
1
::
-
1
],
borderMode
=
self
.
border
,
borderValue
=
self
.
border_value
)
if
img
.
ndim
==
3
and
ret
.
ndim
==
2
:
ret
=
ret
[:,
:,
np
.
newaxis
]
return
ret
def
_augment_coords
(
self
,
coords
,
param
):
r
aise
NotImplementedError
(
)
mat
=
np
.
array
([[
1
,
0
,
dx
],
[
0
,
1
,
dy
]],
dtype
=
'float32'
)
r
eturn
WarpAffineTransform
(
mat
,
img
.
shape
[
1
::
-
1
],
self
.
border
,
self
.
border_value
)
class
Rotation
(
ImageAugmentor
):
class
Rotation
(
TransformAugmentorBase
):
""" Random rotate the image w.r.t a random center"""
def
__init__
(
self
,
max_deg
,
center_range
=
(
0
,
1
),
...
...
@@ -73,17 +66,21 @@ class Rotation(ImageAugmentor):
deg
=
self
.
_rand_range
(
-
self
.
max_deg
,
self
.
max_deg
)
if
self
.
step_deg
:
deg
=
deg
//
self
.
step_deg
*
self
.
step_deg
return
cv2
.
getRotationMatrix2D
(
tuple
(
center
-
0.5
),
deg
,
1
)
def
_augment
(
self
,
img
,
rot_m
):
ret
=
cv2
.
warpAffine
(
img
,
rot_m
,
img
.
shape
[
1
::
-
1
],
flags
=
self
.
interp
,
borderMode
=
self
.
border
,
borderValue
=
self
.
border_value
)
if
img
.
ndim
==
3
and
ret
.
ndim
==
2
:
ret
=
ret
[:,
:,
np
.
newaxis
]
return
ret
def
_augment_coords
(
self
,
coords
,
param
):
raise
NotImplementedError
()
"""
The correct center is shape*0.5-0.5 This can be verified by:
SHAPE = 7
arr = np.random.rand(SHAPE, SHAPE)
orig = arr
c = SHAPE * 0.5 - 0.5
c = (c, c)
for k in range(4):
mat = cv2.getRotationMatrix2D(c, 90, 1)
arr = cv2.warpAffine(arr, mat, arr.shape)
assert np.all(arr == orig)
"""
mat
=
cv2
.
getRotationMatrix2D
(
tuple
(
center
-
0.5
),
deg
,
1
)
return
WarpAffineTransform
(
mat
,
img
.
shape
[
1
::
-
1
],
self
.
border
,
self
.
border_value
)
class
RotationAndCropValid
(
ImageAugmentor
):
...
...
@@ -152,7 +149,7 @@ class RotationAndCropValid(ImageAugmentor):
return
int
(
np
.
round
(
wr
)),
int
(
np
.
round
(
hr
))
class
Affine
(
ImageAugmentor
):
class
Affine
(
TransformAugmentorBase
):
"""
Random affine transform of the image w.r.t to the image center.
Transformations involve:
...
...
@@ -237,14 +234,5 @@ class Affine(ImageAugmentor):
# Apply shift :
transform_matrix
[
0
,
2
]
+=
dx
transform_matrix
[
1
,
2
]
+=
dy
return
transform_matrix
def
_augment
(
self
,
img
,
transform_matrix
):
ret
=
cv2
.
warpAffine
(
img
,
transform_matrix
,
img
.
shape
[
1
::
-
1
],
flags
=
self
.
interp
,
borderMode
=
self
.
border
,
borderValue
=
self
.
border_value
)
if
img
.
ndim
==
3
and
ret
.
ndim
==
2
:
ret
=
ret
[:,
:,
np
.
newaxis
]
return
ret
def
_augment_coords
(
self
,
coords
,
param
):
raise
NotImplementedError
()
return
WarpAffineTransform
(
transform_matrix
,
img
.
shape
[
1
::
-
1
],
self
.
interp
,
self
.
border
,
self
.
border_value
)
tensorpack/dataflow/imgaug/transform.py
View file @
fbeed06b
...
...
@@ -85,3 +85,22 @@ class CropTransform(ImageTransform):
coords
[:,
0
]
-=
self
.
w0
coords
[:,
1
]
-=
self
.
h0
return
coords
class
WarpAffineTransform
(
ImageTransform
):
def
__init__
(
self
,
mat
,
dsize
,
interp
=
cv2
.
INTER_LINEAR
,
borderMode
=
cv2
.
BORDER_CONSTANT
,
borderValue
=
0
):
self
.
_init
(
locals
())
def
apply_image
(
self
,
img
):
ret
=
cv2
.
warpAffine
(
img
,
self
.
mat
,
self
.
dsize
,
flags
=
self
.
interp
,
borderMode
=
self
.
borderMode
,
borderValue
=
self
.
borderValue
)
if
img
.
ndim
==
3
and
ret
.
ndim
==
2
:
ret
=
ret
[:,
:,
np
.
newaxis
]
return
ret
def
apply_coords
(
self
,
coords
):
# TODO
raise
NotImplementedError
()
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