본문 바로가기

전체 글73

OpenPose 설치 linux ubuntu 22.04 OpenPose 설치하는 방법에 대해 알아보겠습니다. 아래 링크를 통해 대략적인 설치 방법을 확인할 수 있습니다.https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/installation/0_index.md준비물OpenPose githubcmake (cmake 3.22 버전 이용했어요.) cmake 설치하기 업데이트하기 버전 변경cuda & cudnn 설치하기 CUDA/CuDNN 설치하기protocbuf (이번에 하면서 가장 힘들었던 것.)설치OpenPose github우선 OpenPose github를 clone 해주세요.https://github.com/CMU-Perceptual-Computing-Lab/openpose G.. 2025. 1. 12.
[논문 리뷰] DreamFusion 간단 정리 SDS loss Scoring distillation sampling (SDS) loss를 처음 제안한 논문인 DreamFusion에 대해 정리하겠습니다.논문 arxiv, project pageIntroductionSDS loss를 제안하게 된 배경은 2D diffusion model을 이용해서 text-to-3D를 하기 위함입니다. 기존의 text-to-2D diffusion model은 사용자의 입력 text에 맞게 2D 이미지를 잘 생성합니다. 이러한 2D diffusion model의 prior를 이용하여 3D 생성에도 이용해보고자 합니다. SDS loss를 이용하여 NeRF의 MLP를 학습하는 방법에 대해 알아봅시다.Method프레임워크 이미지를 바로 보면 이해가 되지 않아 아래의 동영상을 순서대로 보시면 어떻.. 2025. 1. 11.
pytorch3d를 이용한 normal map 렌더링 pytorch3d를 이용하여 normal map을 렌더링 하는 방법에 대해 알아보겠습니다. PyTorch3D · A library for deep learning with 3D dataA library for deep learning with 3D datapytorch3d.org 아래의 예시 obj 파일을 다운로드하여 이용해주세요. 코드from pytorch3d.io import load_objs_as_meshes, load_objfrom pytorch3d.renderer import ( BlendParams, MeshRenderer, MeshRasterizer, FoVPerspectiveCameras, RasterizationSettings, HardPhongShader, Materi.. 2025. 1. 9.
GLOMAP 설치 및 실행 (COLMAP) 이번 ECCV 2024에 나온 GLOMAP이라는 논문의 코드이며, COLMAP과 비슷한 일을 합니다.이미지로부터 3D point clound를 만들어줍니다.https://arxiv.org/html/2407.20219 Global Structure-from-Motion RevisitedGlobal Structure-from-Motion Revisited Linfei Pan1    Dániel Baráth1    Marc Pollefeys1,2    Johannes L. Schönberger2 1 ETH Zurich   2 Microsoft Abstract Recovering 3D structure and camera motion from images has been a long-standing focarx.. 2024. 10. 5.
cmake 설치하기 업데이트하기 버전 변경 cmake 설치PC환경: ubuntu 22.04제 우분투 환경에서 현재 3.22 버전의 cmake가 설치되어 있습니다. 3.30으로 업그레이드하고 싶습니다. 아래 링크에서 최신 버전의 cmake tar 파일을 다운로드해주세요.https://cmake.org/download/ Download CMakeYou can either download binaries or source code archives for the latest stable or previous release or access the current development (aka nightly) distribution through Git. This software may not be exported in violation of any U.S.. 2024. 10. 5.
Imported target freeimage::FreeImage includes non-existent path 에러 해결 상황PC 환경: ubuntu 22.04, cmake 3.30.4glomap을 설치하다가 생긴 오류.GLOMAP 설치 및 실행 (COLMAP)FreeImage를 설치하면 됩니다.해결sudo apt install libfreeimage-dev 2024. 10. 5.