5
#ifndef OPENCV_IMGPROC_BINDINGS_HPP
6
#define OPENCV_IMGPROC_BINDINGS_HPP
23
double
srn = 0,
double
stn = 0,
24
double
min_theta = 0,
double
max_theta = CV_PI
27
std::vector<Vec3f> lines_acc;
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition:
mat.hpp:295
n-dimensional dense array class
Definition:
mat.hpp:802
void copyTo(OutputArray m) const
Copies the matrix to another one.
CV_EXPORTS_W void HoughLines(InputArray image, OutputArray lines, double rho, double theta, int threshold, double srn=0, double stn=0, double min_theta=0, double max_theta=CV_PI)
Finds lines in a binary image using the standard Hough transform.
CV_EXPORTS_W double threshold(InputArray src, OutputArray dst, double thresh, double maxval, int type)
Applies a fixed-level threshold to each array element.
"black box" representation of the file storage associated with a file on disk.
Definition:
aruco.hpp:75
static CV_WRAP void HoughLinesWithAccumulator(InputArray image, OutputArray lines, double rho, double theta, int threshold, double srn=0, double stn=0, double min_theta=0, double max_theta=CV_PI)
Finds lines in a binary image using the standard Hough transform and get accumulator.
Definition:
bindings.hpp:20