功能: 1.图像的读取和保存。支持读取待分割图像,以及保存结果图像。
2023-03-11 13:37:27 1.41MB 分裂合并 分割 说明书
1
编程实现优化算法中的参数(阈值、种子点)的选取,重新对图像中目标进行分割,分析改进算法的优势。分析图像中目标的分割在工程上的应用。
2022-06-17 14:09:51 2MB 图像处理
主要是K 均值代码和分裂合并算法的代码,比较适合新手。
2022-05-30 01:33:36 3KB K均值算法 分裂合并算法
1
实现了图像处理中常见的一个算法,区域分裂合并
2022-05-30 01:28:38 6KB 分裂合并
1
包含毕业论文的所有文档,包含源码,基于j2se
2022-05-04 18:20:48 5.75MB 源码 文档 图像分割
1
本程序属于图像分割技术中区域分割的区域分裂合并法,具有良好的分割效果
2022-03-24 17:01:07 2KB 图像分割
1
基于分裂与合并方法的图像分割源码。 #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 ); //一致性栓检查 。。。
2021-12-23 20:13:38 475KB 图像分割 分裂合并 源码 c++
1
四叉树分裂-合并算法处理实例
2021-12-08 19:59:56 2.37MB 图像处理 课件
1
基于区域的分裂合并图像分割方法,包含三个m文件,predicate是分裂合并准则代码,split_test用于检测是否需要分裂,splitmerge用于分裂合并
2021-10-25 21:26:24 2KB 区域分裂 合并 图像分割
1
用c++实现了数字图像处理中的区域分裂-合并算法,并在图像上验证了算法的正确性,能用。
2021-07-24 10:53:33 7KB 数字图像 分裂-合并
1