Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.pad.face
Commits
c7544a31
Commit
c7544a31
authored
Mar 12, 2018
by
Olegs NIKISINS
Browse files
Removed self, from load() call
parent
503b56ec
Pipeline
#17582
failed with stage
in 25 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/pad/face/database/batl.py
View file @
c7544a31
...
...
@@ -62,14 +62,14 @@ class BatlPadFile(PadFile):
def
load
(
self
,
directory
=
None
,
extension
=
'.hdf5'
,
frame_selector
=
FrameSelector
(
selection_style
=
'all'
)):
data
=
self
.
f
.
load
(
self
,
directory
=
directory
,
extension
=
extension
,
modality
=
self
.
stream_type
,
# TODO: this parameter is currently missing in bob.db.batl, add it there
reference_stream_type
=
self
.
reference_stream_type
,
warp_to_reference
=
self
.
warp_to_reference
,
convert_to_rgb
=
self
.
convert_to_rgb
,
crop
=
self
.
crop
,
max_frames
=
self
.
max_frames
)
data
=
self
.
f
.
load
(
directory
=
directory
,
extension
=
extension
,
modality
=
self
.
stream_type
,
# TODO: this parameter is currently missing in bob.db.batl, add it there
reference_stream_type
=
self
.
reference_stream_type
,
warp_to_reference
=
self
.
warp_to_reference
,
convert_to_rgb
=
self
.
convert_to_rgb
,
crop
=
self
.
crop
,
max_frames
=
self
.
max_frames
)
for
modality
in
data
.
keys
():
if
modality
!=
'rppg'
:
...
...
Write
Preview
Supports
Markdown
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