mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
335 B
16 lines
335 B
12 years ago
|
function help()
|
||
|
%CV.HELP display help information for the OpenCV Toolbox
|
||
|
%
|
||
|
% Calling:
|
||
|
% >> cv.help();
|
||
|
%
|
||
|
% is equivalent to calling:
|
||
|
% >> help cv;
|
||
|
%
|
||
|
% It displays high-level usage information about the OpenCV toolbox
|
||
|
% along with resources to find out more information.
|
||
|
%
|
||
|
% See also: cv.buildInformation
|
||
|
help('cv');
|
||
|
end
|