Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pad.face
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
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
bob
bob.pad.face
Commits
cbe36aaf
Commit
cbe36aaf
authored
6 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
Annotations might not be ordered
parent
56451883
No related branches found
No related tags found
1 merge request
!64
Add support for external annotations in replaymobile
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/pad/face/utils/load_utils.py
+5
-6
5 additions, 6 deletions
bob/pad/face/utils/load_utils.py
with
5 additions
and
6 deletions
bob/pad/face/utils/load_utils.py
+
5
−
6
View file @
cbe36aaf
...
@@ -4,6 +4,7 @@ from bob.io.video import reader
...
@@ -4,6 +4,7 @@ from bob.io.video import reader
from
bob.ip.base
import
scale
,
block
,
block_output_shape
from
bob.ip.base
import
scale
,
block
,
block_output_shape
from
bob.ip.color
import
rgb_to_yuv
,
rgb_to_hsv
from
bob.ip.color
import
rgb_to_yuv
,
rgb_to_hsv
from
bob.ip.facedetect
import
bounding_box_from_annotation
from
bob.ip.facedetect
import
bounding_box_from_annotation
from
collections
import
OrderedDict
from
functools
import
partial
from
functools
import
partial
import
numpy
import
numpy
import
six
import
six
...
@@ -108,14 +109,12 @@ def yield_faces(database, padfile, cropper, normalizer=None):
...
@@ -108,14 +109,12 @@ def yield_faces(database, padfile, cropper, normalizer=None):
if
annotations
is
None
:
if
annotations
is
None
:
raise
ValueError
(
"
No annotations were returned.
"
)
raise
ValueError
(
"
No annotations were returned.
"
)
if
normalizer
is
None
:
if
normalizer
is
not
None
:
annotations_gen
=
annotations
.
items
()
annotations
=
OrderedDict
(
normalizer
(
annotations
))
else
:
annotations_gen
=
normalizer
(
annotations
)
# normalize annotations and crop faces
# normalize annotations and crop faces
for
_
,
annot
in
annotation
s_gen
:
for
frame_id
,
frame
in
enumerate
(
frame
s_gen
)
:
frame
=
six
.
next
(
frames_gen
)
annot
=
annotations
.
get
(
str
(
frame_id
),
None
)
if
annot
is
None
:
if
annot
is
None
:
continue
continue
face
=
cropper
(
frame
,
annotations
=
annot
)
face
=
cropper
(
frame
,
annotations
=
annot
)
...
...
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