Untitled
unknown
c_cpp
a year ago
575 B
2
Indexable
#include "isp.h"
...
int main(int argc, char *argv[]) {
vector<string> isp_ip = {all ISP device IPs};
vector<int> isp_port = {all ISP device ports};
vector<string> photo = {all photo names to recognize};
ISP_Interface isp(isp_ip, isp_port);
isp.ISP_Init();
...
isp.get_feature(photo_to_recognize, photo_feature);
isp.ISP_execute(starting_isp_ip_id, number_of_isp_devices_to_connect, command_to_send, photo_feature);
isp.ISP_CompareResult();
return 0;
}Editor is loading...
Leave a Comment