Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.github.bonnguyen:camerafacedetection

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.github.bonnguyen:camerafacedetection

This is Android lib to help all projects can easy integrate Camera with face detection feature.

  • 1.0.0
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

AndroidFaceDetection

This is Android lib to help all projects can easy integrate Camera with face detection feature.

Status

  • Current stable version: Download
  • Current development version: n/a

Get It

  • Maven repository: jCenter
  • Group: com.github.bonnguyen
  • Artifact ID: camerafacedetection

What's new (1.0.0)

  • Only supported take one picture for one time
  • Display the result on screen

Installation

Release versions are available from jCenter repository, so just add the "compile..." statement to your project. For snapshots, please add our bintray snapshots repository url first: https://dl.bintray.com/bonnguyen/maven

repositories{
    maven {
        url 'https://dl.bintray.com/bonnguyen/maven'
    }
}

And put it in App dependencies:

dependencies {
    ...
    compile 'com.github.bonnguyen:camerafacedetection:1.0.0'
    ...
}

Quick Usage

Easy to integrate with your project. In your XML layout, you can put the FaceDetectionView

<com.bonnguyen.camerafacedetection.FaceDetectionView
    android:id="@+id/ivPhoto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:src="@drawable/ic_no_photo" />

Configuration and Start

In Java code

ivPhoto = (FaceDetectionView) findViewById(R.id.ivPhoto);
ivPhoto.setOnClickListener(this);
....

@Override
public void onClick(View view) {
    if (view == ivPhoto) {
        Intent intent = new Intent(this, AndroidCameraActivity.class);
        startActivityForResult(intent, REQUEST_CAMERA);
    }
}

And get the result after take:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if (requestCode == REQUEST_CAMERA && data.hasExtra("url")) {
            String photoPath = data.getStringExtra("url");
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inPreferredConfig = Bitmap.Config.ARGB_8888;
            Bitmap bitmap = BitmapFactory.decodeFile(photoPath, options);
            ivPhoto.setImageBitmap(bitmap);
        }
    }
}

Bugs, Suggestions, Ideas

Any ideas/bugs/etc, as well as pull requests, are welcome in the issues section.

DEVELOP BY

Bon Nguyen - nguyennhatbon07t1@gmail.com

LICENSE


The MIT License (MIT)

Copyright (c) 2016 Bon Nguyen.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Package last updated on 01 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc