An open API service indexing awesome lists of open source software.

https://github.com/gaurang-1402/nyc-pedestrian-counting

👁️Low power computer vision
https://github.com/gaurang-1402/nyc-pedestrian-counting

Last synced: 10 days ago
JSON representation

👁️Low power computer vision

Awesome Lists containing this project

README

        

# NY-Pedestrian-Detection

Some of the code is adapted and modified from: https://github.com/limengdu/SeeedStudio-XIAO-ESP32S3-Sense-camera

## Architecture

![Copy of LPCV research diagram](https://github.com/Gaurang-1402/NYC-Pedestrian-Counting/assets/71042887/be166562-7030-4120-8ae2-9c8b36536c43)

## Important commands

```
get_idf
```

Windows

```
.\esptool.exe --chip esp32s3 --no-stub --port COM6 --baud 460800 --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader.bin 0x8000 partition-table.bin 0x10000 yolo.bin
```

Linux
```
esptool --chip auto --no-stub --port /dev/ttyACM0 --baud 460800 --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader.bin 0x8000 partition-table.bin 0x10000 yolo.bin
```

```
idf.py flash -b 460800 monitor
```