Project : MareArtsStitcher
1. How to use MareArtsStitcher SDK
🦋 Example1
- push back your camera image as OpenCV Mat → std::vector< cv::Mat > frames;
- Step 1, calibration frames once for calculating camera stitching
- Step 2, stitching images and get result in loop. It's realtime processing.
- 👇 Source CODE 👇
🦋 Example2
- Different scenario than example1.cpp
- Stitching from jpeg images → std::vectorcv::Mat inputs;
- Saving calibration result and load it
- Save calibration result as "params.ymal" file → stitcher.saveCameraParams("params");
- Load calibration result file "params.ymal" → stitcher.loadCameraParams("params");
- In some case, you can save calibration result and load it and run, without calibration again.
- But, image Mat vector sequence must be same with when calibrating time.
- 👇 Source CODE 👇
🦋 Example3
- 2+ webcam realtime stitching code
- 👇 Source CODE 👇
2. How to build & run example.cpp
Ubuntu version Build & Run