All Projects → KimDarren → Facecropper

KimDarren / Facecropper

Licence: mit
✂️ Crop faces, inside of your image, with iOS 11 Vision api.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Facecropper

Imagedetect
✂️ Detect and crop faces, barcodes and texts in image with iOS 11 Vision api.
Stars: ✭ 286 (-40.29%)
Mutual labels:  face-detection, face-recognition, face, vision, ios11
Facelandmarksdetection
Finds facial features such as face contour, eyes, mouth and nose in an image.
Stars: ✭ 130 (-72.86%)
Mutual labels:  face-detection, face, vision, ios11
Hellovision
Vision framework example for my article. https://medium.com/compileswift/swift-world-whats-new-in-ios-11-vision-456ba4156bad
Stars: ✭ 93 (-80.58%)
Mutual labels:  face-detection, face-recognition, ios11
Face Recognition.js
Simple Node.js package for robust face detection and face recognition. JavaScript and TypeScript API.
Stars: ✭ 1,768 (+269.1%)
Mutual labels:  face-detection, face-recognition, face
Dockerface
Face detection using deep learning.
Stars: ✭ 173 (-63.88%)
Mutual labels:  face-detection, face-recognition, face
Human Detection And Tracking
Human-detection-and-Tracking
Stars: ✭ 753 (+57.2%)
Mutual labels:  face-detection, face-recognition, face
Facevision
iOS11 Vision framework example. Detection of face landmarks
Stars: ✭ 47 (-90.19%)
Mutual labels:  face-detection, vision, ios11
Lookatme
VideoView that plays video only when 👀 are open and 👦 is detected with various other features
Stars: ✭ 161 (-66.39%)
Mutual labels:  face-detection, face-recognition, face
FaceIDLight
A lightweight face-recognition toolbox and pipeline based on tensorflow-lite
Stars: ✭ 17 (-96.45%)
Mutual labels:  face, face-recognition, face-detection
timeline
Timeline - A photo organizer
Stars: ✭ 39 (-91.86%)
Mutual labels:  face, face-recognition, face-detection
face
[deprecated] 👽 Face Recognition package for Laravel
Stars: ✭ 37 (-92.28%)
Mutual labels:  face, face-recognition, face-detection
Awesome Face
😎 face releated algorithm, dataset and paper
Stars: ✭ 739 (+54.28%)
Mutual labels:  face-detection, face-recognition, face
Mobileface
A face recognition solution on mobile device.
Stars: ✭ 669 (+39.67%)
Mutual labels:  face-detection, face-recognition, face
Multi-Face-Comparison
This repo is meant for backend API for face comparision and computer vision. It is built on python flask framework
Stars: ✭ 20 (-95.82%)
Mutual labels:  face, face-recognition, face-detection
Attendance Using Face
Face-recognition using Siamese network
Stars: ✭ 174 (-63.67%)
Mutual labels:  face-detection, face-recognition, vision
Look4Face
Demo of Face Recognition web service
Stars: ✭ 23 (-95.2%)
Mutual labels:  face, face-recognition, face-detection
Recogcis
Face detection & recognition AR app using the mlmodel to recognize company employees.
Stars: ✭ 28 (-94.15%)
Mutual labels:  vision, face-recognition, face-detection
realtime-facereccpp
Real time face recognition with tracking (mtcnn detection, kcf tracker, arcface loss)
Stars: ✭ 32 (-93.32%)
Mutual labels:  face-recognition, face-detection
compreface-javascript-sdk
JavaScript SDK for CompreFace - free and open-source face recognition system from Exadel
Stars: ✭ 19 (-96.03%)
Mutual labels:  face-recognition, face-detection
Get Me Through
A Free, Offline, Real-Time, Open-source web-app to assist organisers of any event in allowing only authorised/invited people using Face-Recognition Technology or QR Code.
Stars: ✭ 255 (-46.76%)
Mutual labels:  face-detection, face-recognition

FaceCropper

Version License

Requirements

  • Xcode 9.0 (beta) or higher.
  • iOS 11.0 (beta) or higher.
    • (It is possible to import this library under the iOS 11. But it won't be working.)

Usage

  • Crop faces from your image (UIImage or CGImage) in the easy way.
let image = UIImage(named: "image_contains_faces")
image.face.crop { result in
  switch result {
  case .success(let faces):
    // When the `Vision` successfully find faces, and `FaceCropper` cropped it.
    // `faces` argument is a collection of cropped images.
  case .notFound:
    // When the image doesn't contain any face, `result` will be `.notFound`.
  case .failure(let error):
    // When the any error occured, `result` will be `failure`.
  }
}

Example

Example app screenshot

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

FaceCropper is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "FaceCropper"

Author

KimDarren, [email protected]

License

FaceCropper is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].