代码拉取完成,页面将自动刷新
function varargout = Threshold_Segment(varargin)
% THRESHOLD_SEGMENT MATLAB code for Threshold_Segment.fig
% THRESHOLD_SEGMENT, by itself, creates a new THRESHOLD_SEGMENT or raises the existing
% singleton*.
%
% H = THRESHOLD_SEGMENT returns the handle to a new THRESHOLD_SEGMENT or the handle to
% the existing singleton*.
%
% THRESHOLD_SEGMENT('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in THRESHOLD_SEGMENT.M with the given input arguments.
%
% THRESHOLD_SEGMENT('Property','Value',...) creates a new THRESHOLD_SEGMENT or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before Threshold_Segment_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Threshold_Segment_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 Threshold_Segment
% Last Modified by GUIDE v2.5 10-May-2015 22:23:44
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Threshold_Segment_OpeningFcn, ...
'gui_OutputFcn', @Threshold_Segment_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 Threshold_Segment is made visible.
function Threshold_Segment_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 Threshold_Segment (see VARARGIN)
% Choose default command line output for Threshold_Segment
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes Threshold_Segment wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = Threshold_Segment_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;
function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in Set_Butoon.
function Set_Butoon_Callback(hObject, eventdata, handles)
% hObject handle to Set_Butoon (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
threshold=str2num(get(handles.edit1,'string'));
global Current_Image;
global Original_Image;
global Treated_Image;
global RGB_Flag;
Saved_Num=size(Original_Image,2);
if isempty(Current_Image)
Current_Image=Original_Image{1,Saved_Num};
end
if RGB_Flag==3
temp_Img= rgb2gray(Current_Image);
else
temp_Img=Current_Image;
end
Treated_Image=im2bw(temp_Img,threshold/255);
figure('NumberTitle', 'off', 'Name', 'ͼ','Tag','Treated_Image_Fig');
imshow(Treated_Image);
hold on;
% --- Executes on button press in Set_Defult_Button.
function Set_Defult_Button_Callback(hObject, eventdata, handles)
% hObject handle to Set_Defult_Button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.edit1,'string','0');
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。