Reputation: 5344
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
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