在MATLAB GUI中与2个数字同时交互

时间:2015-03-13 06:50:26

标签: matlab user-interface matlab-figure matlab-guide

我正在MATLAB(指南)中编写一个GUI,用户将从一系列图像中显示2个图像(两个图像并排放置在单个gui窗口中)(但每个图像都漂移了一点)并将被允许选择感兴趣的领域。

我希望用户在图像1中选择工作,同时突出显示图像2中的选定区域,以便更容易判断感兴趣的特征是否已偏离选定区域。怎么做?

我正在使用以下答案来选择并裁剪感兴趣的区域(仅供参考): crop image with fixed x/y ratio

1 个答案:

答案 0 :(得分:0)

以下是使用imrect及其addNewPositionCallback方法执行此操作的方法。检查here以获取可用方法的列表。

在下图中,我创建了2个轴。左边是原始图像,右边是“修改过的”图像。按下按钮,调用imrectaddNewPositionCallback方法执行一个名为GetROIPosition的函数,该函数用于获取由imrect定义的矩形的位置。同时,在第2轴中,绘制与第1轴相同位置的矩形。为了更加花哨,您可以使用setConstrainedPosition强制将矩形包含在给定的轴中。我会让你这样做:) 以下是包含2个屏幕截图的完整代码:

function SelectROIs(~)
%clc
clear
close all

%//=========================
%// Create GUI components

hfigure = figure('Position',[300 300 900 600],'Units','Pixels');

handles.axesIm1 = axes('Units','Pixels','Position',[30,100,400 400],'XTick',[],'YTIck',[]);
handles.axesIm2 = axes('Units','Pixels','Position',[460,100,400,400],'XTick',[],'YTIck',[]);

handles.TextaxesIm1 = uicontrol('Style','Text','Position',[190 480 110 20],'String','Original image','FontSize',14);
handles.TextaxesIm2 = uicontrol('Style','Text','Position',[620 480 110 20],'String','Modified image','FontSize',14);

%// Create pushbutton and its callback
handles.SelectROIColoring_pushbutton = uicontrol('Style','pushbutton','Position',[380 500 120 30],'String','Select ROI','FontSize',14,'Callback',@(s,e) SelectROIListCallback);

%// ================================
%/ Read image and create 2nd image by taking median filter
handles.Im = imread('coins.png');

[Height,Width,~] = size(handles.Im);
handles.ModifIm = medfilt2(handles.Im,[3 3]);

imshow(handles.Im,'InitialMagnification','fit','parent',handles.axesIm1);
imshow(handles.ModifIm,'InitialMagnification','fit','parent',handles.axesIm2);


guidata(hfigure,handles);
%%
%// Pushbutton's callback. Create a draggable rectangle in the 1st axes and
%a rectangle in the 2nd axes. Using the addNewPositionCallback method of
%imrect, you can get the position in real time and update that of the
%rectangle.

    function SelectROIListCallback(~)

        hfindROI = findobj(handles.axesIm1,'Type','imrect');
        delete(hfindROI);

        hROI = imrect(handles.axesIm1,[Width/4  Height/4 Width/2 Height/2]); % Arbitrary size for initial centered ROI.

        axes(handles.axesIm2)
        rectangle('Position',[Width/4  Height/4 Width/2 Height/2],'EdgeColor','y','LineWidth',2);

        id = addNewPositionCallback(hROI,@(s,e) GetROIPosition(hROI));

    end

%// Function to fetch current position of the moving rectangle.
    function ROIPos = GetROIPosition(hROI)

        ROIPos = round(getPosition(hROI));

        axes(handles.axesIm2)

        hRect = findobj('Type','rectangle');
        delete(hRect)
        rectangle('Position',ROIPos,'EdgeColor','y','LineWidth',2);
    end

end

按下按钮后的数字:

enter image description here

移动矩形后:

enter image description here

耶!希望有所帮助!注意,既然你正在使用GUIDE,回调的语法看起来会有所不同,但想法完全相同。