Spaces:
Running
Running
Commit ·
2bc2c1c
0
Parent(s):
init: PhantomEye project structure — Phase 1 setup
Browse files- .gitignore +17 -0
- api/__init__.py +0 -0
- api/main.py +0 -0
- api/routes/analytics.py +0 -0
- api/routes/detect.py +0 -0
- api/routes/reid.py +0 -0
- api/routes/track.py +0 -0
- api/websocket.py +0 -0
- config.py +0 -0
- core/__init__.py +0 -0
- core/analytics.py +0 -0
- core/detection.py +0 -0
- core/osint.py +0 -0
- core/reid.py +0 -0
- core/tracker.py +0 -0
- dashboard/README.md +0 -0
- docs/architecture.md +0 -0
- models/.gitkeep +0 -0
- notebooks/.gitkeep +0 -0
- requirements.txt +0 -0
- tests/test_detection.py +0 -0
- tests/test_tracker.py +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
*.pyo
|
| 4 |
+
.env
|
| 5 |
+
*.egg-info/
|
| 6 |
+
dist/
|
| 7 |
+
build/
|
| 8 |
+
.DS_Store
|
| 9 |
+
*.pt
|
| 10 |
+
*.pth
|
| 11 |
+
*.onnx
|
| 12 |
+
data/videos/*.mp4
|
| 13 |
+
data/videos/*.avi
|
| 14 |
+
outputs/*.mp4
|
| 15 |
+
.ipynb_checkpoints/
|
| 16 |
+
wandb/
|
| 17 |
+
*.log
|
api/__init__.py
ADDED
|
File without changes
|
api/main.py
ADDED
|
File without changes
|
api/routes/analytics.py
ADDED
|
File without changes
|
api/routes/detect.py
ADDED
|
File without changes
|
api/routes/reid.py
ADDED
|
File without changes
|
api/routes/track.py
ADDED
|
File without changes
|
api/websocket.py
ADDED
|
File without changes
|
config.py
ADDED
|
File without changes
|
core/__init__.py
ADDED
|
File without changes
|
core/analytics.py
ADDED
|
File without changes
|
core/detection.py
ADDED
|
File without changes
|
core/osint.py
ADDED
|
File without changes
|
core/reid.py
ADDED
|
File without changes
|
core/tracker.py
ADDED
|
File without changes
|
dashboard/README.md
ADDED
|
File without changes
|
docs/architecture.md
ADDED
|
File without changes
|
models/.gitkeep
ADDED
|
File without changes
|
notebooks/.gitkeep
ADDED
|
File without changes
|
requirements.txt
ADDED
|
File without changes
|
tests/test_detection.py
ADDED
|
File without changes
|
tests/test_tracker.py
ADDED
|
File without changes
|