YundaTecAlgorithnm.h 263 B

12345678910111213
  1. #pragma once
  2. #include <string>
  3. #include <nlohmann/json.hpp>
  4. using json = nlohmann::json;
  5. using namespace std;
  6. class YundaTecAlgorithnm
  7. {
  8. public :
  9. static json CallAlgorithnm(string pluginName, string filePath, string modelPath, int* roiVec, string pcArg);
  10. };