Popularity
5.3
Stable
Activity
0.0
Stable
484
19
36

Programming language: Swift
License: MIT License
Tags: Media     Image    
Latest version: v1.0.0

FaceCropper alternatives and similar libraries

Based on the "Image" category.
Alternatively, view FaceCropper alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of FaceCropper or a related project?

Add another 'Image' Library

README

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](LICENSE) file for more info.


*Note that all licence references and agreements mentioned in the FaceCropper README section above are relevant to that project's source code only.