📄 segment.h
字号:
//边缘检测
void sobel(unsigned char *imgBuf, int width, int height, int biBitCount);
void robot(unsigned char *imgBuf, int width, int height, int biBitCount);
void prewitt(unsigned char *imgBuf, int width, int height, int biBitCount);
void laplacian(unsigned char *imgBuf, int width, int height, int biBitCount);
//二值分割
void ErZhiSegment(unsigned char *imgBuf, int width, int height, int thresh);
//大津阈值分割
void autoThreshSegment(unsigned char *imgBuf, int width, int height);
//均值平滑
void meanFilter(unsigned char *imgBuf, int width, int height, int biBitCount,
int *mask, int masksize);
//中值平滑
void midFilter(unsigned char *imgBuf, int width, int height, int biBitCount,
int *mask, int masksize);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -