All Projects → yulingtianxia → Photoassessment

yulingtianxia / Photoassessment

Licence: apache-2.0
Photo Assessment using Core ML and Metal.

Projects that are alternatives of or similar to Photoassessment

Ios11 Visionframework
Vision Framework IOS WWDC 2017
Stars: ✭ 85 (+112.5%)
Mutual labels:  face-detection, image-analysis
Facelandmarksdetection
Finds facial features such as face contour, eyes, mouth and nose in an image.
Stars: ✭ 130 (+225%)
Mutual labels:  face-detection, vision
Facevision
iOS11 Vision framework example. Detection of face landmarks
Stars: ✭ 47 (+17.5%)
Mutual labels:  face-detection, vision
Attendance Using Face
Face-recognition using Siamese network
Stars: ✭ 174 (+335%)
Mutual labels:  face-detection, vision
PSCognitiveService
Powershell module to access Microsoft Azure Machine learning RESTful API's or Microsoft cognitive services
Stars: ✭ 46 (+15%)
Mutual labels:  vision, image-analysis
Imagedetect
✂️ Detect and crop faces, barcodes and texts in image with iOS 11 Vision api.
Stars: ✭ 286 (+615%)
Mutual labels:  face-detection, vision
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+3550%)
Mutual labels:  face-detection, image-analysis
Amazing Arkit
ARKit相关资源汇总 群:326705018
Stars: ✭ 239 (+497.5%)
Mutual labels:  metal, vision
pigallery
PiGallery: AI-powered Self-hosted Secure Multi-user Image Gallery and Detailed Image analysis using Machine Learning, EXIF Parsing and Geo Tagging
Stars: ✭ 35 (-12.5%)
Mutual labels:  face-detection, image-analysis
Recogcis
Face detection & recognition AR app using the mlmodel to recognize company employees.
Stars: ✭ 28 (-30%)
Mutual labels:  vision, face-detection
Facecropper
✂️ Crop faces, inside of your image, with iOS 11 Vision api.
Stars: ✭ 479 (+1097.5%)
Mutual labels:  face-detection, vision
Mlkit
A collection of sample apps to demonstrate how to use Google's ML Kit APIs on Android and iOS
Stars: ✭ 949 (+2272.5%)
Mutual labels:  face-detection
Picassofacedetectiontransformation
A memory efficient Android image transformation library providing cropping above Face Detection (Face Centering) for Picasso.
Stars: ✭ 854 (+2035%)
Mutual labels:  face-detection
Mindseye
Neural Networks in Java 8 with CuDNN and Aparapi
Stars: ✭ 8 (-80%)
Mutual labels:  image-analysis
Compare
image comparison tool
Stars: ✭ 25 (-37.5%)
Mutual labels:  image-analysis
Fast face detector
A face detector based on the work "Aggregate channel features for multi-view face detection" presented by Bin Yang, Junjie Yan, Zhen Lei and Stan Z. Li.
Stars: ✭ 35 (-12.5%)
Mutual labels:  face-detection
Object face detection webcam react
Face/Mood detection using face-api.js
Stars: ✭ 29 (-27.5%)
Mutual labels:  face-detection
Brfv4 mac examples
macOS C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 25 (-37.5%)
Mutual labels:  face-detection
Orange3 Imageanalytics
🍊 🎑 Orange3 add-on for dealing with image related tasks
Stars: ✭ 24 (-40%)
Mutual labels:  image-analysis
Amap Python
Automated mouse atlas propagation
Stars: ✭ 20 (-50%)
Mutual labels:  image-analysis

CI Status Version Carthage compatible License Platform CocoaPods CocoaPods Twitter Follow

PhotoAssessment

Photo Assessment (i.e. quality score) using Core ML and Metal.

📚 Article

🔮 Example

To run the example project, clone the repo and run PhotoAssessment target.

🐒 How to use

PhotoAssessmentHelper generates assessment result quicker and easier, using far less code.

self.helper.requestMLAssessmentScore(for: downsampleImage, completionHandler: { (score) in
    DispatchQueue.main.async {
        self.assessmentLabel.text = String(format: "Assessment Score:%0.5f", score)
    }
})
self.helper.requestMPSAssessmentScore(for: downsampleImage, completionHandler: { (result) in
    DispatchQueue.main.async {
        self.detailLabel.text = result.description
    }
})

PhotoAssessmentKit

Support iOS、tvOS.

PhotoAssessmentMacKit

Support macOS.

ConvertMLModel

Convert NIMA model to Core ML format.

📲 Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate PhotoAssessment into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
target 'MyApp' do
	pod 'PhotoAssessment'
end

You need replace "MyApp" with your project's name.

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate PhotoAssessment into your Xcode project using Carthage, specify it in your Cartfile:

github "yulingtianxia/PhotoAssessment"

Run carthage update to build the framework and drag the built PhotoAssessmentKit.framework into your Xcode project.

Manual

Just drag the "Sources" document folder into your project.

❤️ Contributed

  • If you need help or you'd like to ask a general question, open an issue.
  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

👨🏻‍💻 Author

yulingtianxia, [email protected]

👮🏻 License

PhotoAssessment 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].