To use th OpenCV image Stitcher without the OpenCV library

364 Views Asked by At

Is it possible to use/compile the OpenCV image stitcher module as a standalone project, without having to include the entire OpenCV library? I see the stitcher module has dependencies to the OpenCV core, but, is there any other standalone variant of this stitcher module?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

Is it possible to use/compile the OpenCV image stitcher module as a standalone project, without having to include the entire OpenCV library?

You can compile only a part of OpenCV with CMake, but you always have to compile the core functionality. That is not the "entire OpenCV library" but certainly a "big" part. (You have to decide that for yourself)

I see the stitcher module has dependencies to the OpenCV core, but, is there any other standalone variant of this stitcher module?

Not in OpenCV afaik.

As @Micka pointed out in the comments you can try to pull the imagestitching functionality from the sources, if you'd really have to.