given two fisheye images of large FOV, shot in opposite direction, can you show me a piece of code i...

Answer: You can use the stitcher class in the OpenCV library to stitch two fisheye images. The sample code is as follows: Stitcher stitcher = Stitcher::createDefault(try_use_gpu); Mat pano; vector imgs; imgs.push_back(img1); imgs.push_back(img2); Stitcher::Status status = stitcher.stitch(imgs, pano); if (status != Stitcher::OK) { cout << "Can't stitch images, error

Guess you like

Origin blog.csdn.net/weixin_42584507/article/details/129522375