•|Hardware Platform (Jetson / GPU): GPU
•|DeepStream Version: 5.0
•|TensorRT Version 7.1.3.4
•|NVIDIA GPU Driver Version (valid for GPU only) 440.33.01
•Issue Type( questions, new requirements, bugs) bug
**•How to reproduce the issue ? **
The src-crop value in nvvideoconvert is read back wrong:
g_print("src-crop (%d): %s\n", i, crop_string);
g_object_set (G_OBJECT (vidconv[i]), "src-crop", crop_string, NULL);
g_object_get (G_OBJECT (vidconv[i]), "src-crop", &ret, NULL);
g_print("src-crop: %s\n", i, ret);
Output:
src-crop (0): 0:0:960:540
src-crop: 0:540:960:540
The cropping is executed properly, though, so it’s just the read back that seems to have a bug-