ailiaOpenStreamFileA method
- Pointer<
AILIANetwork> net, - Pointer<
Char> path
~japanese @brief ネットワークオブジェクトを初期化します。(ファイルから読み込み) @param net ネットワークオブジェクトポインタ @param path prototxtファイルのパス名(MBSC or UTF16) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details ファイルから読み込み、ネットワークオブジェクトを初期化します。
~english @brief Initializes the network instance. (Read from file) @param net A network instance pointer @param path The path name to the prototxt file (MBSC or UTF16) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details This function reads the network instance from a file and initializes it.
Implementation
int ailiaOpenStreamFileA(
ffi.Pointer<AILIANetwork> net,
ffi.Pointer<ffi.Char> path,
) {
return _ailiaOpenStreamFileA(
net,
path,
);
}