00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef LIBCVAUTOMATION_OPENCV_H
00018 #define LIBCVAUTOMATION_OPENCV_H
00019
00020 #include <libcvautomation/libcvautomation.h>
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 CvPoint matchSubImage ( IplImage *rootImage, IplImage *subImage, int searchMethod, double tolerance );
00033
00034
00035 CvPoint matchSubImage_center ( IplImage *rootImage, IplImage *subImage, int searchMethod, double tolerance );
00036
00037
00038 CvPoint matchSubImage_location ( const char *rootImage_location, const char *subImage_location, int searchMethod, double tolerance );
00039
00040
00041 CvPoint matchSubImage_location_center ( const char *rootImage_location, const char *subImage_location, int searchMethod, double tolerance );
00042
00043
00044 void matchSubImage_a ( IplImage *rootImage, cvautomationList *subImageArray, int listSize );
00045
00046
00047 void matchSubImage_a_center ( IplImage *rootImage, cvautomationList *subImageArray, int listSize );
00048
00049
00050 void matchSubImage_a_location ( const char *rootImageFileName, cvautomationList *subImageArray, int listSize );
00051
00052
00053 void matchSubImage_a_location_center ( const char *rootImageFileName, cvautomationList *subImageArray, int listSize );
00054
00055 #endif
00056
00057