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
- Host: GitHub
- URL: https://github.com/gaurang-1402/nyc-pedestrian-counting
- Owner: Gaurang-1402
- Created: 2023-05-31T19:35:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-01T16:17:30.000Z (over 1 year ago)
- Last Synced: 2025-02-16T22:23:32.757Z (3 months ago)
- Language: C++
- Homepage:
- Size: 21.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

## 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
```