Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
e41bf418
Commit
e41bf418
authored
5 years ago
by
Sebastian Hahta
Browse files
Options
Downloads
Patches
Plain Diff
document depth HEVC format
parent
2f2c1ce1
No related branches found
No related tags found
2 merge requests
!214
feature/python
,
!208
Python: HEVC depth decoding
Pipeline
#17750
passed
5 years ago
Stage: all
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/ftl/ftlstream.py
+5
-0
5 additions, 0 deletions
python/ftl/ftlstream.py
python/ftl/libde265.py
+5
-1
5 additions, 1 deletion
python/ftl/libde265.py
with
10 additions
and
1 deletion
python/ftl/ftlstream.py
+
5
−
0
View file @
e41bf418
...
...
@@ -246,6 +246,11 @@ class FTLStreamReader:
warn
(
"
frame expected, no image from decoded
"
)
if
ftl
.
is_float_channel
(
self
.
_sp
.
channel
):
# todo: old hevc format twice the width, upper/lower in left/right
# half of the image
#
# new format, see depth_convert.cu:66
raise
NotImplementedError
(
"
non-color channel decoding not available
"
)
else
:
...
...
This diff is collapsed.
Click to expand it.
python/ftl/libde265.py
+
5
−
1
View file @
e41bf418
...
...
@@ -165,6 +165,7 @@ class WaitingForInput(libde265Error):
class
Decoder
:
def
__init__
(
self
,
size
,
threads
=
_threads
):
# todo: remove _size
self
.
_size
=
size
self
.
_more
=
ctypes
.
c_int
()
self
.
_out_stride
=
ctypes
.
c_int
()
...
...
@@ -189,16 +190,19 @@ class Decoder:
size
=
(
libde265
.
de265_get_image_height
(
de265_image
,
c
),
libde265
.
de265_get_image_width
(
de265_image
,
c
))
# todo: 10 bits per pixel for new depth format
bpp
=
libde265
.
de265_get_bits_per_pixel
(
de265_image
,
c
)
if
bpp
!=
8
:
raise
NotImplementedError
(
"
unsupported bits per pixel %i
"
%
bpp
)
img_ptr
=
libde265
.
de265_get_image_plane
(
de265_image
,
c
,
self
.
_out_stride
)
# for frombuffer() no copy assumed
# for frombuffer() no copy assumed
ch
=
np
.
frombuffer
(
img_ptr
[:
size
[
0
]
*
size
[
1
]],
dtype
=
np
.
uint8
)
ch
.
shape
=
size
# todo: old depth format twice the width
# resize all channels to match Y channel and remove self._size
res
[:,:,
c
]
=
_resize
(
ch
,
self
.
_size
)
return
res
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment