CustomChar
1.0.0
귀하의 맞춤형 AI 문자 - 모든 하드웨어의 개인 비서! 이 프로젝트는 특정 플랫폼, 클라우드 서비스 또는 특수 하드웨어에 따라 게임, 시뮬레이션, 가상 어시스턴트 및 기타 응용 프로그램에 사용할 수있는 AI 문자를 생성 할 수있는 프레임 워크가됩니다.
저장소 복제 :
git clone https://github.com/nrl-ai/CustomChar --recursive
cd CustomChar종속성 설치 :
MacOS : 홈브류 사용
brew install sdl2 glew glfw3
brew install opencv
brew install ffmpeg # For video recording우분투에서 :
sudo apt-get install libsdl2-dev libglew-dev libglfw3-dev
sudo apt-get install libopencv-dev
sudo apt-get install ffmpeg # For video recordingWindows : VCPKG 사용, Git Bash 및 FFMPEG 사용.
vcpkg install sdl2:x64-windows glew:x64-windows glfw3:x64-windows
vcpkg install opencv[contrib,nonfree,ffmpeg,ipp]:x64-windows --recurseCustomchar 실행 파일 구축 :
mkdir build
cd build
cmake ..
make프로그램을 실행하기 전에 모델을 다운로드하십시오.
bash scripts/download-models.sh프로그램 실행 :
./customchar1 단계 : 먼저 Doxygen을 설치하십시오.
2 단계 : 문서 구축 :
doxygen Doxyfile.in 3 단계 : docs/_build/html 에서 HTML 문서를 배포합니다.
4 단계 : 최신 문서는 https://docs.customchar.com에 배포됩니다.
우리는이 프로젝트에 대한 모든 기여를 환영합니다.
scripts/format-code.sh 수동으로 실행하여 코드를 형식화하십시오. pre-commit install # Install pre-commit hook
bash scripts/format-code.sh # Format code (C++ styling)