% 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('car1.jpg');
im1=rgb2gray(im);
im1=medfilt2(im1,[3 3]); %Median filtering the image to remove noise%
BW = edge(im1,'sobel'); %finding edges
[imx,imy]=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(B,8);% 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 17,18,19,22,27,28 to L you can extract the number plate completely.
[r,c] = find(L==17|L==18|L==19|L==22|L==27|L==28);
rc = [r c];
[sx sy]=size(rc);
n1=zeros(imx,imy);
for i=1:sx
x1=rc(i,1);
y1=rc(i,2);
n1(x1,y1)=255;
end % Storing the extracted image in an array
figure,imshow(im);
figure,imshow(im1);
figure,imshow(B);
figure,imshow(n1,[]);
Kinonoyomeo
- 粉丝: 92
- 资源: 1万+
最新资源
- 基于.net core的迷你爬虫库高分项目+详细文档+全部资料.zip
- 基于aiohttp、bloomfliter的爬虫框架,爬取所有微博用户高分项目+详细文档+全部资料.zip
- 基于CNN的海贼王人物图像多分类,包含数据集爬虫,数据集处理,模型保存,图表输出,批量测试等,通用模型模板高分项目+详细文档+全部资料.zip
- 基于Beatifulsoup的爬虫,爬取轮船航线高分项目+详细文档+全部资料.zip
- 基于httpclient的清水河畔爬虫高分项目+详细文档+全部资料.zip
- 基于Golang的分布式爬虫管理平台,支持Python、NodeJS、Go、Java、PHP等多种编程语言以及多种爬虫框架。高分项目+详细文档+全部资料.zip
- 基于Node.JS 与puppeteer的纯命令行爬虫软件,以爬取小说网站上的小说资源。高分项目+详细文档+全部资料.zip
- 基于Java爬虫的技术。该案例项目爬取京东的商品展示页面的数据。高分项目+详细文档+全部资料.zip
- 基于java httpparser实现的一个网络爬虫高分项目+详细文档+全部资料.zip
- 基于Python 3的综合性B站(哔哩哔哩弹幕网)数据爬虫。高分项目+详细文档+全部资料.zip
- 基于phpspider的PHP爬虫,爬取一个漫画网站高分项目+详细文档+全部资料.zip
- 基于python3 -先知社区小爬虫,支持关键字搜索和本地图床建立高分项目+详细文档+全部资料.zip
- Lecture 8-August 25.pptx
- 基于Python requests的人人词典数据爬虫 包含:单词、单词词性及翻译、单词发音、单词例句剧照、单词例句及翻译、单词例句发音高分项目+详细文档+全部资料.zip
- 基于Python3的微博爬虫项目,含有按关键字和时间进行微博信息搜索、微博用户资料爬取等功能高分项目+详细文档+全部资料.zip
- 基于Python的scrapy爬虫框架实现爬取招聘网站的信息到数据库高分项目+详细文档+全部资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈