We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ac493 commit 4c7c448Copy full SHA for 4c7c448
src/FramePlayer.cpp
@@ -77,8 +77,9 @@ namespace rerun_vrs {
77
78
if (frameValid) {
79
// Log image to Rerun
80
- // NOTE currently we need to construct a vector to log an image, this will
81
- // change in the future, see https://github.com/rerun-io/rerun/issues/3794
+ // NOTE Rerun assumes row major ordering for Images (i.e., TensorData) without any stride.
+ // Right now we don't check this properly, and just assume that there is no extra padding
82
+ // per pixel and / or per row.
83
rec_.log(
84
add_quotes(id_.getName()).c_str(),
85
rerun::Image(
0 commit comments