Skip to content

dfouhey/minimalBlur

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minimalBlur

This is a short working example of face blurring that seems to produce far less double-jpg'ing artifacts in regions that are not blurred compared to alternate methods. This script is not meant as a turnkey solution to be used for other projects, but rather is a demonstration for developers to re-purpose. I'm posting this in the hopes that it is useful, but will not be monitoring github issues.

How to use

If you want to use this in your own project, I'd suggest pulling out the following two functions:

Do not use:

  • handleBad -- this demonstrates a data processing that causes double jpging artifacts.

You can try the script on either calder.jpg or crop5.jpg. The script will generate the blurred version. If showDiff is set to true, the script will also generate a version that does not try to avoid double jpg'ing artifacts as well as generate difference maps.

Notes

This script mitigates double jpg artifacts, but doesn't totally eliminate them. The re-decoding/re-encoding step produces slight differences even with the same quantization scheme. I suspect this is due to differences in rounding modes or other decisions that are left up to the library, but I'm not a jpg expert.

If totally eliminating double jpg-ing artifcats is important (or you need a more turn-key solution), please use David Pinto's jpegblur

Thanks

Thanks to:

  • Kaiyu Yang, whose code was the starting point for this
  • David Pinto, who gave a lot of helpful advice and who provided a fix that preserves metadata

Dependencies

Dependencies:

  • Python Image Library
  • Numpy

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages