fix(camera): bad img height configuration

This commit is contained in:
Cyrille Nofficial 2022-12-25 11:22:06 +01:00
parent 7ebd9093d9
commit c6f955a50c

View File

@ -100,7 +100,7 @@ def execute_from_command_line() -> None:
object_node=cam.ObjectDetectionNN(pipeline=pipeline), object_node=cam.ObjectDetectionNN(pipeline=pipeline),
camera=cam.CameraSource(pipeline=pipeline, camera=cam.CameraSource(pipeline=pipeline,
img_width=args.image_width, img_width=args.image_width,
img_height=args.image_width, img_height=args.image_height,
)) ))
def sigterm_handler(signum: int, frame: typing.Optional[ def sigterm_handler(signum: int, frame: typing.Optional[