1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Remove more old definitions from internal.hpp

This commit is contained in:
Andrey Kamaev
2013-04-01 16:32:08 +04:00
parent e972d6b8c0
commit d62bc8cfbf
13 changed files with 85 additions and 88 deletions
+2
View File
@@ -92,6 +92,8 @@
#include "precomp.hpp"
#include <limits>
#define CV_DESCALE(x,n) (((x) + (1 << ((n)-1))) >> (n))
namespace cv
{
+2
View File
@@ -44,6 +44,8 @@
#include <limits>
#define CV_DESCALE(x,n) (((x) + (1 << ((n)-1))) >> (n))
namespace cv
{
+1
View File
@@ -46,6 +46,7 @@ namespace cv
static const int DIST_SHIFT = 16;
static const int INIT_DIST0 = (INT_MAX >> 2);
#define CV_FLT_TO_FIX(x,n) cvRound((x)*(1<<(n)))
static void
initTopBottom( Mat& temp, int border )
+1 -1
View File
@@ -193,7 +193,7 @@ void FilterEngine::init( const Ptr<BaseFilter>& _filter2D,
wholeSize = Size(-1,-1);
}
static const int VEC_ALIGN = CV_MALLOC_ALIGN;
#define VEC_ALIGN CV_MALLOC_ALIGN
int FilterEngine::start(Size _wholeSize, Rect _roi, int _maxBufRows)
{