Added a test for the multi-band blender

This commit is contained in:
Alexey Spizhevoy
2012-01-30 10:31:10 +00:00
parent 3892ce1f73
commit 7ddb706b29
5 changed files with 84 additions and 3 deletions

View File

@@ -48,6 +48,7 @@
namespace cv {
namespace detail {
// Simple blender which puts one image over another
class CV_EXPORTS Blender
{
@@ -96,6 +97,7 @@ class CV_EXPORTS MultiBandBlender : public Blender
{
public:
MultiBandBlender(int try_gpu = false, int num_bands = 5);
int numBands() const { return actual_num_bands_; }
void setNumBands(int val) { actual_num_bands_ = val; }