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
7fe1e766
Commit
7fe1e766
authored
Sep 17, 2020
by
Vincent POLLET
Browse files
[DOC] Documentation of stream_filters.py
parent
0e5a2690
Pipeline
#42877
passed with stage
in 13 minutes and 56 seconds
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
bob/io/stream/__init__.py
View file @
7fe1e766
...
...
@@ -2,19 +2,22 @@ from bob.io.stream.stream_file import StreamFile
from
bob.io.stream.stream
import
Stream
,
stream_filter
,
StreamFilter
# import filters defined in stream.py
from
bob.io.stream.stream
import
AsType
,
\
StreamSelect
,
\
StreamView
# import filters defined in stream_filters
from
bob.io.stream.stream_filters
import
StreamColorMap
,
\
StreamNormalize
,
\
StreamClean
,
\
StreamStacked
,
\
StreamAdjust
,
\
StreamWarp
,
\
StreamStereo
,
\
StreamReproject
,
\
StreamSubtract
from
bob.io.stream.stream
import
AsType
,
StreamSelect
,
StreamView
# import filters defined in stream_filters
from
bob.io.stream.stream_filters
import
(
StreamColorMap
,
StreamNormalize
,
StreamClean
,
StreamStacked
,
StreamAdjust
,
StreamWarp
,
StreamStereo
,
StreamReproject
,
StreamSubtract
,
)
from
.utils
import
StreamArray
# So that elements are available at package level, eg: bob.io.stream.Stream and not bob.io.stream.stream.Stream
Stream
.
__module__
=
"bob.io.stream"
...
...
@@ -22,6 +25,7 @@ StreamFile.__module__ = "bob.io.stream"
StreamFilter
.
__module__
=
"bob.io.stream"
stream_filter
.
__module__
=
"bob.io.stream"
def
get_config
():
"""Returns a string containing the configuration information.
"""
...
...
@@ -33,4 +37,3 @@ def get_config():
# gets sphinx autodoc done right - don't remove it
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
"_"
)]
bob/io/stream/stream_filters.py
View file @
7fe1e766
This diff is collapsed.
Click to expand it.
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