Untitled

 avatar
unknown
c_cpp
8 months ago
575 B
0
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