Reputation: 90
I'm trying to figure out how to calculate central image moments for some rectangular ROI using SIMD library. I often use IPP library for such tasks, but I want to try SIMD as it's much "lighter" library. According to SIMD documentation, function SimdGetMoments() returns only spatial image moments. Also, there is no multiplication with pixel value, which differs from image moments definition specified in IPP documentation: https://software.intel.com/en-us/ipp-dev-reference-image-moments
Is there some workaround to get central image moments for some ROI in accordance with IPP image moments definition?
Upvotes: 1
Views: 95
Reputation: 4038
As I know recently added function SimdGetObjectMoments has functionality close to required specification.
Upvotes: 1