class cv::cuda::TemplateMatching

Overview

Base class for Template Matching. : Moreā€¦

#include <cudaimgproc.hpp>

class TemplateMatching: public cv::Algorithm
{
public:
    // methods

    virtual
    void
    match(
        InputArray image,
        InputArray templ,
        OutputArray result,
        Stream& stream = Stream::Null()
        ) = 0;
};

Inherited Members

public:
    // methods

    virtual
    void
    clear();

    virtual
    bool
    empty() const;

    virtual
    String
    getDefaultName() const;

    virtual
    void
    read(const FileNode& fn);

    virtual
    void
    save(const String& filename) const;

    virtual
    void
    write(FileStorage& fs) const;

    template <typename _Tp>
    static
    Ptr<_Tp>
    load(
        const String& filename,
        const String& objname = String()
        );

    template <typename _Tp>
    static
    Ptr<_Tp>
    loadFromString(
        const String& strModel,
        const String& objname = String()
        );

    template <typename _Tp>
    static
    Ptr<_Tp>
    read(const FileNode& fn);

protected:
    // methods

    void
    writeFormat(FileStorage& fs) const;

Detailed Documentation

Base class for Template Matching. :

Methods

virtual
void
match(
    InputArray image,
    InputArray templ,
    OutputArray result,
    Stream& stream = Stream::Null()
    ) = 0

Computes a proximity map for a raster template and an image where the template is searched for.

Parameters:

image Source image.
templ Template image with the size and type the same as image .
result Map containing comparison results ( CV_32FC1 ). If image is W x H and templ is w x h, then result must be W-w+1 x H-h+1.
stream Stream for the asynchronous version.