Alessio Mauro Franchi

Results 25 comments of Alessio Mauro Franchi

> Hi @f-alemauro , Could you also try a solution [described here](https://discuss.luxonis.com/d/308-can-two-oak-ds-be-used-on-one-raspberry-pi4/4)? If I get it correctly, I should set the USB-C port to host mode and connect my oak-1...

I'm trying that, but I cannot get it working. This is the current setup ![photo_2022-07-12_14-16-16](https://user-images.githubusercontent.com/7021922/178487761-b59a6830-220e-4276-9d92-8d8fa973f076.jpg) Am I doing something wrong?

I may not have been clear, sorry. I was trying to follow this suggestion > Hi @f-alemauro , Could you also try a solution [described here](https://discuss.luxonis.com/d/308-can-two-oak-ds-be-used-on-one-raspberry-pi4/4)? and so I issued...

Great, thank, I'll definitely try it! I'll let you know

So, tried with that deptahi version `python3 -mpip install depthai==2.13.2.0.dev0+87552f67f0820a6eef058550af2c27724795fefe --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/` and the code I posted now works. No more image manipulation error appears. To test it thoroughly I...

Ok, with depthai==2.13.3.0 it does not freeze anymore. But... unfortunately it makes the previous error happen again (Processing failed, potentially unsupported config) So now we have: TEST A (the first...

Here they are, TEST_A and TEST_B [TESTS.zip](https://github.com/luxonis/depthai-python/files/7783737/TESTS.zip) Please let me know if I can help you debugging or testing or whatsoever ;)

I tried also with depthai == 2.14.1.0 and depthai == 2.14.0.0, unfortunately the problem is not solved. Would be really cool if you could share some of the imagemanip code...

Here is a little update: splitting the script like this ``` cropxmin = 0.782648096357299 cropymin = 0.06242045680856734 cropxmax = 0.8577302398367053 cropymax = 0.092376426825723 while True: try: frame = node.io['frame'].get() node.warn("Face...

Thank you @Luxonis-Brandon Here is a little update: if I add a simple resize like this `cfg.setResize(widht, height)` to the script performing the cropping, the cropping stops being buggy. Here...