CV_IABS

#ifndef __cplusplus    //跨平台定义方法,判断__cplusplus有没有#define过

#define CV_IABS(a) ( ( (a) ^ ( (a) < 0 ? -1 : 0) ) - ( (a) < 0 ? -1 : 0) )

#else

#define CV_IABS(a) abs(a)

#endif

你可能感兴趣的:(跨平台)