Remove standardization

This commit is contained in:
Nicolas Mowen 2024-11-07 16:32:41 -07:00
parent 5de156f549
commit 800d0f6ade

View File

@ -220,10 +220,6 @@ class GenericONNXEmbedding:
# copy img image into center of result image
frame[y_center : y_center + og_h, x_center : x_center + og_w] = og
# standardize pixel values across channels
mean, std = frame.mean(), frame.std()
frame = (frame - mean) / std
frame = np.expand_dims(frame, axis=0)
return [{"input_2": frame}]
elif self.model_type == ModelTypeEnum.lpr_detect: