pub unsafe fn ie_core_create(
    xml_config_file: *const c_char,
    core: *mut *mut ie_core_t
) -> IEStatusCode
Expand description

@brief Constructs Inference Engine Core instance using XML configuration file with devices description. See RegisterPlugins for more details. Use the ie_core_free() method to free memory. @ingroup Core @param xml_config_file A path to .xml file with devices to load from. If XML configuration file is not specified, then default Inference Engine devices are loaded from the default plugin.xml file. @param core A pointer to the newly created ie_core_t. @return Status code of the operation: OK(0) for success.