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