资源简介
读取图片,用鼠标获取图片点坐标,输出坐标数据
代码片段和文件信息
function varargout = tupian(varargin)
% TUPIAN M-file for tupian.fig
% TUPIAN by itself creates a new TUPIAN or raises the existing
% singleton*.
%
% H = TUPIAN returns the handle to a new TUPIAN or the handle to
% the existing singleton*.
%
% TUPIAN(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in TUPIAN.M with the given input arguments.
%
% TUPIAN(‘Property‘‘Value‘...) creates a new TUPIAN or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before tupian_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to tupian_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 tupian
% Last Modified by GUIDE v2.5 26-Dec-2012 08:35:41
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @tupian_OpeningFcn ...
‘gui_OutputFcn‘ @tupian_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 tupian is made visible.
function tupian_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 tupian (see VARARGIN)
% Choose default command line output for tupian
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes tupian wait for user response (see UIRESUME)
% uiwait(handles.f_tupian);
% --- Outputs from this function are returned to the command line.
function varargout = tupian_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 b_left.
function b_left_Callback(hobject eventdata handles)
% hobject handle to b_left (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6159 2012-12-26 08:52 tupian.asv
文件 10311 2012-12-26 14:33 tupian.fig
文件 6755 2012-12-26 10:37 tupian.m
----------- --------- ---------- ----- ----
23225 3
- 上一篇:掌纹识别
- 下一篇:一维信号压缩还原信号
相关资源
- 一维信号压缩还原信号
- 掌纹识别
- CVRP 一个用蚁群算法做OCVRP的代码。不
- matlab拍照
- matlab读入IGS文件
- matlab的车牌定位提取
- matlab的高帽变换
- 简单的Matlab人脸识别
- 图片三维重建工具箱
- 神经网络与adaboost的强分类器
- 3D 打印技术
- 单一图像去雾
- 声纹识别
- 视频背景提取
- 图像裂纹提取
- tfristft 令x(n)=5exp(j*0.15*n*n)+6exp(
- CT图像三维体绘制
- 视频监控阴影去除
- 手写体数字识别的训练数据库
- 数字水印参考代码
- 提取瑞雷面波的频散曲线
- matlab颜色直方图算法
- retinex图像增强
- HOG 根据Dalal提出的HOG特征算法编写
- MATLAB图像去雾处理
- Bregman图像处理
- 车桥耦合振动的相关学术论文
- 帧间差分法检测运动目标
- 一维距离像(HRRP)及FFT成像对比
- knn matting 国外写的knn-matting
评论
共有 条评论