mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
core: divUp function
This commit is contained in:
@@ -23,11 +23,6 @@ enum
|
||||
CTA_SIZE_DEFAULT = 256
|
||||
};
|
||||
|
||||
static int divUp(int a, int b)
|
||||
{
|
||||
return (a + b - 1) / b;
|
||||
}
|
||||
|
||||
template <typename FT, typename ST, typename WT>
|
||||
static bool ocl_calcAlmostDist2Weight(UMat & almostDist2Weight,
|
||||
int searchWindowSize, int templateWindowSize,
|
||||
|
||||
Reference in New Issue
Block a user