12345678910111213 |
- #pragma once
- #include <string>
- #include <nlohmann/json.hpp>
- using json = nlohmann::json;
- using namespace std;
- class YundaTecAlgorithnm
- {
-
- public :
- static json CallAlgorithnm(string pluginName, string filePath, string modelPath, int* roiVec, string pcArg);
- };
|