All Projects → memishood → FaceAware-Android

memishood / FaceAware-Android

Licence: Apache-2.0 license
this helps to auto zoom for face on ImageView

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to FaceAware-Android

Faceaware
An extension that gives UIImageView the ability to focus on faces within an image.
Stars: ✭ 3,004 (+6430.43%)
Mutual labels:  photos, face-detection, detect-faces
facetool
Command line utility to manipulate faces in videos and images
Stars: ✭ 38 (-17.39%)
Mutual labels:  face-detection, detect-faces
Pinchimageview
体验非常好的Android图片手势控件。
Stars: ✭ 1,871 (+3967.39%)
Mutual labels:  imageview, zoom
timeline
Timeline - A photo organizer
Stars: ✭ 39 (-15.22%)
Mutual labels:  photos, face-detection
PyRecognizer
"A neural network to rule them all, a neural network to find them, a neural network to bring them all and verify if is you !!" (Face recognition tool)
Stars: ✭ 28 (-39.13%)
Mutual labels:  photos, face-detection
Facerecognition
Nextcloud app that implement a basic facial recognition system.
Stars: ✭ 226 (+391.3%)
Mutual labels:  photos, face-detection
Zoomage
A simple pinch-to-zoom ImageView library for Android
Stars: ✭ 211 (+358.7%)
Mutual labels:  imageview, zoom
Ownphotos Frontend
Stars: ✭ 171 (+271.74%)
Mutual labels:  photos, face-detection
Photo view
📸 Easy to use yet very customizable zoomable image widget for Flutter, Photo View provides a gesture sensitive zoomable widget. Photo View is largely used to show interacive images and other stuff such as SVG.
Stars: ✭ 1,280 (+2682.61%)
Mutual labels:  photos, zoom
Ownphotos
Self hosted alternative to Google Photos
Stars: ✭ 2,587 (+5523.91%)
Mutual labels:  photos, face-detection
myphotoshare
MOVED TO GITLAB! --- A Web 2.0 Photo Gallery Done Right via Static JSON, Dynamic Javascript and a bit of php for sharing
Stars: ✭ 12 (-73.91%)
Mutual labels:  photos, face-detection
Facial-Recognition-Using-FaceNet-Siamese-One-Shot-Learning
Implementation of Facial Recognition System Using Facenet based on One Shot Learning Using Siamese Networks
Stars: ✭ 104 (+126.09%)
Mutual labels:  face-detection
AndroidBigImage
Automatically generate a new Android application to display, zoom and scroll on a big image!
Stars: ✭ 49 (+6.52%)
Mutual labels:  zoom
aspect-ratio-imageview
A simple imageview which scales the width or height aspect with the given ratio
Stars: ✭ 72 (+56.52%)
Mutual labels:  imageview
GenderRecognizer
Plain Face Detector & Gender Recognizer
Stars: ✭ 57 (+23.91%)
Mutual labels:  face-detection
obs-face-tracker
Face tracking plugin for OBS Studio
Stars: ✭ 185 (+302.17%)
Mutual labels:  face-detection
react-easy-panzoom
Wrapper to enable pan and zoom features for any React component
Stars: ✭ 69 (+50%)
Mutual labels:  zoom
ImageUI
A photo browser inspired by Apple Photos app
Stars: ✭ 44 (-4.35%)
Mutual labels:  photos
TD-OpenCV3TOP
Touchdesigner OpenCV3 C++ TOP for FaceDetect
Stars: ✭ 90 (+95.65%)
Mutual labels:  face-detection
the-subway-of-china
中国地铁图
Stars: ✭ 104 (+126.09%)
Mutual labels:  zoom

FaceAware for Android Studio

License
FaceAware is zoom library to face for Android.

Let me show how to use this library:

Setup

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    def faceAwareVersion = "3.0.0"
    implementation "com.github.memishood:FaceAware-Android:$faceAwareVersion"
}

XML

<tr.com.emrememis.library.FaceAware
    android:id="@+id/faceAware"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@your_image"/>

Kotlin

        faceAware.setImageResource(R.drawable.test)
        //or
        faceAware.setImageDrawable(ActivityCompat.getDrawable(this,R.drawable.test))
        //or
        faceAware.setImageBitmap(BitmapFactory.decodeResource(resources,R.drawable.test))
        //or
        Glide.with(this).load(R.drawable.test).into(faceAware)

For better understanding

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