Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DAN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Automatic Text Recognition
DAN
Commits
3dfe694e
Verified
Commit
3dfe694e
authored
1 year ago
by
Mélodie
Committed by
Mélodie Boillet
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix data augmentations
parent
f60631d2
No related branches found
No related tags found
1 merge request
!224
Fix version 0.2.0-dev3 and later
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dan/transforms.py
+45
-8
45 additions, 8 deletions
dan/transforms.py
with
45 additions
and
8 deletions
dan/transforms.py
+
45
−
8
View file @
3dfe694e
...
...
@@ -119,30 +119,64 @@ class Erosion:
return
erode
(
np
.
array
(
x
),
self
.
kernel
,
iterations
=
self
.
iterations
)
class
ErosionDilation
:
class
ErosionDilation
(
ImageOnlyTransform
)
:
"""
Random erosion or dilation
"""
def
__init__
(
self
,
min_kernel
,
max_kernel
,
iterations
,
p
=
1.0
):
def
__init__
(
self
,
min_kernel
:
int
,
max_kernel
:
int
,
iterations
:
int
,
always_apply
:
bool
=
False
,
p
:
float
=
1.0
,
):
super
(
ErosionDilation
,
self
).
__init__
(
always_apply
,
p
)
self
.
min_kernel
=
min_kernel
self
.
max_kernel
=
max_kernel
self
.
iterations
=
iterations
self
.
p
=
p
self
.
always_apply
=
False
def
__call__
(
self
,
image
,
force_apply
=
False
):
if
not
(
random
.
random
()
<=
self
.
p
or
self
.
always_apply
or
force_apply
):
return
{
"
image
"
:
image
}
def
apply
(
self
,
img
:
np
.
ndarray
,
**
params
):
kernel_h
=
randint
(
self
.
min_kernel
,
self
.
max_kernel
)
kernel_w
=
randint
(
self
.
min_kernel
,
self
.
max_kernel
)
kernel
=
np
.
ones
((
kernel_h
,
kernel_w
),
np
.
uint8
)
augmented_image
=
(
Erosion
(
kernel
,
iterations
=
self
.
iterations
)(
im
age
)
Erosion
(
kernel
,
iterations
=
self
.
iterations
)(
im
g
)
if
random
.
random
()
<
0.5
else
Dilation
(
kernel
=
kernel
,
iterations
=
self
.
iterations
)(
im
age
)
else
Dilation
(
kernel
=
kernel
,
iterations
=
self
.
iterations
)(
im
g
)
)
return
{
"
image
"
:
augmented_image
}
return
augmented_image
class
DPIAdjusting
(
ImageOnlyTransform
):
"""
Resolution modification
"""
def
__init__
(
self
,
min_factor
:
float
=
0.75
,
max_factor
:
float
=
1
,
always_apply
:
bool
=
False
,
p
:
float
=
1.0
,
):
super
(
DPIAdjusting
,
self
).
__init__
(
always_apply
,
p
)
self
.
min_factor
=
min_factor
self
.
max_factor
=
max_factor
self
.
p
=
p
self
.
always_apply
=
False
def
apply
(
self
,
img
:
np
.
ndarray
,
**
params
):
factor
=
float
(
Uniform
(
self
.
min_factor
,
self
.
max_factor
).
sample
())
img
=
Image
.
fromarray
(
img
)
augmented_image
=
img
.
resize
(
(
int
(
np
.
ceil
(
img
.
width
*
factor
)),
int
(
np
.
ceil
(
img
.
height
*
factor
))),
Image
.
BILINEAR
,
)
return
np
.
array
(
augmented_image
)
def
get_preprocessing_transforms
(
...
...
@@ -194,6 +228,9 @@ def get_augmentation_transforms() -> SomeOf:
],
n
=
2
,
p
=
0.9
,
)
],
p
=
0.9
)
...
...
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