opencv/modules/stitching
Mark Harfouche df434298b8 Exported a high level stitcher the DLL
allows Stitcher to be used for scans from within python.
I had to use very strange notation because I couldn't export the `enum`
`Mode` making the Cpython generated code unable to compile.

```c++
class Stitcher {
public:
enum Mode
    {
        PANORAMA = 0,
        SCANS = 1,
    };
...
```

Also removed duplicate code from the `createStitcher` function making
use of the `Stitcher::create` function
2018-01-24 12:43:00 -08:00
..
doc Removed Sphinx documentation files 2014-12-26 19:12:19 +03:00
include/opencv2 Exported a high level stitcher the DLL 2018-01-24 12:43:00 -08:00
misc/python Adding of user-defined type conversions for python bindings inside module directories 2016-08-16 13:10:17 +03:00
perf Implementation of bit-exact resize. Internal calls to linear resize updated to use bit-exact version. (#9468) 2017-12-13 15:00:38 +03:00
src Exported a high level stitcher the DLL 2018-01-24 12:43:00 -08:00
test add accuracy test CUDA_MultiBandBlender 2017-02-12 17:16:49 +08:00
CMakeLists.txt made flann dependency for features2d optional 2017-10-13 14:59:39 +03:00