Skip to content

Commit

Permalink
changed the help file
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://z820/home/svnroot/FishTracker@125 e66550d1-145b-42a1-9778-e81285e233c0
  • Loading branch information
malte committed Mar 15, 2016
1 parent a8f1173 commit 6bdd716
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions @FishTracker/FishTracker.m
Original file line number Diff line number Diff line change
Expand Up @@ -2093,7 +2093,8 @@ function checkVideoHandler(self)
end

parseInputs;
if HELP; return;end
self = self@handle();
if HELP;return;end


%%options not really important
Expand Down Expand Up @@ -2219,7 +2220,7 @@ function checkVideoHandler(self)
end

% construct object
self = self@handle();


self.opts = opts;
self.setProps();
Expand All @@ -2228,6 +2229,13 @@ function checkVideoHandler(self)
end


function disp(self)
if isempty(self.videoHandler)
fprintf('Empty FishTracker Object\n\n');
else
disp@handle(self);
end
end


function trackStep(self)
Expand Down

0 comments on commit 6bdd716

Please sign in to comment.