Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: RZ_A2M_Mbed_samples
Image processing
Data Structures | |
| class | GeneralizedHough |
| finds arbitrary template in the grayscale image using Generalized Hough Transform More... | |
| class | GeneralizedHoughBallard |
| Ballard, D.H. More... | |
| class | GeneralizedHoughGuil |
| Guil, N., González-Linares, J.M. More... | |
Modules | |
| Image Filtering | |
Functions and classes described in this section are used to perform various linear or non-linear filtering operations on 2D images (represented as Mat's). | |
| Geometric Image Transformations | |
The functions in this section perform various geometrical transformations of 2D images. | |
| Miscellaneous Image Transformations | |
| Drawing Functions | |
Drawing functions work with matrices/images of arbitrary depth. | |
| ColorMaps in OpenCV | |
The human perception isn't built for observing fine changes in grayscale images. | |
| Planar Subdivision | |
The Subdiv2D class described in this section is used to perform various planar subdivision on a set of 2D points (represented as vector of Point2f). | |
| Histograms | |
| Structural Analysis and Shape Descriptors | |
| Motion Analysis and Object Tracking | |
| Feature Detection | |
| Object Detection | |
| C API | |
| Hardware Acceleration Layer | |
Enumerations | |
| enum | HoughModes { HOUGH_STANDARD = 0, HOUGH_PROBABILISTIC = 1, HOUGH_MULTI_SCALE = 2, HOUGH_GRADIENT = 3 } |
Variants of a Hough transform. More... | |
Functions | |
| CV_EXPORTS Ptr < GeneralizedHoughBallard > | createGeneralizedHoughBallard () |
| Ballard, D.H. | |
| CV_EXPORTS Ptr < GeneralizedHoughGuil > | createGeneralizedHoughGuil () |
| Guil, N., González-Linares, J.M. | |
| CV_EXPORTS void | blendLinear (InputArray src1, InputArray src2, InputArray weights1, InputArray weights2, OutputArray dst) |
| Performs linear blending of two images. | |
Enumeration Type Documentation
| enum HoughModes |
Variants of a Hough transform.
- Enumerator:
Definition at line 458 of file imgproc.hpp.
Function Documentation
| CV_EXPORTS void cv::blendLinear | ( | InputArray | src1, |
| InputArray | src2, | ||
| InputArray | weights1, | ||
| InputArray | weights2, | ||
| OutputArray | dst | ||
| ) |
Performs linear blending of two images.
| CV_EXPORTS Ptr<GeneralizedHoughBallard> cv::createGeneralizedHoughBallard | ( | ) |
Ballard, D.H.
(1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122. Detects position only without traslation and rotation
| CV_EXPORTS Ptr<GeneralizedHoughGuil> cv::createGeneralizedHoughGuil | ( | ) |
Guil, N., González-Linares, J.M.
and Zapata, E.L. (1999). Bidimensional shape detection using an invariant approach. Pattern Recognition 32 (6): 1025-1038. Detects position, traslation and rotation
Generated on Tue Jul 12 2022 18:20:21 by
1.7.2
, where
is a distance between (0,0) point and the line, and
is the angle between x-axis and the normal to the line. Thus, the matrix must be (the created sequence will be) of CV_32FC2 type