Files
frigate/docs/docs/configuration/objects.mdx
T

29 lines
968 B
Plaintext
Raw Normal View History

---
id: objects
2021-09-12 14:48:21 -05:00
title: Objects
---
import labels from "../../../labelmap.txt";
2021-11-28 23:08:27 -08:00
Frigate includes the object models listed below from the Google Coral test data.
Please note:
- `car` is listed twice because `truck` has been renamed to `car` by default. These object types are frequently confused.
- `person` is the only tracked object by default. See the [full configuration reference](https://docs.frigate.video/configuration/index#full-configuration-reference) for an example of expanding the list of tracked objects.
<ul>
{labels.split("\n").map((label) => (
<li>{label.replace(/^\d+\s+/, "")}</li>
))}
</ul>
## Custom Models
Models for both CPU and EdgeTPU (Coral) are bundled in the image. You can use your own models with volume mounts:
- CPU Model: `/cpu_model.tflite`
- EdgeTPU Model: `/edgetpu_model.tflite`
- Labels: `/labelmap.txt`
2021-09-12 14:48:21 -05:00
You also need to update the [model config](/configuration/advanced#model) if they differ from the defaults.