OopsUser
OopsUser

Reputation: 4784

How to calculate the correlation between two images in EMGU?

I have two images (let's assume they have the same size), i want to calculate the correlation between the two images Using EMGU and C#.

I didn't found any function that does it and implemented the correlation calculation by myself.. but i'd rather use built in function.

Is such function exist ?

Thanks.

Upvotes: 2

Views: 1653

Answers (1)

rold2007
rold2007

Reputation: 1327

I think Image<>.MatchTemplate() is what you're looking for.

Upvotes: 3

Related Questions