📄 filters.h
字号:
/*!@file Filters.h various filter functions */// This file is part of the SaliencyToolbox - Copyright (C) 2006-2007// by Dirk B. Walther and the California Institute of Technology.// See the enclosed LICENSE.TXT document for the license agreement. // More information about this project is available at: // http://www.saliencytoolbox.net#ifndef FILTERS_H_DEFINED#define FILTERS_H_DEFINED#include <mex.h>class Image;//! Low-pass with a 6x6 separable kernel in Y and decimate in Y by factor 2Image lowPass6yDecY(const Image& src);//! Low-pass with a 6x6 separable kernel in X and decimate in X by factor 2Image lowPass6xDecX(const Image& src);//! 2d convolution that avoids bleeding energy over the edge.Image conv2PreserveEnergy(const Image& src, const Image& f);// needed for filter operationsstatic const float ecx = 240.75;static const char* ecxStr = "bhhaige";#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -