operations.h
来自「A paper that I presented on Supervisory 」· C头文件 代码 · 共 47 行
H
47 行
/*!
*
*
* sharat@mit.edu
*/
#ifndef __oper_h__
#define __oper_h__
#include "image.h"
#include "filter.h"
#include <functional>
/*!
@class conv
@abstract functor
*/
class conv2d
{
public:
image operator()(const image&, const filter & filt);
};
/*!
@class xcorr
@abstract functor that performs normalized cross correlation
*/
class xcorr2d
{
public:
image operator() (const image& img,const filter & filt);
};
class dist2d
{
public:
image operator() (const image& img,const filter & filt);
};
/*!
*/
class hmax
{
public:
image operator()(const image& img,const int pool,const int shift);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?