资源简介

各种边缘检测程序,包括2Sobel算子边缘检测, Prewitt算子边缘检测,Roberts算子边缘检测, Laplace算子边缘检测,Canny算子边缘检测

资源截图

代码片段和文件信息

function color_check2 
clc;
clear;
close all;
warning off;
global edge_file1;
load edge_file1;
% %using the gui for user display..
% disp(‘enter the details in the dialog box‘);
%  prompt={‘Enter persons name:‘};
%    %prompt is an cell array..
%    dlgtitle=‘Image Directory name‘;
%    def={‘Enter the Image File name‘};
%    i1=inputdlg(promptdlgtitle1def);
%    i=i1{11};%search or cell command ..go to celldisp(i1)
%    %i=input(‘Enter the File Name in the current directory\n‘‘s‘);
%    %ALSO USE UIGETFILE .INTESTING FUNCTIONPOPS UP WINDOW TO BE USED 
%    %FOR BROWSING AND GETTING THE DESIRED FILE
%    %[FILEPATHNAME]=UIGETFILE(‘*.*‘‘UR title ON THE WINDOW TOP LEFT‘);
%    
tr=90;%input(‘Enter the THRESHOLD VALUE 1-99\n‘);
r=edge_file1;%imread(i);
figure(4)
subplot(311);
imshow(r);
pixel_color=impixel(r);
color_map=pixel_color./255;
cm=colormap(color_map);
subplot(312)

%i m using color_map to display the image color selected..only not for passing it on to the find_color function
image(cm);%if imshow function is used..its not working..!!>?
[imageindex]=find_color(r[]trpixel_color);%color_map);
%dnt use color_map variable to send it to the find_color function..
pause(1);
rehash;
subplot(313)
imshow(image);
edge_file
%figure
%imhist(r);





 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-07-26 08:57  Edge Color\
     文件       19958  2012-07-25 16:36  Edge Color\4color.jpg
     文件        3525  2012-07-25 16:36  Edge Color\a.jpg
     文件       17793  2012-07-25 16:36  Edge Color\aish.jpg
     文件        1324  2012-07-25 16:36  Edge Color\color_check2.m
     文件        1401  2012-07-25 16:36  Edge Color\color_find.m
     文件         161  2012-07-25 16:36  Edge Color\crop_image.m
     文件       15248  2012-07-25 16:36  Edge Color\edge1.fig
     文件        3854  2012-07-25 16:36  Edge Color\edge1.m
     文件         265  2012-07-25 16:36  Edge Color\edge_detection.m
     文件        3376  2012-07-25 16:36  Edge Color\find_color.m
     文件         437  2012-07-25 16:36  Edge Color\help.m
     文件         291  2012-07-25 16:36  Edge Color\histogram_file.m
     文件         503  2012-07-25 16:36  Edge Color\load_file.m
     文件      289831  2012-07-25 16:36  Edge Color\logo.jpg
     文件        1243  2012-07-25 16:36  Edge Color\ncolor.m
     文件         803  2012-07-25 16:36  Edge Color\pie_chart.m
     文件         736  2012-07-25 16:36  Edge Color\save_file.m
     文件         848  2012-07-25 16:36  Edge Color\thresh_file.m

评论

共有 条评论