2021-03-08 07:51:09 -08:00
---
id : objects
2024-01-30 06:14:16 -06:00
title : Available Objects
2021-03-08 07:51:09 -08:00
---
2021-07-07 22:57:19 -05:00
import labels from "../../../labelmap.txt";
2021-03-08 07:51:09 -08:00
2024-10-12 06:13:00 -06:00
Frigate includes the object labels listed below from the Google Coral test data.
2021-11-28 23:08:27 -08:00
2024-01-30 06:14:16 -06:00
Please note:
- `car` is listed twice because `truck` has been renamed to `car` by default. These object types are frequently confused.
2024-02-12 15:38:55 -08:00
- `person` is the only tracked object by default. See the [full configuration reference ](reference.md ) for an example of expanding the list of tracked objects.
2021-03-08 07:51:09 -08:00
<ul>
2021-07-07 22:57:19 -05:00
{labels.split("\n").map((label) => (
<li>{label.replace(/^\d+\s+/, "")}</li>
2021-03-08 07:51:09 -08:00
))}
</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`
2022-12-18 00:57:18 +01:00
You also need to update the [model config ](advanced.md#model ) if they differ from the defaults.