Upload first version
This commit is contained in:
parent
f95d5a63b0
commit
3bdf2003ec
898 changed files with 1405811 additions and 1 deletions
13
examples/clip/cpp/src/model_invoke.h
Executable file
13
examples/clip/cpp/src/model_invoke.h
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef MODEL_INVOKE_H
|
||||
#define MODEL_INVOKE_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
void* init_network_file(const char *model_path);
|
||||
std::vector<std::string> process_image_dir(void *context_model, const std::string& json_path, const std::string& base_dir = "", const std::string& json_filename = "");
|
||||
int destroy_network(void *qcontext);
|
||||
|
||||
#endif // MODEL_INVOKE_H
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue