00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef LIBCVAUTOMATION_XLIB_H
00019 #define LIBCVAUTOMATION_XLIB_H
00020
00021 #include <libcvautomation/libcvautomation.h>
00022
00023
00024 Display* cvaOpenDisplay ( char *displayName );
00025
00026
00027 void cvaCloseDisplay ( Display *displayLocation );
00028
00029
00030 CvPoint matchSubImage_X11( Display *displayLocation, IplImage *subImage, int searchMethod, int tolerance );
00031
00032
00033 CvPoint matchSubImage_X11_center( Display *displayLocation, IplImage *subImage, int searchMethod, int tolerance );
00034
00035
00036 CvPoint matchSubImage_X11_location( Display *displayLocation, const char *subImage_location, int search_method, int tolerance );
00037
00038
00039 CvPoint matchSubImage_X11_location_center( Display *displayLocation, const char *subImage_location, int search_method, int tolerance );
00040
00041 #endif
00042
00043