[RN] React Native Tensorflow.js 활용하기 : Tensor to Image
·
React & React Native/라이브러리 활용
해당 글에서는 Tensorflow에서 TesorCamera로 출력된 값을 이미지로 출력하는 방법에 대해서 공유합니다. 1) 모델 불러오기 💡 React-native에서 Tensorflow의 backend를 지정하고 모델을 불러옵니다.1. useEffect 후 initStudyReady 함수를 호출합니다.2. initStudyReady() 함수에서는 Tensorflow.js를 로드합니다.import * as tf from "@tensorflow/tfjs";/** * 최초 Tensor를 사용하기 위한 모델을 불러옵니다. */useEffect(() => { initStudyReady()}, []);/*** 모델 로드** @return {Promise}*/const initStudyReady = asyn..