gradle:app 에
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.colorizer"
minSdkVersion 26
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}
aaptOptions {
noCompress "tflite"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
version "3.10.2"
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(path: ':opencv')
implementation 'org.tensorflow:tensorflow-lite:+'
}
하얗게 표시된 부분 추가
'Python Library > TensorFlow' 카테고리의 다른 글
[Lite] 안드로이드 프로젝트 이름 변경방법 ( 스택오버플로) (0) | 2019.09.08 |
---|---|
Keras 대용량 데이터 처리를 위한 Custom Generator 스택 오버플로우 글 (0) | 2019.09.08 |
[Pycharm] '_xsrf' argument missing from POST 오류 해결법 (0) | 2019.08.29 |
[cycleGAN] keras contrib 설치 (0) | 2019.08.28 |
LMDB 불러오기 ( LSUN 데이터 셋 ) (0) | 2019.08.26 |