http://www.emgu.com
Returns overall time for inference and timings (in ticks) for layers. Indexes in returned vector correspond to layers ids. Some layers can be fused with others, in this case zero ticks count will be return for that skipped layers.
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic long GetPerfProfile(
VectorOfDouble timings = null
)
Public Function GetPerfProfile (
Optional timings As VectorOfDouble = Nothing
) As Long
public:
long long GetPerfProfile(
VectorOfDouble^ timings = nullptr
)
member GetPerfProfile :
?timings : VectorOfDouble
(* Defaults:
let _timings = defaultArg timings null
*)
-> int64
Parameters
- timings (Optional)
- Type: Emgu.CV.UtilVectorOfDouble
Vector for tick timings for all layers.
Return Value
Type:
Int64Overall ticks for model inference.
See Also