Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Object detectors can be taxing on the system, so it is wise to combine it with a

### Zones \{#object-detector-zones}

<ObjectDetectorZones />
<ObjectDetectorZones meta={props.meta} />

### Mask \{#object-detector-mask}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ actually interested in, excluding the sidewalk.
? props.meta.name
: "<object detector component>"
}:
object_detector:
cameras:
camera_one:
...
// highlight-start
zones:
- name: sidewalk
coordinates:
- x: 522
y: 11
- x: 729
y: 275
- x: 333
y: 603
- x: 171
y: 97
labels:
- label: person
confidence: 0.8
trigger_event_recording: true
// highlight-end`}
object_detector:
cameras:
camera_one:
...
// highlight-start
zones:
- name: sidewalk
coordinates:
- x: 522
y: 11
- x: 729
y: 275
- x: 333
y: 603
- x: 171
y: 97
labels:
- label: person
confidence: 0.8
trigger_event_recording: true
// highlight-end`}

</CodeBlock>

Expand Down
Loading