일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- Hyperparameters
- dataloader
- 실렉션
- camerax
- TicTacToe
- Operating System
- 카티션 곱
- 데이터베이스
- 운영체제
- kernel
- 정규화
- process
- 세미조인
- Database
- OS
- mode bit
- backpropagate
- 중첩질의
- SQL
- 조인
- Program Execution
- System Structure
- RuntimeError
- Arificial Intelligence
- 디비전 연산자
- pytorch
- Artifical Intelligence
- AI
- 비지도학습
- 동기식 입출력
- Today
- Total
목록Development/Android Studio (2)
aajin126's devlog

윤곽은 얼굴 특징의 형태를 나타내는 점들의 집합입니다. 다음 이미지는 이러한 점들이 얼굴에 매핑되는 방식을 보여줍니다. 프로젝트 수준 build.gradle 파일의 buildscript 및 allprojects 섹션에 Google의 Maven 저장소가 포함되어야 합니다.모듈의 앱 수준 Gradle 파일(일반적으로 app/build.gradle)에 ML Kit Android 라이브러리의 종속 항목을 추가합니다. 필요에 따라 다음 종속 항목 중 하나를 선택합니다.모델을 앱과 번들로 묶는 방법은 다음과 같습니다.dependencies { // ... // Use this dependency to bundle the model with your app implementation 'com.google.mlk..

프로젝트 생성 build.gradle 모듈 파일에 코드를 추가한다. gradle 버전이 낮으면 groovy를 사용하여 def camerax_version 으로 사용해도 되지만 8.0 이상일 경우에는 val camerax_version으로 써주어야 한다. def camerax_version = "1.1.0-beta01" implementation "androidx.camera:camera-core:${camerax_version}" implementation "androidx.camera:camera-camera2:${camerax_version}" implementation "androidx.camera:camera-lifecycle:${camerax_version}" implementation "and..