Commit 20ed43bc authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

added docs for SURF_GPU and BruteForceMatcher_GPU

parent 536625d6
...@@ -557,7 +557,7 @@ between different algorithms solving the same problem. This section is devoted t ...@@ -557,7 +557,7 @@ between different algorithms solving the same problem. This section is devoted t
that are represented as vectors in a multidimensional space. All objects that implement ''vector'' that are represented as vectors in a multidimensional space. All objects that implement ''vector''
descriptor matchers inherit \cvCppCross{DescriptorMatcher} interface. descriptor matchers inherit \cvCppCross{DescriptorMatcher} interface.
\cvclass{DMatch} \cvclass{DMatch}\label{cv.class.DMatch}
Match between two keypoint descriptors: query descriptor index, Match between two keypoint descriptors: query descriptor index,
train descriptor index, train image index and distance between descriptors. train descriptor index, train image index and distance between descriptors.
...@@ -584,7 +584,7 @@ struct DMatch ...@@ -584,7 +584,7 @@ struct DMatch
}; };
\end{lstlisting} \end{lstlisting}
\cvclass{DescriptorMatcher} \cvclass{DescriptorMatcher}\label{cv.class.DescriptorMatcher}
Abstract base class for matching keypoint descriptors. It has two groups Abstract base class for matching keypoint descriptors. It has two groups
of match methods: for matching descriptors of one image with other image or of match methods: for matching descriptors of one image with other image or
with image set. with image set.
...@@ -805,7 +805,7 @@ DescriptorMatcher::create( const string& descriptorMatcherType ); ...@@ -805,7 +805,7 @@ DescriptorMatcher::create( const string& descriptorMatcherType );
Now the following matcher types are supported: \texttt{"BruteForce"} (it uses \texttt{L2}), \texttt{"BruteForce-L1"}, Now the following matcher types are supported: \texttt{"BruteForce"} (it uses \texttt{L2}), \texttt{"BruteForce-L1"},
\texttt{"BruteForce-Hamming"}, \texttt{"BruteForce-HammingLUT"}, \texttt{"FlannBased"}. \texttt{"BruteForce-Hamming"}, \texttt{"BruteForce-HammingLUT"}, \texttt{"FlannBased"}.
\cvclass{BruteForceMatcher} \cvclass{BruteForceMatcher}\label{cv.class.BruteForceMatcher}
Brute-force descriptor matcher. For each descriptor in the first set, this matcher finds the closest Brute-force descriptor matcher. For each descriptor in the first set, this matcher finds the closest
descriptor in the second set by trying each one. This descriptor matcher supports masking descriptor in the second set by trying each one. This descriptor matcher supports masking
permissible matches between descriptor sets. permissible matches between descriptor sets.
......
...@@ -397,7 +397,7 @@ protected: ...@@ -397,7 +397,7 @@ protected:
}; };
\end{lstlisting} \end{lstlisting}
\cvclass{SURF} \cvclass{SURF}\label{cv.class.SURF}
Class for extracting Speeded Up Robust Features from an image. Class for extracting Speeded Up Robust Features from an image.
\begin{lstlisting} \begin{lstlisting}
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment