| 78 | } |
| 79 | |
| 80 | long clamp_long(long value, long low, long high) { |
| 81 | if (value < low) |
| 82 | return low; |
| 83 | if (value > high) |
| 84 | return high; |
| 85 | return value; |
| 86 | } |
| 87 | |
| 88 | std::shared_ptr<PicMatchTemplate> make_pic_match(std::shared_ptr<Image> image) { |
| 89 | if (!image || image->empty()) |