Issue with image classification tutorial and testing with deepstream-app

@dzmitry.babrovich
Please add below parameter in your config file (config_as_primary_gie.txt)
It will solve your latest issue. Deepstream will get very good inference result against “good” class avi file too.

scaling-filter=5

“scaling-filter=5 ” means “Specifies GPU-Ignored, VIC-Nicest interpolation.”

For more info about “scaling-filter”, please refer to DeepStream Plugins 5.0
and NVIDIA DeepStream SDK API Reference: NvBufSurfTransform Types and Functions

Enumerator
NvBufSurfTransformInter_Nearest
Specifies Nearest Interpolation Method interpolation.

NvBufSurfTransformInter_Bilinear
Specifies Bilinear Interpolation Method interpolation.

NvBufSurfTransformInter_Algo1
Specifies GPU-Cubic, VIC-5 Tap interpolation.

NvBufSurfTransformInter_Algo2
Specifies GPU-Super, VIC-10 Tap interpolation.

NvBufSurfTransformInter_Algo3
Specifies GPU-Lanzos, VIC-Smart interpolation.

**NvBufSurfTransformInter_Algo4 **
Specifies GPU-Ignored, VIC-Nicest interpolation.

NvBufSurfTransformInter_Default
Specifies GPU-Nearest, VIC-Nearest interpolation.

1 Like