| 98 | #endif // not CACHE |
| 99 | |
| 100 | static int round2(double x) // return closest int to x that is divisible by 2 |
| 101 | { |
| 102 | return 2 * cvRound(x / 2); |
| 103 | } |
| 104 | |
| 105 | static int PatchWidth( // patchwidth at the given pyramid level |
| 106 | int ilev) // in: pyramid level (0 is full size) |
no outgoing calls
no test coverage detected