amlnn-model-playground/examples/clip/cpp/src/model_invoke.h
2026-01-06 10:29:54 +08:00

13 lines
393 B
C++
Executable file

#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