getrect matlab,Matlab用getrect交互取出了图片感兴趣区域,如何调用?

本文档详细介绍了使用MATLAB进行图像处理的基本操作,包括从文件选择、读取图像到显示、滤波(如中值滤波)、灰度化以及处理按钮事件。通过SS1函数实现图形用户界面,展示了如何在GUI中交互式地选择和处理图片数据。
摘要由CSDN通过智能技术生成

非常谢谢~

我改进了一点,能在图上显示框了

不过还是无法处理出来

程序如下,不过好像要FIG才能运行,如何上传FIG啊?

function varargout = SS1(varargin)

% SS1 M-file for SS1.fig

%      SS1, by itself, creates a new SS1 or raises the existing

%      singleton*.

%

%      H = SS1 returns the handle to a new SS1 or the handle to

%      the existing singleton*.

%

%      SS1('CALLBACK',hObject,eventData,handles,...) calls the local

%      function named CALLBACK in SS1.M with the given input arguments.

%

%      SS1('Property','Value',...) creates a new SS1 or raises the

%      existing singleton*.  Starting from the left, property value pairs are

%      applied to the GUI before SS1_OpeningFunction gets called.  An

%      unrecognized property name or invalid value makes property application

%      stop.  All inputs are passed to SS1_OpeningFcn via varargin.

%

%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one

%      instance to run (singleton)".

%

% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help SS1

% Last Modified by GUIDE v2.5 10-Oct-2009 20:26:03

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;

gui_State = struct('gui_Name',       mfilename, ...

'gui_Singleton',  gui_Singleton, ...

'gui_OpeningFcn', @SS1_OpeningFcn, ...

'gui_OutputFcn',  @SS1_OutputFcn, ...

'gui_LayoutFcn',  [] , ...

'gui_Callback',   []);

if nargin && ischar(varargin{1})

gui_State.gui_Callback = str2func(varargin{1});

end

if nargout

[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});

else

gui_mainfcn(gui_State, varargin{:});

end

% End initialization code - DO NOT EDIT

% --- Executes just before SS1 is made visible.

function SS1_OpeningFcn(hObject, eventdata, handles, varargin)

% This function has no output args, see OutputFcn.

% hObject    handle to figure

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

% varargin   command line arguments to SS1 (see VARARGIN)

% Choose default command line output for SS1

handles.output = hObject;

% Update handles structure

guidata(hObject, handles);

% UIWAIT makes SS1 wait for user response (see UIRESUME)

% uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.

function varargout = SS1_OutputFcn(hObject, eventdata, handles)

% varargout  cell array for returning output args (see VARARGOUT);

% hObject    handle to figure

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure

varargout{1} = handles.output;

% --- Executes on button press in pushbutton1.

function pushbutton1_Callback(hObject, eventdata, handles)

% hObject    handle to pushbutton1 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

global filename;

global pathname;

global num;

global index;

set(handles.text1,'visible','on')

pause(0.00001);

index=1;

[filename,pathname]=uigetfile({'*.bmp;*.jpg;*.gif','(*.bmp;*.jpg;*.gif)';'*.bmp','(*.bmp)';'*.jpg','(*.jpg)';'*.gif','(*.gif)';},'¨');

if filename==0

cla;

set(handles.text1,'visible','off');

set(handles.pushbutton2, 'enable', 'off');

return;

end

A=imread([pathname,filename]);

axes(handles.axes1);

imshow(A);

oldpath=cd;

cd(pathname);

filename1=ls('*jpg');

filename2=ls('*bmp');

filename3=ls('*gif');

filename={};

if ~isempty(filename1)

filename=[filename;cellstr(filename1)];

end

if ~isempty(filename2)

filename=[filename;cellstr(filename2)];

end

if ~isempty(filename3)

filename=[filename;cellstr(filename3)];

end

num=size(filename,1);

set(handles.pushbutton2,'enable','on')

cd(oldpath);

set(handles.text1,'visible','off')

% --- Executes on button press in pushbutton2.

function pushbutton2_Callback(hObject, eventdata, handles)

% hObject    handle to pushbutton2 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

global filename;

global pathname;

global num;

global index;

set(handles.text1,'visible','on')

pause(0.00001);

index=index+1;

if index==num+1

index=1;

end

A=imread([pathname,filename{index}]);

cla

axes(handles.axes1);

imshow(A);

set(handles.text1,'visible','off')

% --- Executes on button press in pushbutton3.

function pushbutton3_Callback(hObject, eventdata, handles)

%对导入的图交互选择进行滤波

rr=getrect(gcf);

rows=round(rr(2)):round(rr(2)+rr(4)); cols=round(rr(1)):round(rr(1)+rr(3));

G=handles.axes1(rows,cols);

handles.axes1(rows,cols)=G;

G = medfilt2(handles.axes1,[6,6]);;

clf; imagesc(G); colormap(gray)

% hObject    handle to pushbutton3 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

% --- Executes on button press in pushbutton5.

function pushbutton5_Callback(hObject, eventdata, handles)

%灰度化导入的图

X=handles.axes1;

W=rgb2gray(X);

imshow(W);

% hObject    handle to pushbutton5 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值