资源简介
使用MATLAB的图像分割的源代码,包括M文件源代码和示例图片。
代码片段和文件信息
% This is a program for extracting objects from an image. Written for vehicle number plate segmentation and extraction
% Authors : Jeny Rajan Chandrashekar P S
% U can use attached test image for testing
% input - give the image file name as input. eg :- car3.jpg
clc;
clear all;
k=input(‘Enter the file name‘‘s‘); % input image; color image
im=imread(k);
im1=rgb2gray(im);
im1=medfilt2(im1[3 3]); %Median filtering the image to remove noise%
BW = edge(im1‘sobel‘); %finding edges
[imximy]=size(BW);
msk=[0 0 0 0 0;
0 1 1 1 0;
0 1 1 1 0;
0 1 1 1 0;
0 0 0 0 0;];
B=conv2(double(BW)double(msk)); %Smoothing image to reduce the number of connected components
L = bwlabel(B8);% Calculating connected components
mx=max(max(L))
% There will be mx connected components.Here U can give a value between 1 and mx for L or in a loop you can extract all connected components
% If you are using the attached car image by giving 171819222728 to L you can extract the number plate completely.
[rc] = find(L==17);
rc = [r c];
[sx sy]=size(rc);
n1=zeros(imximy);
for i=1:sx
x1=rc(i1);
y1=rc(i2);
n1(x1y1)=255;
end % Storing the extracted image in an array
figureimshow(im);
figureimshow(im1);
figureimshow(B);
figureimshow(n1[]);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 19554 2005-07-14 13:40 MATLAB图像分割提取算法源代码(示例车牌识别)\car3.jpg
文件 1306 2006-11-16 13:32 MATLAB图像分割提取算法源代码(示例车牌识别)\seg.m
..A.SH. 5632 2009-07-15 11:08 MATLAB图像分割提取算法源代码(示例车牌识别)\Thumbs.db
目录 0 2009-07-15 11:08 MATLAB图像分割提取算法源代码(示例车牌识别)
----------- --------- ---------- ----- ----
26492 4
- 上一篇:高频单调谐回路放大器.ms11
- 下一篇:通信信号特征参数的提取matlab代码
相关资源
- matlab车牌识别有gui
- 采用基于区域的种子区域生长方法(
- 水平集图像分割的Matlab程序代码
- MRF图像分割步骤与MATLAB程序
- 基于Matlab车牌识别系统
- 一个matlab的K均值聚类分割程序
- 基于各类算子对图像进行分割
- Meanshift图像分割matlab
- 车牌识别matlab代码
- 基于MATLAB的图像分割含GUI界面
- 完整的CV模型代码cvdemo
- Prewitt分割实现
- 模糊C均值聚类图像分割算法的matlab实
- 图像分割算法
- MATLAB-车牌识别代码打包.zip
- 基于HSI空间的图像分割算法
- pcnn脉冲耦合神经网络的图像分割
- NGC ACM图像分割
- 图割方法的图像分割
- matlab实现图像边缘检测、图像分割、
- 车牌识别小程序
- 车牌识别系统
- RSIHE RSIHE算法(Recursive sub-image histog
- MCA用于图像分割与去噪
- 交通标志图像分割
- 多阈值的OTSU算法的图像分割
- matlab实现阈值图像分割
- MATLAB车牌去雾+识别.rar
- 模板匹配算法车牌识别
- 基于区域生长的彩色图像分割算法
评论
共有 条评论