| 103 | } |
| 104 | |
| 105 | static int PatchWidth( // patchwidth at the given pyramid level |
| 106 | int ilev) // in: pyramid level (0 is full size) |
| 107 | { |
| 108 | return HAT_PATCH_WIDTH + round2(ilev * HAT_PATCH_WIDTH_ADJ); |
| 109 | } |
| 110 | |
| 111 | void InitHatLevData( // init the global HAT data needed for this pyr level |
| 112 | const Image& img, // in |
no test coverage detected