Skip to content
Snippets Groups Projects
Commit c7544a31 authored by Olegs NIKISINS's avatar Olegs NIKISINS
Browse files

Removed self, from load() call

parent 503b56ec
No related branches found
No related tags found
1 merge request!59Added HLDI for the BATL database, added optional data normalization in FaceCropAlign
Pipeline #
...@@ -62,14 +62,14 @@ class BatlPadFile(PadFile): ...@@ -62,14 +62,14 @@ class BatlPadFile(PadFile):
def load(self, directory=None, extension='.hdf5', frame_selector=FrameSelector(selection_style='all')): def load(self, directory=None, extension='.hdf5', frame_selector=FrameSelector(selection_style='all')):
data = self.f.load(self, directory=directory, data = self.f.load(directory=directory,
extension=extension, extension=extension,
modality=self.stream_type, # TODO: this parameter is currently missing in bob.db.batl, add it there modality=self.stream_type, # TODO: this parameter is currently missing in bob.db.batl, add it there
reference_stream_type=self.reference_stream_type, reference_stream_type=self.reference_stream_type,
warp_to_reference=self.warp_to_reference, warp_to_reference=self.warp_to_reference,
convert_to_rgb=self.convert_to_rgb, convert_to_rgb=self.convert_to_rgb,
crop=self.crop, crop=self.crop,
max_frames=self.max_frames) max_frames=self.max_frames)
for modality in data.keys(): for modality in data.keys():
if modality != 'rppg': if modality != 'rppg':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment