-2

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

kaneda
  • 5,981
  • 8
  • 48
  • 73

1 Answers1

1

It switches two values around:

#define CV_SWAP(a,b,t) ((t) = (a), (a) = (b), (b) = (t))
phihag
  • 278,196
  • 72
  • 453
  • 469