| 734 | } |
| 735 | |
| 736 | long ImageSearchAlgorithms::FindPicTh(std::vector<Image *> &pics, color_t dfcolor, double sim, long dir, long &x, long &y) { |
| 737 | std::vector<PicMatchTemplate> prepared; |
| 738 | std::vector<PicMatchTemplate *> views; |
| 739 | prepare_pic_views(pics, prepared, views); |
| 740 | return FindPicTh(views, dfcolor, sim, dir, x, y); |
| 741 | } |
| 742 | |
| 743 | long ImageSearchAlgorithms::FindPicTh(std::vector<PicMatchTemplate *> &pics, color_t dfcolor, double sim, long dir, |
| 744 | long &x, long &y) { |
nothing calls this directly
no test coverage detected