LibFaceDetection.jl

Wrapper for https://github.com/ShiqiYu/libfacedetection
Author SimonDanisch
Popularity
3 Stars
Updated Last
3 Years Ago
Started In
December 2020

LibFaceDetection

Build Status Coverage

Wrapper for https://github.com/ShiqiYu/libfacedetection

Usage:

using GLMakie, LibFaceDetection, FileIO
path = download("https://thumbs.dreamstime.com/z/many-faces-2754451.jpg", "faces.jpg")
img = load(path)
faces = detect_faces(img)
scene = image(rotr90(img), scale_plot=false, show_axis=false)
for face in faces
    linesegments!(face.boundingbox)
    scatter!(face.points, markersize=20, color=tuple.([:blue, :blue, :green, :red, :red], 0.4))
end
display(scene)

image

Used By Packages

No packages found.