【文件属性】:
文件名称:基于分裂与合并方法的图像分割源码
文件大小:475KB
文件格式:RAR
更新时间:2014-07-11 17:10:37
图像分割 分裂合并 源码 c++
基于分裂与合并方法的图像分割源码。
#include "stdafx.h"
#include
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 ); //一致性栓检查
。。。
【文件预览】:
Split2
----Split2.sln(883B)
----Split2()
--------stdafx.h(376B)
--------Split2.cpp(6KB)
--------Split2.vcproj(4KB)
--------Split2.vcproj.20091022-0928.Administrator.user(1KB)
--------Debug()
--------stdafx.cpp(293B)
--------ReadMe.txt(1KB)
----Split2.suo(10KB)
----Split2.ncb(827KB)