BinaryDescriptorCompute Method |
http://www.emgu.com
Descriptors computation.
Namespace:
Emgu.CV.LineDescriptor
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void Compute(
Mat image,
VectorOfKeyLine keylines,
Mat descriptors,
bool returnFloatDescr = false
)
Public Sub Compute (
image As Mat,
keylines As VectorOfKeyLine,
descriptors As Mat,
Optional returnFloatDescr As Boolean = false
)
public:
void Compute(
Mat^ image,
VectorOfKeyLine^ keylines,
Mat^ descriptors,
bool returnFloatDescr = false
)
member Compute :
image : Mat *
keylines : VectorOfKeyLine *
descriptors : Mat *
?returnFloatDescr : bool
(* Defaults:
let _returnFloatDescr = defaultArg returnFloatDescr false
*)
-> unit
Parameters
- image
- Type: Emgu.CVMat
Input image - keylines
- Type: Emgu.CV.LineDescriptorVectorOfKeyLine
Vector containing lines for which descriptors must be computed - descriptors
- Type: Emgu.CVMat
Computed descriptors will be stored here - returnFloatDescr (Optional)
- Type: SystemBoolean
When true, original non-binary descriptors are returned
See Also