This commit is contained in:
Alex Thiele 2025-04-08 23:08:18 +03:00 committed by GitHub
commit 6c89cbf730
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -512,13 +512,13 @@ if __name__ == "__main__":
) )
parser.add_argument( parser.add_argument(
"--width", "--width",
type=str, type=int,
default=640, default=640,
help="Set the width for all cameras. If not provided, use the default width of each camera.", help="Set the width for all cameras. If not provided, use the default width of each camera.",
) )
parser.add_argument( parser.add_argument(
"--height", "--height",
type=str, type=int,
default=480, default=480,
help="Set the height for all cameras. If not provided, use the default height of each camera.", help="Set the height for all cameras. If not provided, use the default height of each camera.",
) )

View File

@ -492,13 +492,13 @@ if __name__ == "__main__":
) )
parser.add_argument( parser.add_argument(
"--width", "--width",
type=str, type=int,
default=None, default=None,
help="Set the width for all cameras. If not provided, use the default width of each camera.", help="Set the width for all cameras. If not provided, use the default width of each camera.",
) )
parser.add_argument( parser.add_argument(
"--height", "--height",
type=str, type=int,
default=None, default=None,
help="Set the height for all cameras. If not provided, use the default height of each camera.", help="Set the height for all cameras. If not provided, use the default height of each camera.",
) )