Check syntax of stitchnig detailed

This commit is contained in:
LaurentBerger
2019-01-04 21:23:51 +01:00
parent 79e13be04c
commit 49a43dfc8f
9 changed files with 104 additions and 31 deletions
@@ -73,7 +73,7 @@ public:
@param corners Source images top-left corners
@param sizes Source image sizes
*/
CV_WRAP void prepare(const std::vector<Point> &corners, const std::vector<Size> &sizes);
CV_WRAP virtual void prepare(const std::vector<Point> &corners, const std::vector<Size> &sizes);
/** @overload */
CV_WRAP virtual void prepare(Rect dst_roi);
/** @brief Processes the image.
@@ -120,6 +120,8 @@ final transformation for each camera.
*/
class CV_EXPORTS_W AffineBasedEstimator : public Estimator
{
public:
CV_WRAP AffineBasedEstimator(){}
private:
virtual bool estimate(const std::vector<ImageFeatures> &features,
const std::vector<MatchesInfo> &pairwise_matches,
-2
View File
@@ -133,7 +133,6 @@ void Blender::blend(InputOutputArray dst, InputOutputArray dst_mask)
dst_mask_.release();
}
void FeatherBlender::prepare(Rect dst_roi)
{
Blender::prepare(dst_roi);
@@ -231,7 +230,6 @@ MultiBandBlender::MultiBandBlender(int try_gpu, int num_bands, int weight_type)
weight_type_ = weight_type;
}
void MultiBandBlender::prepare(Rect dst_roi)
{
dst_roi_final_ = dst_roi;