• Hardware Platform : dGPU
• DeepStream Version: 7.0
• TensorRT Version: 8.6.1.6
**• NVIDIA GPU Driver Version: 555.58.02 **
• Issue Type: Question
Currently, we are normalizing input of our model with this function:
def img_normalize(x):
mean = np.mean(x)
std = np.std(x)
y = (x - mean) / std
return y
Is there a way to achive this by using nvinfer net-scale-factor and mean?