We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image
struct ImageFormat
See #6386 (comment) for more
archetype Image { buffer: ImageBuffer, format: ImageFormat } archetype SegmentationImage { buffer: ImageBuffer, format: ImageFormat, } archetype DepthImage { // Required: buffer: ImageBuffer, format: ImageFormat, meter: Optional<…>, colormap: Optional<…>, } component ImageFormat { datatype ImageFormat; } datatype ImageFormat { width: uint, height: uint, pixel_format: Optional<PixelFormat>, // Optional or not? color_model: Option<ColorModel>, // used if pixel_format = ARRAY datatype: Option<ChannelDatatype> // used if pixel_format = ARRAY } component enum PixelFormat { /// See `ColorModel` and `ChannelDatatype` instead ARRAY, RGB_565, RGBA_8888, NV12, YUY2, … }
The text was updated successfully, but these errors were encountered:
Mesh3D::albedo_texture
TensorData
4d3afcb
jleibs
Successfully merging a pull request may close this issue.
See #6386 (comment) for more
The text was updated successfully, but these errors were encountered: