| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1050 人关注过本帖
标题:有如下错误,请教
只看楼主 加入收藏
待输入
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2013-4-24
结帖率:33.33%
收藏
已结贴  问题点数:20 回复次数:8 
有如下错误,请教
MATLAB中做界面的时候
Error using ==> guihandles
H must be the handle to a figure or figure descendent.
请问是哪里错了
该怎么改啊
急用
搜索更多相关主题的帖子: figure 
2013-06-11 17:44
pauljames
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:千里冰封
威 望:9
帖 子:1555
专家分:10000
注 册:2011-5-8
收藏
得分:3 
贴代码出来,你这是报错信息,gui的句柄用错了

经常不在线不能及时回复短消息,如有c/单片机/运动控制/数据采集等方面的项目难题可加qq1921826084。
2013-06-12 08:19
clovey10000
Rank: 2
等 级:论坛游民
帖 子:30
专家分:39
注 册:2013-4-24
收藏
得分:3 
直接贴代码啊。。。
2013-06-12 12:52
蚕头燕尾
Rank: 10Rank: 10Rank: 10
来 自:Gryffindo
等 级:贵宾
威 望:12
帖 子:734
专家分:1546
注 册:2013-3-24
收藏
得分:3 
同等待matlab代码ing。。。

学习编程,为的是表达自己的思想,而不是被别人的思想所禁锢。要先明白自己想干嘛,而不要先问别人让你干嘛。               

                                                                                                                    Black Cat      Hello Tomorrow~
2013-06-12 15:34
邓士林
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:淮河河畔
等 级:贵宾
威 望:61
帖 子:2392
专家分:13384
注 册:2013-3-3
收藏
得分:3 
代码贴出来

Maybe
2013-06-12 17:17
浪漫横行
Rank: 4
等 级:业余侠客
威 望:1
帖 子:127
专家分:291
注 册:2013-4-30
收藏
得分:3 
不贴代码,还不如直接去找人翻译
2013-06-15 23:31
yctchxf
Rank: 6Rank: 6
来 自:盐城
等 级:侠之大者
威 望:2
帖 子:176
专家分:454
注 册:2012-4-10
收藏
得分:3 
以为我来错了呢 好高深啊……
2013-06-15 23:52
待输入
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2013-4-24
收藏
得分:0 
function varargout = im2bw_args(varargin)
% IM2BW_ARGS M-file for im2bw_args.fig
%      IM2BW_ARGS, by itself, creates a new IM2BW_ARGS or raises the existing
%      singleton*.
%
%      H = IM2BW_ARGS returns the handle to a new IM2BW_ARGS or the handle to
%      the existing singleton*.
%
%      IM2BW_ARGS('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in IM2BW_ARGS.M with the given input arguments.
%
%      IM2BW_ARGS('Property','Value',...) creates a new IM2BW_ARGS or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before im2bw_args_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to im2bw_args_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

% Copyright 2002-2003 The MathWorks, Inc.

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

% Last Modified by GUIDE v2.5 11-Jun-2013 09:50:16

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @im2bw_args_OpeningFcn, ...
                   'gui_OutputFcn',  @im2bw_args_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 im2bw_args is made visible.
function im2bw_args_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 im2bw_args (see VARARGIN)

% Choose default command line output for im2bw_args
handles.output=hObject ;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes im2bw_args wait for user response (see UIRESUME)
% uiwait(handles.figure_im2bw);
h_pjimage=findobj('Tag','figure_pjimage');
h_pjimage=guihandles(h_pjimage);
setappdata(handles.figure_im2bw,'h_pjimage',h_pjimage);
% --- Outputs from this function are returned to the command line.
function varargout = im2bw_args_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 slider movement.
function slider_val_Callback(hObject, eventdata, handles)
% hObject    handle to slider_val (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider


% --- Executes during object creation, after setting all properties.
val=get(hObject,'Value');
set(handles.txt_display,'String',num2str(val));
h_pjimage=getappdata(handles.figure_im2bw,'h_pjimage');
axes(h_pjimage.axes7);
image_6=getappdata(h_pjimage.figure_pjimage,'image_6');
bw=im2bw(image_6,val);
imshow(bw);
function slider_val_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider_val (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background, change
%       'usewhitebg' to 0 to use default.  See ISPC and COMPUTER.
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor',[.9 .9 .9]);
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
显示错误:
??? Error using ==> guihandles
H must be the handle to a figure or figure descendent.

Error in ==> im2bw_args>im2bw_args_OpeningFcn at 67
h_pjimage=guihandles(h_pjimage);

Error in ==> gui_mainfcn at 153
    feval(gui_State.gui_OpeningFcn, gui_hFigure, [], guidata(gui_hFigure), varargin{:});

Error in ==> im2bw_args at 45
    gui_mainfcn(gui_State, varargin{:});
2013-06-16 11:30
浮云之冰雪
Rank: 2
等 级:论坛游民
帖 子:74
专家分:89
注 册:2013-5-11
收藏
得分:3 
待我研究!

潇洒不可少!
2013-06-17 10:59
快速回复:有如下错误,请教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019034 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved