Skip to main content

Computer Vision (CV)

Libraries

Concepts

OpenCV Tips

Bindings

Common Functions

  • Filtering:
  • Morphology:
    • Erode (腐蚀), Dilate (膨胀)
    • Open (Erode -> Dilate): Remove noise.
    • Close (Dilate -> Erode): Close holes.

Modules Guide

  • core: Basic structures, arrays, XML/YAML, OpenCL.
  • imgproc: Image processing (filtering, geometric transformations, histograms, feature detection).
  • highgui: High-level GUI (Swing-like).
  • video: Video analysis (motion estimation, background subtraction).
  • calib3d: Camera calibration, 3D reconstruction.
  • features2d: Feature detection/description (SURF, ORB).
  • objdetect: Object detection (Haar cascades, HOG).
  • ml: Machine learning.