forked from Github/frigate
Fix float input (#14720)
This commit is contained in:
@@ -90,6 +90,7 @@ class LocalObjectDetector(ObjectDetector):
|
|||||||
|
|
||||||
if self.dtype == InputDTypeEnum.float:
|
if self.dtype == InputDTypeEnum.float:
|
||||||
tensor_input = tensor_input.astype(np.float32)
|
tensor_input = tensor_input.astype(np.float32)
|
||||||
|
tensor_input /= 255
|
||||||
|
|
||||||
return self.detect_api.detect_raw(tensor_input=tensor_input)
|
return self.detect_api.detect_raw(tensor_input=tensor_input)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user