Erol444

Results 233 comments of Erol444

Demo of computing difference of 2 consecutive frames with a custom NN model can [be found here](https://github.com/luxonis/depthai-experiments/blob/master/gen2-custom-models/README.md#difference-between-2-frames). ![diff-demo](https://user-images.githubusercontent.com/18037362/185765421-3f391d9c-341a-4e5c-9f5d-3ce322347af1.gif)

Hi @s91-maker . Please have a look at [Spatial Locaton Calculator](https://docs.luxonis.com/projects/api/en/latest/samples/SpatialDetection/spatial_location_calculator/#spatial-location-calculator), which does exactly that:) Thanks, Erik

Hi @rjuliaros , I apologize for the delay. Have you checked [getting started with POE docs](https://docs.luxonis.com/projects/hardware/en/latest/pages/guides/getting-started-with-poe.html)? Another option is to specify the IP using `python depthai_demo.py -dev 169.254.1.222`. Thanks, Erik

Draft PR here: https://github.com/alan-turing-institute/distinctipy/pull/25 Head up: for our project ([depthai-sdk](https://github.com/luxonis/depthai/tree/main/depthai_sdk)) we might fork this to remove dependencies to panda/matplotlib and create a separate library, as we don't require such features...

I have now noticed I was on the old branch (develop) and that main has had a few updates. Now I see that matplotlib/pandas aren't dependencies anymore, which is perfect!...

Hi @vipulkumar-developer , Could you [provide a MRE](https://docs.luxonis.com/en/latest/pages/support/#support), please? Thanks, Erik

Hi @wuestenarchitekten , what host computer are you using? Which depthai version? Which OAK camera?

Hi @jaiminlee , You can run multiple networks at once. We have tons of such examples on [depthai-experiments repo](https://github.com/luxonis/depthai-experiments) - eg.[ age-gender demo](https://github.com/luxonis/depthai-experiments/tree/master/gen2-age-gender), or [gaze-estimation](https://github.com/luxonis/depthai-experiments/tree/master/gen2-gaze-estimation) demo. These are in python,...

Hi @jaiminlee , I apologize for the delay. Could you please [provide MRE](https://docs.luxonis.com/en/latest/pages/support/)? Thanks, Erik

Hi @bobbybrownieu , You can either use [YoloDetectionNetwork node](https://docs.luxonis.com/projects/api/en/latest/components/nodes/yolo_detection_network/) which does the NMS on the device, or use a layer (inside your NN model) which does the same, see img...