You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Streamed video to your host computer is in the format RGBA32 for V4L2VideoCaptureOp in holoscan-sdk [1], meaning that video has four channels stored in 32 bits [2]. So, you might need to drop alpha channels to match the usual three channel input and this can be done definitng your destination data type e.g. "rgb888" or "rgba8888") [3]. Maybe you would to refresh your memory on color space, chroma subsampling, bit depth and more [4]
Streamed video to your host computer is in the format RGBA32 for V4L2VideoCaptureOp in holoscan-sdk [1], meaning that video has four channels stored in 32 bits [2]. So, you might need to drop alpha channels to match the usual three channel input and this can be done definitng your destination data type e.g. "rgb888" or "rgba8888") [3]. Maybe you would to refresh your memory on color space, chroma subsampling, bit depth and more [4]
[1] https://github.com/nvidia-holoscan/holoscan-sdk/blob/main/python/holoscan/operators/v4l2_video_capture/pydoc.hpp
[2] https://en.wikipedia.org/wiki/RGBA_color_model
[3] https://github.com/nvidia-holoscan/holoscan-sdk/blob/main/python/holoscan/operators/format_converter/pydoc.hpp
[4] https://video.matrox.com/en/media/guides-articles/introduction-color-spaces-video
extras
The text was updated successfully, but these errors were encountered: