Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.stream
Commits
11a28ab5
Commit
11a28ab5
authored
Sep 14, 2020
by
David GEISSBUHLER
Browse files
wip
parent
2819d3a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
bob/io/stream/stream.py
View file @
11a28ab5
...
...
@@ -369,14 +369,12 @@ class StreamView(StreamFilter):
__ndim
-=
1
return
__ndim
#
translate
frame indices
#
returns
frame indices
to be loaded from parent
def
get_frame_indices
(
self
,
index
):
return
super
().
get_frame_indices
(
index
)
def
load
(
self
,
index
=
None
):
my_indices
=
self
.
get_frame_indices
(
index
)
print
(
'view load'
,
my_indices
)
print
(
'super indices'
,
return
super
().
get_frame_indices
())
indices
=
self
.
get_frame_indices
(
index
)
return
super
().
load
(
indices
)
def
process
(
self
,
data
,
indices
):
...
...
Write
Preview
Markdown
is supported
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