Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 299 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 299 Bytes

KejawenLab Blurry Detection using ImageMagick

This package use identify command to get standard deviation index and then comparing to the threshold

Usage

b := identify.BlurryDetection{}
result, err := b.Detect(imagePath)

if err == nil && b.IsBlur {
    fmt.Println(b.Score)
}