IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Interfaces Graphiques Discussion :

Erreur: Cell contents assignment to a non-cell array object.


Sujet :

Interfaces Graphiques

  1. #1
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    92
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2012
    Messages : 92
    Points : 49
    Points
    49
    Par défaut Erreur: Cell contents assignment to a non-cell array object.
    bonjour!
    je viens de lire la FAQ de mon erreur et je ne l'ai pas bien comprise.. du moin en ce qui concerne mon cas!
    j'ai également lu cette discussion mais c'est pas vraiment la même chose.
    pourriez-vous me dire où est exactement l'erreur dans mon code et comment régler le problème?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
     
    rrr=abs(double(i33)-double(sss));
    %--------------------------------------------------------------------------
    thresh=10;
     
    for j=1:width        
            for k=1:height
                if ((rrr(k,j)>thresh))
                 ancienstr = get(handles.listbox1,'string'); % The string as it is now.
                 ajouterstr = {get(handles.text1,'string')}; % The string to add to the stack.
                 % The order of the args to cat puts the new string either on top or bottom.
                 set(handles.listbox1,'str',{ancienstr{:},ajouterstr{:}});  % Put the new string on bottom.
                end
            end
    end
    voila les fonctions:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
     
    function timcb(hObject,eventdata,handleText)
    set(handleText,'string',datestr(now,'dd/mm/yyyy HH:MM:SS'))
     
     
    function text1_CreateFcn(hObject, eventdata, handles)
     
    monTimer = timer('TimerFcn',{@timcb hObject}, ...
                            'Period', 1.0, ...
                            'ExecutionMode','fixedRate');
    start(monTimer);
     
     
    function listbox1_Callback(hObject, eventdata, handles)
     
     
    function listbox1_CreateFcn(hObject, eventdata, handles)
     
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
    le code consiste à insérer dans la listbox l'heure et la date auxquelles la différence dépasse thresh.

  2. #2
    Modérateur

    Homme Profil pro
    Ingénieur en calculs scientifiques
    Inscrit en
    Août 2007
    Messages
    4 639
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Ingénieur en calculs scientifiques

    Informations forums :
    Inscription : Août 2007
    Messages : 4 639
    Points : 7 614
    Points
    7 614
    Par défaut
    Bonjour,

    pourrais-tu nous montrer le message d'erreur complet?

  3. #3
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    92
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2012
    Messages : 92
    Points : 49
    Points
    49
    Par défaut
    oui le voila:
    >> Go
    Cell contents reference from a non-cell array object.

    Error in Go>pushbutton1_Callback (line 139)
    set(handles.listbox1,'str',{ancienstr{:},ajouterstr{:}}); % Put the new
    string on top -OR-

    Error in gui_mainfcn (line 96)
    feval(varargin{:});

    Error in Go (line 42)
    gui_mainfcn(gui_State, varargin{:});

    Error in
    @(hObject,eventdata)Go('pushbutton1_Callback',hObject,eventdata,guidata(hObject))


    Error while evaluating uicontrol Callback

    Error while evaluating TimerFcn for timer 'timer-24'

    Invalid or deleted object.


    >>
    et voici également le code de mon interface au cas où:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
     
    function varargout = Go(varargin)
    % GO MATLAB code for Go.fig
    %      GO, by itself, creates a new GO or raises the existing
    %      singleton*.
    %
    %      H = GO returns the handle to a new GO or the handle to
    %      the existing singleton*.
    %
    %      GO('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in GO.M with the given input arguments.
    %
    %      GO('Property','Value',...) creates a new GO or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before Go_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to Go_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 Go
     
    % Last Modified by GUIDE v2.5 18-Apr-2012 08:39:38
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @Go_OpeningFcn, ...
                       'gui_OutputFcn',  @Go_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 Go is made visible.
    function Go_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 Go (see VARARGIN)
     
    % Choose default command line output for Go
     
    global fin b
    fin=0;
    b=0;
    handles.output = hObject;
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes Go wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = Go_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 pushbutton1.
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    global fin rrr width height b
     
    thresh1=10;
    vid = videoinput('winvideo');
    %--------------------------------------------------------------------------
    axes(handles.axes1);
    %pause(3);
    i1=getsnapshot(vid);
    imshow(i1);
    i11=rgb2gray(i1);
    while fin==0
    if b==0
    i2=getsnapshot(vid);
    i22=rgb2gray(i2);
    %--------------------------------------------------------------------------
    axes(handles.axes2);
    imshow(i2);
     
    i3=abs(double(i22)-double(i11));
     
    dimension= size(i3);             
    width=dimension(2);
    height=dimension(1);
     
    ttt= zeros(height, width);
    sss= zeros(height, width);
     
    for j=1:width        
            for k=1:height
                if ((i3(k,j)>thresh1))
                    ttt(k,j)=i3(k,j);
                else
                    ttt(k,j)=0;
                end
            end
    end
    i33=ttt;
    %--------------------------------------------------------------------------
    axes(handles.axes3);
    imshow(i33);   
     
    %--------------------------------------------------------------------------
    rrr=abs(double(i33)-double(sss));
     
     
    %--------------------------------------------------------------------------
    thresh2=10;
     
    for j=1:width        
            for k=1:height
                if ((rrr(k,j)>thresh2))
                 ancienstr = get(handles.listbox1,'string'); % The string as it is now.
                 ajouterstr = {get(handles.text1,'string')}; % The string to add to the stack.
                 % The order of the args to cat puts the new string either on top or bottom.
                 set(handles.listbox1,'str',{ancienstr{:},ajouterstr{:}});  % Put the new string on top -OR-
                 % set(S.ls,'str',{oldstr{:},addstr{:}});  % Put the new string on bottom.
                end
            end
    end
    %--------------------------------------------------------------------------
     
     
    end
    end
     
    function timcb(hObject,eventdata,handleText)
    set(handleText,'string',datestr(now,'dd/mm/yyyy HH:MM:SS'))
     
     
    % --- Executes during object creation, after setting all properties.
    function text1_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to text1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
    monTimer = timer('TimerFcn',{@timcb hObject}, ...
                            'Period', 1.0, ...
                            'ExecutionMode','fixedRate');
    start(monTimer);
     
     
    % --- Executes on selection change in listbox1.
    function listbox1_Callback(hObject, eventdata, handles)
    % hObject    handle to listbox1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hints: contents = cellstr(get(hObject,'String')) returns listbox1 contents as cell array
    %        contents{get(hObject,'Value')} returns selected item from listbox1
     
     
     
    % --- Executes during object creation, after setting all properties.
    function listbox1_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to listbox1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: listbox 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 when user attempts to close figure1.
    function figure1_CloseRequestFcn(hObject, eventdata, handles)
    % hObject    handle to figure1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Hint: delete(hObject) closes the figure
    global fin b
    fin=1;
    b=1;
    delete(hObject);
    voila en quoi ça consiste:
    l'interface commence lorsqu'on appuie sur le pushbutton.
    il lit la 1ère image de la webcam (axe 1) puis la compare aux images suivantes (axe 2). la différence est affichée dans l'axe 3.
    si il y a une différence (mouvement) l'heure et la date s'affiche dans la listbox.


    merci d'avance

  4. #4

  5. #5
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    92
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2012
    Messages : 92
    Points : 49
    Points
    49
    Par défaut
    bonjour!
    je l'ai déjà lu! j'ai même dit que je l'ai deja lu.. parce que je savais que tu allais m'envoyer voir la FAQ.
    mais en ce qui concerne mon code (voir plus haut), je vois pas comment corriger l'erreur.


  6. #6
    Invité
    Invité(e)
    Par défaut
    Insère un breakpoint à la ligne de ton erreur, puis regarde le contenu de tes variables, et tu comprendras vite ton erreur

Discussions similaires

  1. Réponses: 1
    Dernier message: 04/04/2011, 23h16
  2. [phpMyAdmin] [MySQL 5.1.36] et [php 5.3.0] Erreur aléatoire : Attempt to assign property of non-object
    Par alphonix dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 2
    Dernier message: 23/06/2010, 09h15
  3. erreur :Cell contents assignment to a non-cell array object.
    Par lince102 dans le forum Interfaces Graphiques
    Réponses: 5
    Dernier message: 17/12/2007, 15h09
  4. Réponses: 5
    Dernier message: 20/10/2006, 14h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo