资源简介
用matlabGUI界面写的体绘制的三维重建,用了很多种方法,因为本身也是小白,所以注释学的很详细,压缩包里两个文件一起打开就可以使用了,但是你需要有原始图片哦,这里因为保密就不提供数据了
代码片段和文件信息
function varargout = work(varargin)
% WORK MATLAB code for work.fig
% WORK by itself creates a new WORK or raises the existing
% singleton*.
%
% H = WORK returns the handle to a new WORK or the handle to
% the existing singleton*.
%
% WORK(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in WORK.M with the given input arguments.
%
% WORK(‘Property‘‘Value‘...) creates a new WORK or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before work_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to work_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 work
% Last Modified by GUIDE v2.5 06-Jan-2018 21:12:42
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @work_OpeningFcn ...
‘gui_OutputFcn‘ @work_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
% End initialization code - DO NOT EDIT
% --- Executes just before work is made visible.
function work_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 work (see VARARGIN)
% Choose default command line output for work
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes work wait for user response (see UIRESUME)
% uiwait(handles.figure1);
end
% --- Outputs from this function are returned to the command line.
function varargout = work_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;
end
% --- Executes on button press in origi_image.
function origi_image_Callback(hobject eventdata handles)
% hobject handle to origi_image (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 34100 2018-01-06 21:12 三维重建\work.fig
文件 12048 2018-01-06 21:12 三维重建\work.m
目录 0 2018-02-07 11:50 三维重建
----------- --------- ---------- ----- ----
46148 3
- 上一篇:脉冲响应模型辨识 matlab
- 下一篇:matlab nasch双车道模型
评论
共有 条评论