All Downloads are FREE. Search and download functionalities are using the official Maven repository.

srcnativelibs.Vision.find-result.h Maven / Gradle / Ivy

/*
 * Copyright 2010-2014, Sikuli.org, sikulix.com
 * Released under the MIT License.
 *
 */
#ifndef _FIND_RESULT_
#define _FIND_RESULT_

#include 

struct FindResult {
   int x, y;
   int w, h;
   double score;
   FindResult(){
      x=0;y=0;w=0;h=0;score=-1;text = "";
   }
   FindResult(int _x, int _y, int _w, int _h, double _score){
      x = _x; y = _y;
      w = _w; h = _h;
      score = _score;
      text = "";
   }
   
   std::string text;
};

#endif //_FIND_RESULT_




© 2015 - 2025 Weber Informatics LLC | Privacy Policy