markusbr

Results 402 comments of markusbr

Which camera, which OAK device are you using? Does the camera with its sensors behave normal and works as expected, for consistency check? Which version of depthai do you use?...

Without the second component recording is working: ``` from depthai_sdk import OakCamera, RecordType with OakCamera() as oak: color = oak.create_camera('color', resolution='1080p') yolo = oak.create_nn('yolov6n_coco_640x640', input=color) #oak.record([color.out.encoded, yolo], path='./records', record_type=RecordType.VIDEO) oak.record([color],...

The xout out name of the YOLO object is "NN results". If I set it manually, it still didn't get it, and still throws `KeyError: 'NN results'`. When I, however,...

There is a loop in "depthai_sdk\record.py" to iterate over the components. Adding print()s and I can see it is iterating over both: Write a frame for Write a frame for...

`NN Results` versus `NN results`! Looks like it's hard-coded somewhere when creating the VideoWriter (and name gets replaced at runtime after calling start(), if not set manually)... Finally, I got...

(I used MS-Win11, comand-prompt (not Powershell), created a virt-env, using Python 3.12.4) (installed DepthAI with `py -m pip install depthai-sdk`) Looks like the (av-)VideoWriter instance gets created under the initial...

How have you initially installed DepthAI? From another issue like "https://github.com/luxonis/depthai/issues/1171" it looks like we are using the wrong DepthAI... I was following "https://docs-old.luxonis.com/projects/sdk/en/latest/quickstart/#installation" with `py -m pip install depthai-sdk`....

@arisha07 do you want to share the changes you made to get it working?

There is a ``` 3.019 403 Forbidden 3.019 2024-08-27 15:53:14 ERROR 403: Forbidden. ``` I see the same when trying to access "https://downloadmirror.intel.com/30258/eng/vasot.2021.3.ubuntu18.opencv.4.5.2.tar.xz". ``` AccessDenied Access Denied RMPWFAZYH3XMAVMT Doju4f2vl2msYWmsnmA0T5Wwn344ly/Kd4TSFWTd4mINYk+uj+jyq+p0ggDOJ26JPSPEblWg7C8= ```...

What operations do you mean with > Perform operations with the device ?