CV_SWAP宏有什么作用?

时间:2013-07-05 00:31:41

标签: c opencv

我无法在official docs找到对它的引用。

1 个答案:

答案 0 :(得分:1)

switches two values around

#define CV_SWAP(a,b,t) ((t) = (a), (a) = (b), (b) = (t))