Skip to content
Snippets Groups Projects
Commit e41bf418 authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

document depth HEVC format

parent 2f2c1ce1
No related branches found
No related tags found
2 merge requests!214feature/python,!208Python: HEVC depth decoding
Pipeline #17750 passed
......@@ -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:
......
......@@ -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
......
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