Marc Giersch
Marc Giersch

Reputation: 3

how to auto censor/blur numberplates with js?

Does anyone know a nice way to automatically blur /censor number plates /license plates from jpegs preferably in javascript!? Or do all of you do this by hand? Couldn't figure one out yet...

Upvotes: 0

Views: 1472

Answers (1)

Bob Brown
Bob Brown

Reputation: 1502

The hard part is going to be reliably recognizing the area of the image that is the number plate. Although there are image processing libraries for JavaScript, I'm not sure they're suitable to what you want to do.

Unless you have a zillion of these, blur them by hand; it'll be less work.

A place to start for further reading: http://web.archive.org/web/20141009093427/http://www.licenseplaterecognition.com/

Upvotes: 1

Related Questions