fdh
fdh

Reputation: 5344

What does OpenCV's cvAcc() do?

Could someone please explains in simple, non-technical and non-mathematical terms what exactly does cvAcc do? I read that it it "accumulates", but have no idea what accumulates means.

Thanks

Upvotes: 1

Views: 1665

Answers (1)

Lou Franco
Lou Franco

Reputation: 89172

Accumulation is the result of adding (or summing). It's kind of what the += does in C/C++. So

cvAcc(image, accumulation, mask);

Is like

accumulation += image; // with the mask applied so only a region might be affected

Upvotes: 2

Related Questions