基于分裂与合并方法的图像分割源码。 #include "stdafx.h" #include <stack> struct SplitArea //分列区域 { unsigned int w; // 这一块图像的宽度 unsigned int h; // 这一块图像的高度 unsigned int left; // 相对源图像数据的偏移宽度 unsigned int top; // 相对源图像数据的偏移高度 }; void areaSplitCombine(unsigned char *srcImage, int w, int h, int* resultArray); void setAreaType( const SplitArea& splitArea,int w, int h, int* resultArray,int type ); unsigned char getMeanValue(const SplitArea& splitArea,unsigned char* srcImage, int w, int h); int getAreaType( const SplitArea& splitArea,unsigned char* srcImage, int w, int h, int* resultArray,int& type ); bool checkConformity(const SplitArea& splitArea,unsigned char* srcImage,int w,int h ); //一致性栓检查 。。。
- 1
- 粉丝: 11
- 资源: 25
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
- 1
- 2
- 3
- 4
前往页