본문 바로가기

Projects13

SAM - Kadir Nar의 metaseg https://colab.research.google.com/drive/1UsuYbxb1lWbkWly_vizLPLlJ35_h0bs0#scrollTo=TH_FlG5leB1B Google Colaboratory Notebook Run, share, and edit Python notebooks colab.research.google.com 이 자습서에서는 Kadir Nar의 metaseg 라는 라이브러리를 사용하여 이미지 및 비디오 분할을 위해 Facebook SAM에 쉽게 액세스하고 사용할 수 있습니다. [ !pip install metaseg Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/.. 2023. 5. 14.
TTS - Bark 음성 대화에 필요한 3가지 AI가 모두 공개 되었습니다. TTS모델 Bark 공개. 깃헙: https://github.com/suno-ai/bark 코랩: https://colab.research.google.com/drive/1Ot22n5fWZ6YiFP_xXD5Ji2GB2OSbrDH_?usp Fork 프로젝트들: git fork된 것을 사용해서 업그레이드 및 기능추가 webui : https://github.com/Fictiverse/bark 15초 이상 지원 : https://github.com/JonathanFly/bark 보이스 클로닝 : https://github.com/serp-ai/bark-with-voice-clone 라이센스: 코드 자체는 무료이나 현 버전은 상업적목적으로 사용하려는 경우.. 2023. 5. 1.
Blazepose 3d Avatar Simple Mediapipe의 unity version으로 Blazepose가 있습니다. https://github.com/homuler/MediaPipeUnityPlugin 간단하게 3D Avatar에게 적용해 본코드 입니다. Avatar는 https://www.mixamo.com/ 에서 T포즈를 하고 있는 x bot.fbx를 다운받아서 사용했습니다. using System.Collections; using System.Collections.Generic; using Mediapipe; using Mediapipe.Unity; using UnityEngine; public class Test : MonoBehaviour { public Transform LeftForearm; public Transform Lef.. 2023. 5. 1.
I am trying to find between the toes using opencv for photos taken from the top of the feet. opencv 발가락 사이의 위치를 구하기 Load the image using imread function in OpenCV for Unity. Mat img = Cv2.ImRead("path/to/image.jpg"); Convert the image to grayscale using the cvtColor function. Mat grayImg = new Mat(); Cv2.CvtColor(img, grayImg, ColorConversionCodes.BGR2GRAY); Apply a threshold to the image to separate the toes from the rest of the foot using the threshold function. Mat thresholdImg = new.. 2023. 4. 13.