bas
bas

Reputation: 79

OpenCV compare images

I need help with OpenCV to solve the following problem:

  1. I have some pictures of one place
  2. Each photo compare with the first
  3. in the photos except the first I need to draw the frames where there was a change

Can anyone advise me or recommend a prime example?

Upvotes: 0

Views: 688

Answers (1)

HugoRune
HugoRune

Reputation: 13799

That sounds like a job for background substraction.

BackgroundSubtractorMOG2 is the class you will probably want.

I have not used it myself, but here is a tutorial

Upvotes: 1

Related Questions