Simple Android face recognition application using CameraKit API and IBM Watson Visual Recognition Service.
implementation 'com.wonderkiln:camerakit:0.13.1'
implementation 'com.ibm.watson.developer_cloud:java-sdk:6.0.0
- Android SDK 27
- Android Build Tools v27.0.3
- Access to IBM Cloud
- Log in to IBM Cloud at https://console.bluemix.net.
- In the IBM Cloud Catalog, select the Visual Recognition service.
- Create and write a unique name for your service in the Service name field.
- Click Create.
- Copy your credentials:
- Click Service Credentials to view your service credentials.
- Copy your
apikey
.
-
Clone this repository. You can use
git clone
command:$ git clone https://github.com/adamzv/FaceRecognitionApp.git
or you can Download ZIP.
-
Import this project in Android Studio.
-
Create credentials.xml resource file in
app/res/values
folder to store Visual Recognitionapikey
and APIversion
. Latest APIversion
is2018-03-19
.<resources> <string name="visual_recognition_apikey">{your_apikey}</string> <string name="visual_recognition_version">{vesion}</string> </resources>