liam Hi, we face the problem that we want to stitch three camera live streams and run an AI module on it. Is that possible with your library? We are using the oak-ffc-4p and the oak-ffc-6p with three arducams. Thanks for your help!
liam Hi, We have managed to create one big panorama like image as we wanted to, but now we would like to get rid of the distortion in the single images caused by the fisheye lenses before creating the panorama. How can we do that?
jakaskerl Hi liam You could use a Camera node (instead of ColorCamera node) to automatically undistort the images. Note that the node is in WIP and might cause some problems. https://docs.luxonis.com/projects/api/en/latest/references/python/#depthai.node.Camera Alternatively you can manually undistort the ColorCamera with warp node (https://docs.luxonis.com/projects/api/en/latest/components/nodes/warp/). Thanks, Jaka
liam Hi, we are currently facing the problem, that we want to record a video of our panorama picture. How can we do that?
jakaskerl Hi liam What problem are you running into? I would assume something to do with videoEncoder? Perhaps the write speed is to slow and the device closes the connections? Thanks, Jaka
liam Hi, we utilize the NeuralNetwork's multiple input feature to create a panorama picture, like in the example shown https://docs.luxonis.com/projects/api/en/latest/samples/NeuralNetwork/concat_multi_input/ But the videoEncoder cannot receive input from a NeuralNetwork
jakaskerl Hi liam Likely, this is the cause https://docs.luxonis.com/projects/api/en/latest/components/nodes/video_encoder/#limitations. You will probably need to run the encoding on host side. You can use cv2 or ffmpeg for that. Keep in mind this is likely to take up a lot of your host's resources. Thanks, Jaka