This commit is contained in:
yair 2025-11-14 17:00:20 +02:00
parent 2699913e92
commit 4d35d16c72
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -38,5 +38,6 @@ ipch/
*.mkv *.mkv
*.raw *.raw
*.dot
gst_plugs/ gst_plugs/
results/ results/

View File

@ -3,10 +3,12 @@
real data real data
```powershell ```powershell
gst-launch-1.0 idsueyesrc config-file=ini/200fps-2456x4pix-cw.ini exposure=5 framerate=300 ` gst-launch-1.0 idsueyesrc config-file=ini/200fps-2456x4pix-cw.ini exposure=5 framerate=300 `
! videoconvert ! queue ` ! queue `
! udpsink host=127.0.0.1 port=5000 ! udpsink host=127.0.0.1 port=5000
``` ```
note: 5ms is bit too fast for us
### Python/OpenCV Receiver ### Python/OpenCV Receiver
```pwsh ```pwsh
uv run scripts/recv_raw_column.py uv run scripts/recv_raw_column.py
@ -35,4 +37,3 @@ gst-launch-1.0 -v `
videoconvert ! ` videoconvert ! `
autovideosink autovideosink
``` ```