Project : MAST <MareArtsStitcher>
🎁. Download Demo SDK👇👇👇
MareArts Stitcher SDK
🔑. Get Private License Key for 1 Year Subscription and Download SDK
We will be sending your license key to your email shortly, so please enter your email. **👇👇👇**
Subscribe to MareArts RealTime Stitcher SDK
1. How to use MareArtsStitcher SDK
🦋 Example1
- Push back your camera image as an OpenCV Mat:
std::vector<cv::Mat> frames;
- Step 1: Calibrate frames once to calculate camera stitching.
- Step 2: Stitch images and get the result in a loop. This is real-time processing.
- 👇 Source CODE 👇
🦋 Example2
- This scenario is different from example1.cpp.
- Stitching from JPEG images:
std::vector<cv::Mat> inputs;
- Saving calibration results and loading them.
- Save the calibration result as a "params.yml" file:
stitcher.saveCameraParams("params");
- Load the calibration result file "params.yml":
stitcher.loadCameraParams("params");
- In some cases, you can save the calibration result and load it to run without calibrating again.
- However, the image Mat vector sequence must be the same as when calibrating.
- 👇 Source CODE 👇
🦋 Example3