Skip to content
Snippets Groups Projects
Commit 7e17ba54 authored by Sushil BHATTACHARJEE's avatar Sushil BHATTACHARJEE
Browse files

fixed bug in example-code

parent 7908970b
Branches
Tags
No related merge requests found
Pipeline #
...@@ -57,7 +57,7 @@ The function ``galbally_iqm_features::compute_quality_features()`` returns a 1D ...@@ -57,7 +57,7 @@ The function ``galbally_iqm_features::compute_quality_features()`` returns a 1D
>>> from bob.ip.qualitymeasure import galbally_iqm_features as iqm >>> from bob.ip.qualitymeasure import galbally_iqm_features as iqm
>>> video4d = bob.io.video.reader(video_file) # doctest: +SKIP >>> video4d = bob.io.video.reader(video_file) # doctest: +SKIP
>>> rgb_frame = video4d[0] >>> rgb_frame = video4d[0]
>>> print(len(rgb_frame)) >>> print(rgb_frame.shape)
[3, 480, 720] [3, 480, 720]
>>> gf_set = iqm.compute_quality_features(rgb_frame) >>> gf_set = iqm.compute_quality_features(rgb_frame)
>>> print(len(gf_set)) >>> print(len(gf_set))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment