espressif/cat_detect

0.2.1

Latest
uploaded 1 hour ago
cat detect model.

readme

# Cat Detection Models

## Model list
[supported]: https://img.shields.io/badge/-supported-green "supported"
[no support]: https://img.shields.io/badge/-no_support-red "no support"

| Chip     | ESPDET_PICO_224_224_CAT | ESPDET_PICO_416_416_CAT | 
|----------|-------------------------|-------------------------|
| ESP32-S3 | ![alt text][supported]  | ![alt text][supported]  | 
| ESP32-P4 | ![alt text][supported]  | ![alt text][supported]  | 

## Model Latency

| name                          | input(h*w*c)  | preprocess(ms) | model(ms) | postprocess(ms) | mAP50-95 on COCO2017 cat |
| ------------------------------- | --------------- | ---------------- | ----------- | ----------------- | -------------------------- |
|  espdet_pico_224_224_cat_s8_s3 |  224 * 224 * 3 | 8.2 | 123.4 | 1.0 |  0.654 |
|  espdet_pico_416_416_cat_s8_s3 |  416 * 416 * 3 | 23.9 | 438.2 | 1.0 |  0.695 |
|  espdet_pico_224_224_cat_s8_p4 |  224 * 224 * 3 | 3.4 | 50.4 | 0.5 |  0.668 |
|  espdet_pico_416_416_cat_s8_p4 |  416 * 416 * 3 | 8.9 | 199.2 | 0.5 |  0.734 |

## Model Usage

``CatDetect`` accepts a ``CatDetect::model_type_t`` parameter. It has a default value determined by [default model](#default-model) option in menuconfig.

### How to New `CatDetect`

#### Only One Model

```cpp
CatDetect *detect = new CatDetect();
```

#### Multiple Models

```cpp
// use ESPDET_PICO_224_224_CAT
CatDetect *detect = new CatDetect(CatDetect::ESPDET_PICO_224_224_CAT);
// use ESPDET_PICO_416_416_CAT
// CatDetect *detect = new CatDetect(CatDetect::ESPDET_PICO_416_416_CAT);
```
> [!NOTE] 
> If multiple models is flashed or stored in sdcard, in addition to the default model, you can pass an explicit parameter to ``CatDetect`` to use one of them.

### How to Detect

```cpp
dl::image::img_t img = {.data=DATA, .width=WIDTH, .height=HEIGHT, .pix_type=PIX_TYPE};
std::list<dl::detect::result_t> &res = detect->run(img);
```

More details, see [`dl::image::img_t`](https://github.com/espressif/esp-dl/blob/master/esp-dl/vision/image/dl_image_define.hpp) and [`dl::detect::result_t`](https://github.com/espressif/esp-dl/blob/master/esp-dl/vision/detect/dl_detect_define.hpp).

# Configurable Options in Menuconfig

See [Kconfig](Kconfig).

## Model to Flash

- CONFIG_FLASH_ESPDET_PICO_224_224_CAT
- CONFIG_FLASH_ESPDET_PICO_416_416_CAT

Whether to flash the model when model location is set to FLASH rodata or FLASH partition.

## Default Model

- CONFIG_ESPDET_PICO_224_224_CAT
- CONFIG_ESPDET_PICO_416_416_CAT

Default model to use if no parameter is passed to ``CatDetect``.

## Model Location

- CONFIG_CAT_DETECT_MODEL_IN_FLASH_RODATA
- CONFIG_CAT_DETECT_MODEL_IN_FLASH_PARTITION
- CONFIG_CAT_DETECT_MODEL_IN_SDCARD

This component supports to [load model](https://docs.espressif.com/projects/esp-dl/en/latest/tutorials/how_to_load_test_profile_model.html) from three different locations.

> [!NOTE]
> - If model location is set to FLASH partition, `partition.csv` must contain a partition named `cat_det`, and the partition should be big enough to hold the model file.

## SDCard Directory

- CONFIG_CAT_DETECT_MODEL_SDCARD_DIR

When model locates in sdcard, you can change the model directory relative to the sdcard mount point.   

The default value of this option is `models/s3` for ESP32S3 and `models/p4` for ESP32P4. 
When using default value, just copy [models](models) folder to sdcard root directory.

> [!NOTE] 
> Do not change the model name when copy the models to sdcard.

Links

Supports all targets

License: MIT

To add this component to your project, run:

idf.py add-dependency "espressif/cat_detect^0.2.1"

download archive

Stats

  • Archive size
    Archive size ~ 1.15 MB
  • Downloaded in total
    Downloaded in total 127 times
  • Downloaded this version
    This version: 0 times

Badge

espressif/cat_detect version: 0.2.1
|