kristinbranson / JAABA

Janelia Animal Behavior Detector
Other
76 stars 30 forks source link

Can't open in Ground Truth Mode #318

Closed cachitas closed 8 years ago

cachitas commented 8 years ago

Using JAABA master branch, on MATLAB 2016a.

Number of threads allocated for computation: 2
Number of threads allocated for display: 1
Starting parallel pool (parpool) using the 'local' profile ... connected to 2 workers.
Struct contents reference from a non-struct array object.

Error in JLabel>NavigateToGTSuggestion (line 7104)
[~,ord] = sortrows([ [GTSuggestions.exp]' [GTSuggestions.flies]' [GTSuggestions.start]']);

Error in JLabel>updateGTSuggestions (line 7346)
  handles = NavigateToGTSuggestion(handles,GTSuggestions);

Error in JLabel>openEverythingFileGivenFileNameAbs (line 8056)
  updateGTSuggestions(handles,figureJLabel);

Error in JLabel>openEverythingFileViaChooser (line 7884)
successfullyOpened = openEverythingFileGivenFileNameAbs(figureJLabel,fileNameAbs,groundTruthingMode);

Error in JLabel>JLabel_OpeningFcn (line 188)
          openEverythingFileViaChooser(findAncestorFigure(hObject),true);  % true means ground-truthing
          mode

Error in gui_mainfcn (line 220)
    feval(gui_State.gui_OpeningFcn, gui_hFigure, [], guidata(gui_hFigure), varargin{:});

Error in JLabel (line 37)
    gui_mainfcn(gui_State, varargin{:});

Error in StartJAABA (line 38)
JLabel('nthreads',nthreads);
mkabra commented 8 years ago

Hi Hugo,

Its fixed now.

Mayank

On Wed, Apr 13, 2016 at 7:09 PM Hugo Cachitas notifications@github.com wrote:

Using JAABA master branch, on MATLAB 2016a.

Number of threads allocated for computation: 2 Number of threads allocated for display: 1 Starting parallel pool (parpool) using the 'local' profile ... connected to 2 workers. Struct contents reference from a non-struct array object.

Error in JLabel>NavigateToGTSuggestion (line 7104) [~,ord] = sortrows([ [GTSuggestions.exp]' [GTSuggestions.flies]' [GTSuggestions.start]']);

Error in JLabel>updateGTSuggestions (line 7346) handles = NavigateToGTSuggestion(handles,GTSuggestions);

Error in JLabel>openEverythingFileGivenFileNameAbs (line 8056) updateGTSuggestions(handles,figureJLabel);

Error in JLabel>openEverythingFileViaChooser (line 7884) successfullyOpened = openEverythingFileGivenFileNameAbs(figureJLabel,fileNameAbs,groundTruthingMode);

Error in JLabel>JLabel_OpeningFcn (line 188) openEverythingFileViaChooser(findAncestorFigure(hObject),true); % true means ground-truthing mode

Error in gui_mainfcn (line 220) feval(gui_State.gui_OpeningFcn, gui_hFigure, [], guidata(gui_hFigure), varargin{:});

Error in JLabel (line 37) gui_mainfcn(gui_State, varargin{:});

Error in StartJAABA (line 38) JLabel('nthreads',nthreads);

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/kristinbranson/JAABA/issues/318

cachitas commented 8 years ago

Yes indeed, thanks!