OpenCV453
|
Base class for all blenders. [詳解]
#include <blenders.hpp>
cv::detail::FeatherBlender, cv::detail::MultiBandBlenderに継承されています。
公開型 | |
enum | { NO , FEATHER , MULTI_BAND } |
公開メンバ関数 | |
virtual CV_WRAP void | prepare (const std::vector< Point > &corners, const std::vector< Size > &sizes) |
Prepares the blender for blending. [詳解] | |
virtual CV_WRAP void | prepare (Rect dst_roi) |
virtual CV_WRAP void | feed (InputArray img, InputArray mask, Point tl) |
Processes the image. [詳解] | |
virtual CV_WRAP void | blend (CV_IN_OUT InputOutputArray dst, CV_IN_OUT InputOutputArray dst_mask) |
Blends and returns the final pano. [詳解] | |
静的公開メンバ関数 | |
static CV_WRAP Ptr< Blender > | createDefault (int type, bool try_gpu=false) |
限定公開変数類 | |
UMat | dst_ |
UMat | dst_mask_ |
Rect | dst_roi_ |
Base class for all blenders.
Simple blender which puts one image over another
|
virtual |
Blends and returns the final pano.
dst | Final pano |
dst_mask | Final pano mask |
cv::detail::MultiBandBlenderで再実装されています。
|
virtual |
Processes the image.
img | Source image |
mask | Source image mask |
tl | Source image top-left corners |
cv::detail::FeatherBlender, cv::detail::MultiBandBlenderで再実装されています。
|
virtual |
Prepares the blender for blending.
corners | Source images top-left corners |
sizes | Source image sizes |
|
virtual |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
cv::detail::FeatherBlender, cv::detail::MultiBandBlenderで再実装されています。