http://www.emgu.com
Predict the probability of the samples
Namespace:
Emgu.CV.ML
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic MCvPoint2D64f Predict(
IInputArray samples,
IOutputArray probs = null
)
Public Function Predict (
samples As IInputArray,
Optional probs As IOutputArray = Nothing
) As MCvPoint2D64f
public:
MCvPoint2D64f Predict(
IInputArray^ samples,
IOutputArray^ probs = nullptr
)
member Predict :
samples : IInputArray *
?probs : IOutputArray
(* Defaults:
let _probs = defaultArg probs null
*)
-> MCvPoint2D64f
Parameters
- samples
- Type: Emgu.CVIInputArray
The input samples - probs (Optional)
- Type: Emgu.CVIOutputArray
The prediction results, should have the same # of rows as the samples
Return Value
Type:
MCvPoint2D64fThe results
See Also