OpenCV453
|
クラス | |
struct | cv::line_descriptor::KeyLine |
A class to represent a line [詳解] | |
class | cv::line_descriptor::BinaryDescriptor |
Class implements both functionalities for detection of lines and computation of their binary descriptor. [詳解] | |
struct | cv::line_descriptor::LSDParam |
class | cv::line_descriptor::LSDDetector |
class | cv::line_descriptor::BinaryDescriptorMatcher |
furnishes all functionalities for querying a dataset provided by user or internal to class (that user must, anyway, populate) on the model of Descriptor Matchers [詳解] | |
struct | cv::line_descriptor::DrawLinesMatchesFlags |
関数 | |
CV_EXPORTS_W void | cv::line_descriptor::drawLineMatches (const Mat &img1, const std::vector< KeyLine > &keylines1, const Mat &img2, const std::vector< KeyLine > &keylines2, const std::vector< DMatch > &matches1to2, CV_OUT Mat &outImg, const Scalar &matchColor=Scalar::all(-1), const Scalar &singleLineColor=Scalar::all(-1), const std::vector< char > &matchesMask=std::vector< char >(), int flags=DrawLinesMatchesFlags::DEFAULT) |
Draws the found matches of keylines from two images. [詳解] | |
CV_EXPORTS_W void | cv::line_descriptor::drawKeylines (const Mat &image, const std::vector< KeyLine > &keylines, CV_OUT Mat &outImage, const Scalar &color=Scalar::all(-1), int flags=DrawLinesMatchesFlags::DEFAULT) |
Draws keylines. [詳解] | |
One of the most challenging activities in computer vision is the extraction of useful information from a given image. Such information, usually comes in the form of points that preserve some kind of property (for instance, they are scale-invariant) and are actually representative of input image.
The goal of this module is seeking a new kind of representative information inside an image and providing the functionalities for its extraction and representation. In particular, differently from previous methods for detection of relevant elements inside an image, lines are extracted in place of points; a new class is defined ad hoc to summarize a line's properties, for reuse and plotting purposes.
To obtatin a binary descriptor representing a certain line detected from a certain octave of an image, we first compute a non-binary descriptor as described in [LBD] . Such algorithm works on lines extracted using EDLine detector, as explained in [EDL] . Given a line, we consider a rectangular region centered at it and called line support region (LSR). Such region is divided into a set of bands , whose length equals the one of line.
If we indicate with the direction of line, the orthogonal and clockwise direction to line
can be determined; these two directions, are used to construct a reference frame centered in the middle point of line. The gradients of pixels
inside LSR can be projected to the newly determined frame, obtaining their local equivalent
.
Later on, a Gaussian function is applied to all LSR's pixels along direction; first, we assign a global weighting coefficient
to i*-th row in LSR, where
is the distance of i-th row from the center row in LSR,
and
is the width of bands (the same for every band). Secondly, considering a band
and its neighbor bands
, we assign a local weighting
, where
is the distance of k-th row from the center row in
and
. Using the global and local weights, we obtain, at the same time, the reduction of role played by gradients far from line and of boundary effect, respectively.
Each band in LSR has an associated band descriptor(BD) which is computed considering previous and next band (top and bottom bands are ignored when computing descriptor for first and last band). Once each band has been assignen its BD, the LBD descriptor of line is simply given by
To compute a band descriptor , each k-th row in it is considered and the gradients in such row are accumulated:
with .
By stacking previous results, we obtain the band description matrix (BDM)
with the number of rows in band
:
Each can be obtained using the standard deviation vector
and mean vector
of
. Thus, finally:
Once the LBD has been obtained, it must be converted into a binary form. For such purpose, we consider 32 possible pairs of BD inside it; each couple of BD is compared bit by bit and comparison generates an 8 bit string. Concatenating 32 comparison strings, we get the 256-bit final binary representation of a single LBD.
CV_EXPORTS_W void cv::line_descriptor::drawKeylines | ( | const Mat & | image, |
const std::vector< KeyLine > & | keylines, | ||
CV_OUT Mat & | outImage, | ||
const Scalar & | color = Scalar::all(-1) , |
||
int | flags = DrawLinesMatchesFlags::DEFAULT |
||
) |
Draws keylines.
image | input image |
keylines | keylines to be drawn |
outImage | output image to draw on |
color | color of lines to be drawn (if set to defaul value, color is chosen randomly) |
flags | drawing flags |
CV_EXPORTS_W void cv::line_descriptor::drawLineMatches | ( | const Mat & | img1, |
const std::vector< KeyLine > & | keylines1, | ||
const Mat & | img2, | ||
const std::vector< KeyLine > & | keylines2, | ||
const std::vector< DMatch > & | matches1to2, | ||
CV_OUT Mat & | outImg, | ||
const Scalar & | matchColor = Scalar::all(-1) , |
||
const Scalar & | singleLineColor = Scalar::all(-1) , |
||
const std::vector< char > & | matchesMask = std::vector< char >() , |
||
int | flags = DrawLinesMatchesFlags::DEFAULT |
||
) |
Draws the found matches of keylines from two images.
img1 | first image |
keylines1 | keylines extracted from first image |
img2 | second image |
keylines2 | keylines extracted from second image |
matches1to2 | vector of matches |
outImg | output matrix to draw on |
matchColor | drawing color for matches (chosen randomly in case of default value) |
singleLineColor | drawing color for keylines (chosen randomly in case of default value) |
matchesMask | mask to indicate which matches must be drawn |
flags | drawing flags, see DrawLinesMatchesFlags |