| 667 | } |
| 668 | |
| 669 | static void RectToImageFrame( |
| 670 | double& x, // out: center of feature |
| 671 | double& y, // out: center of feature |
| 672 | const Rect& featrect) // in |
| 673 | { |
| 674 | x = featrect.x + featrect.width / 2; |
| 675 | y = featrect.y + featrect.height / 2; |
| 676 | } |
| 677 | |
| 678 | #if TRACE_IMAGES |
| 679 |
no outgoing calls
no test coverage detected