OpenCV  3.1.0
Open Source Computer Vision
Modules | Classes | Enumerations | Functions
Image processing

Modules

 Image Filtering
 
 Geometric Image Transformations
 
 Miscellaneous Image Transformations
 
 Drawing Functions
 
 ColorMaps in OpenCV
 
 Histograms
 
 Structural Analysis and Shape Descriptors
 
 Motion Analysis and Object Tracking
 
 Feature Detection
 
 Object Detection
 
 C API
 

Classes

class  cv::CLAHE
 
class  cv::GeneralizedHough
 finds arbitrary template in the grayscale image using Generalized Hough Transform More...
 
class  cv::GeneralizedHoughBallard
 
class  cv::GeneralizedHoughGuil
 
struct  cv::Subdiv2D::QuadEdge
 
class  cv::Subdiv2D
 
struct  cv::Subdiv2D::Vertex
 

Enumerations

enum  {
  cv::Subdiv2D::NEXT_AROUND_ORG = 0x00,
  cv::Subdiv2D::NEXT_AROUND_DST = 0x22,
  cv::Subdiv2D::PREV_AROUND_ORG = 0x11,
  cv::Subdiv2D::PREV_AROUND_DST = 0x33,
  cv::Subdiv2D::NEXT_AROUND_LEFT = 0x13,
  cv::Subdiv2D::NEXT_AROUND_RIGHT = 0x31,
  cv::Subdiv2D::PREV_AROUND_LEFT = 0x20,
  cv::Subdiv2D::PREV_AROUND_RIGHT = 0x02
}
 
enum  {
  cv::Subdiv2D::PTLOC_ERROR = -2,
  cv::Subdiv2D::PTLOC_OUTSIDE_RECT = -1,
  cv::Subdiv2D::PTLOC_INSIDE = 0,
  cv::Subdiv2D::PTLOC_VERTEX = 1,
  cv::Subdiv2D::PTLOC_ON_EDGE = 2
}
 
enum  cv::HoughModes {
  cv::HOUGH_STANDARD = 0,
  cv::HOUGH_PROBABILISTIC = 1,
  cv::HOUGH_MULTI_SCALE = 2,
  cv::HOUGH_GRADIENT = 3
}
 Variants of a Hough transform. More...
 

Functions

void cv::blendLinear (InputArray src1, InputArray src2, InputArray weights1, InputArray weights2, OutputArray dst)
 Performs linear blending of two images. More...
 
Ptr< CLAHE > cv::createCLAHE (double clipLimit=40.0, Size tileGridSize=Size(8, 8))
 
Ptr< GeneralizedHoughBallard > cv::createGeneralizedHoughBallard ()
 
Ptr< GeneralizedHoughGuil > cv::createGeneralizedHoughGuil ()
 
void cv::demosaicing (InputArray _src, OutputArray _dst, int code, int dcn=0)
 

Detailed Description

Enumeration Type Documentation

anonymous enum
Enumerator
NEXT_AROUND_ORG 
NEXT_AROUND_DST 
PREV_AROUND_ORG 
PREV_AROUND_DST 
NEXT_AROUND_LEFT 
NEXT_AROUND_RIGHT 
PREV_AROUND_LEFT 
PREV_AROUND_RIGHT 
anonymous enum
Enumerator
PTLOC_ERROR 
PTLOC_OUTSIDE_RECT 
PTLOC_INSIDE 
PTLOC_VERTEX 
PTLOC_ON_EDGE 

Variants of a Hough transform.

Enumerator
HOUGH_STANDARD 

classical or standard Hough transform. Every line is represented by two floating-point numbers \((\rho, \theta)\) , where \(\rho\) is a distance between (0,0) point and the line, and \(\theta\) 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

HOUGH_PROBABILISTIC 

probabilistic Hough transform (more efficient in case if the picture contains a few long linear segments). It returns line segments rather than the whole line. Each segment is represented by starting and ending points, and the matrix must be (the created sequence will be) of the CV_32SC4 type.

HOUGH_MULTI_SCALE 

multi-scale variant of the classical Hough transform. The lines are encoded the same way as HOUGH_STANDARD.

HOUGH_GRADIENT 

basically 21HT, described in [157]

Function Documentation

void cv::blendLinear ( InputArray  src1,
InputArray  src2,
InputArray  weights1,
InputArray  weights2,
OutputArray  dst 
)

Performs linear blending of two images.

Ptr<CLAHE> cv::createCLAHE ( double  clipLimit = 40.0,
Size  tileGridSize = Size(8, 8) 
)
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

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

void cv::demosaicing ( InputArray  _src,
OutputArray  _dst,
int  code,
int  dcn = 0 
)