postprocess.h

来自「动态场景中运动目标检测提取与跟踪 对新手很有用」· C头文件 代码 · 共 10 行

H
10
字号
#ifndef POSTPROCESS_H
#define POSTPROCESS_H
#include "cv.h"
void meanFilter(IplImage* source);//, IplImage destination);
void SmoothFilter(IplImage* source);//, IplImage destination);
//去阴影,orig 为原图像,back为背景图像,bina为二值图像,即mask
//此函数返回去除阴影后的bina
bool shadowElimination(IplImage* orig, IplImage* back, IplImage* bina);//

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?