help.m 335 B

123456789101112131415
  1. function help()
  2. %CV.HELP display help information for the OpenCV Toolbox
  3. %
  4. % Calling:
  5. % >> cv.help();
  6. %
  7. % is equivalent to calling:
  8. % >> help cv;
  9. %
  10. % It displays high-level usage information about the OpenCV toolbox
  11. % along with resources to find out more information.
  12. %
  13. % See also: cv.buildInformation
  14. help('cv');
  15. end