Stephan Schulz
Stephan Schulz
added the changes to my fork https://github.com/antimodular/ofxAudioUnit/blob/b09d380ce3396c38aa700e4d5ca2ef7c112bc15b/src/ofxAudioUnitFilePlayer.cpp#L237-L265
Thanks for the hint. This sounds pretty involved to make these changes. I guess i can pick for MonoCamera the left or right camera. They already get set in line...
Thanks @shamus333 for posting your code. It is very helpful to see how ti use mono_manip. here is my repo: https://github.com/stephanschulz/depthai_blazepose/blob/monocamera/depthai_mono/BlazeposeDepthaiEdge.py#L270 `print(f"Internal camera image size: {self.img_w} x {self.img_h} - pad_h:...
i have tested the monoCamera + tracking in the dark outside and it works OKish. It works best when using the heavy model.' But i am still not certain if...
@geaxgx thanks for the tip. Visually this still does not fix the offset between IR image and skeleton. But i guess it results in better depth data? The options seem...
I am now trying to increase the monocamera resolution, which i think is done with `mono_resolution = dai.MonoCameraProperties.SensorResolution.THE_400_P`. THE_480_P also works. But when i try the other options `mono_resolution =...
that works. obvisouly it slows down everything. with the heavy model i am now getting 3.4 fps. thanks again.
for reference here is my current project which runs fine on the OAK-D pro POE and sends out the landmark data over OSC. https://github.com/stephanschulz/depthai_blazepose/tree/main/depthai_osc ![Screen Shot 2022-08-13 at 9 43...
> What error message do you get when doing device_info = dai.DeviceInfo("10.100.0.21") self.device = dai.Device(device_info) ? ``` stephanschulz@Komputer depthai_osc % python3.8 demo_osc.py -e -v --oscIP 10.100.0.101 --oscPort 12345 Pose detection...
here in this test branch i try to first create a pipleline then start the device with the device_info https://github.com/stephanschulz/depthai_blazepose/blob/test_pipeline/depthai_osc/BlazeposeDepthaiEdge_osc.py#L109 ``` self.pipeline = dai.Pipeline() device_info = dai.DeviceInfo("10.100.0.21") self.device = dai.Device(self.pipeline,...