removed needless divUp

This commit is contained in:
Ilya Lavrenov
2013-09-16 15:11:56 +04:00
parent f9c6123439
commit 58b84c2fc0
15 changed files with 64 additions and 367 deletions

View File

@@ -82,12 +82,6 @@ namespace cv
}
}
static inline size_t divUp(size_t total, size_t grain)
{
return (total + grain - 1) / grain;
}
static inline int calcSize(int octave, int layer)
{
/* Wavelet size at first layer of first octave. */