Added createWightMaps function into FeatherBlender (stitching)

This commit is contained in:
Alexey Spizhevoy
2011-10-03 09:44:30 +00:00
parent 923f771cfc
commit 74561c5b8e
2 changed files with 37 additions and 0 deletions

View File

@@ -72,6 +72,7 @@ class CV_EXPORTS FeatherBlender : public Blender
{
public:
FeatherBlender(float sharpness = 0.02f) { setSharpness(sharpness); }
float sharpness() const { return sharpness_; }
void setSharpness(float val) { sharpness_ = val; }
@@ -79,6 +80,11 @@ public:
void feed(const Mat &img, const Mat &mask, Point tl);
void blend(Mat &dst, Mat &dst_mask);
// Creates weight maps for fixed set of source images by their masks and top-left corners.
// Final image can be obtained by simple weighting of the source images.
Rect createWeightMaps(const std::vector<Mat> &masks, const std::vector<Point> &corners,
std::vector<Mat> &weight_maps);
private:
float sharpness_;
Mat weight_map_;