资源简介
完整的图像处理程序,完成基本的图像处理功能,如,各种二值化算法的实现,图像边缘检测,图像分割,降噪等。其中有车牌识别实例。
代码片段和文件信息
% Discription: threshold the image accoring to the threshold value
% Input:
% im: the orginal image
% the threshhold value can be given following the image matrixotherwise
% it will be the default value which is the avarage value of the matrix
% Output:
% binary images
function binaryImage=basic_thresholding(imvarargin)
if nargin<2
thresholdValue=mean2(im);
else
thresholdValue=varargin{1};
end
im(find(im im(find(im>=thresholdValue))=1;
binaryImage=im;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-01-30 15:32 Programs\
文件 521 2012-11-21 16:21 Programs\basic_thresholding.m
文件 4232 2012-08-14 10:50 Programs\charact1.txt
文件 9270 2012-08-14 10:50 Programs\charact2.bmp
文件 726716 2012-08-14 10:49 Programs\charact3.bmp
文件 1946 2012-11-21 16:06 Programs\compLabeling.m
文件 691 2012-11-21 16:21 Programs\cumHist.m
文件 756 2012-11-21 16:21 Programs\equal_length.m
文件 749 2012-11-21 16:20 Programs\equal_width.m
文件 1731 2012-11-21 16:23 Programs\labeling_segment.m
文件 10505 2013-01-30 15:32 Programs\mainProgram.m
文件 233 2012-11-21 16:18 Programs\myRotation.m
文件 773 2012-11-21 16:17 Programs\optim_thresholding.m
文件 1168 2012-11-21 16:17 Programs\otsu_thresholding.m
文件 508 2012-11-21 16:16 Programs\outline_determining.m
文件 555 2012-11-21 16:14 Programs\pTile_thresholding.m
文件 2978 2012-11-21 16:15 Programs\projection_segment.m
文件 289 2012-11-21 17:02 Programs\readme.txt
文件 85 2012-11-22 11:16 Programs\testing.m
文件 404 2012-11-21 16:14 Programs\zeros_eliminate.m
- 上一篇:男语音数据库
- 下一篇:神经网络与adaboost的强分类器
相关资源
- BP Match 基于置信传播的立体匹配算法
- 高频数据处理算法
- matlab颜色直方图算法
- 遗传算法的基本理
- HOG 根据Dalal提出的HOG特征算法编写
- 覆盖算法
- 图像超分辨率重建
- 计算本质矩阵和基本矩阵
- 低频融合策略的小波图像融合算法
- 基于sift算法的图像拼接
- 基于遗传算法的配送中心选址
- svdd svdd算法工具箱
- RSIHE RSIHE算法(Recursive sub-image histog
- 社交网络的k-clique算法
- BM3D算法
- DIP 包含二值化、canny算子边缘检测、
- 多目标粒子群算法
- 萤火虫算法寻找图像阈值分割的最优
- 帝国竞争算法资料
- surf算法对图像的配准实时的取证
- 非局部均值图像去噪的原始算法
- renconfiguration 含分布式电源的配网重构
- 遗传-偏最小二乘回归算法
- intelligent algorithm 智能算法
- 丁采样算法
- 功率倒置算法的LMS实现
- KSVD 新型的图像去噪方法
- 30个MATLAB神经网络的案例
- 免疫粒子群优化算法整定自抗扰控制
- 麦克风阵列的定位算法
评论
共有 条评论