October 2018
Intermediate to advanced
246 pages
6h 26m
English
This application is compiled with the following dependency for TensorFlow, which will pull the latest version:
allprojects { repositories { jcenter() }}dependencies { compile 'org.tensorflow:tensorflow-android:+'}
We will create a .CameraActivity, which will be the launcher activity of the application. This is defined in the AndroidManifest.xml file:
<activity android:name=".CameraActivity" android:icon="@mipmap/ic_launcher"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter></activity>
Read now
Unlock full access