How to detect whether an image is almost blank on Linux?

How to detect whether a .jpg image is almost blank/black on Linux?

Here is a bash function that I used to detect whether an image is black on Linux:

function isBlank ()
{
    mean=`convert $1 -format "%[mean]" info:`
    echo "$mean"
}

It uses ImageMagic to generate formatted image characteristics (the mean).

If the mean is 0, it is a black image.

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

Leave a Reply

Your email address will not be published. Required fields are marked *