We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cafba46 commit e63c34cCopy full SHA for e63c34c
metadata.py
@@ -47,10 +47,15 @@ def appmetadata() -> AppMetadata:
47
metadata.add_parameter(
48
name="stopAt",
49
type="integer",
50
- default="2 * 60 * 60 * 30", # ~2 hours of video at 30fps
+ default=108000, # ~2 hours of video at 30fps 1 * 60 * 60 * 30
51
description="Frame number to stop running. Only works with VideoDocument input. The default is roughly 2 hours of video at 30fps.",
52
)
53
-
+ metadata.add_parameter(
54
+ name="mergeBoxes",
55
+ type="boolean",
56
+ default=False,
57
+ description="if True, creates a single merged bounding box from all detected boxes."
58
+ )
59
return metadata
60
61
0 commit comments