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
"The number of channels should be either 1 or 3, found {}",
channels
),
_ => panic!("The image normalization proc block only supports outputs of the form [frames, rows, columns, channels], found {:?}",dimensions),
}
The first arm needs to be changed to [_, _, _, 3] | [_, _, _, 1] => {} when we go through and migrate the image-normalization proc-block to the new Rune ABI.
I connected grey-scale image source to image normalisation module.
The output from image source is
u8[1, 31, 200, 1]
Image normalisation logs out an error: "the number of channels should be either 1 or 3, found 1"
The text was updated successfully, but these errors were encountered: