TfLiteInvokeDefaultLoadUnmanagedModules Method |
https://www.emgu.com
Attempts to load tensorflow modules from the specific location
Namespace:
Emgu.TF.Lite
Assembly:
Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.16.1.1623+4bf999fc3b81f861a8c2aa1b11ce6bfb8f610804
Syntaxpublic static bool DefaultLoadUnmanagedModules(
string[] modules,
string loadDirectory = null
)
Public Shared Function DefaultLoadUnmanagedModules (
modules As String(),
Optional loadDirectory As String = Nothing
) As Boolean
public:
static bool DefaultLoadUnmanagedModules(
array<String^>^ modules,
String^ loadDirectory = nullptr
)
static member DefaultLoadUnmanagedModules :
modules : string[] *
?loadDirectory : string
(* Defaults:
let _loadDirectory = defaultArg loadDirectory null
*)
-> bool
Parameters
- modules
- Type: SystemString
The names of tensorflow modules. - loadDirectory (Optional)
- Type: SystemString
The path to load the opencv modules. If null, will use the default path.
Return Value
Type:
BooleanTrue if all the modules has been loaded successfully
See Also