-2

I couldn't find reference to it in the official docs.

kaneda
  • 5,781
  • 6
  • 45
  • 71

1 Answers1

1

It switches two values around:

#define CV_SWAP(a,b,t) ((t) = (a), (a) = (b), (b) = (t))
phihag
  • 263,143
  • 67
  • 432
  • 458