본문 바로가기

view

(3)
[3D Gaussian Splatting 간단한 논문 리뷰] *Gaussian Splatting에 대한 간단한 논문 리뷰 입니다!*이해를 돕기 위해 수식은 거의 제외했습니다. GS 논문: repo-sam.inria.fr/fungraph/3d-gaussian-splatting/3d_gaussian_splatting_high.pdf GS github: 3D Gaussian Splatting for Real-Time Radiance Field Rendering (inria.fr) 3D Gaussian Splatting for Real-Time Radiance Field Rendering[Müller 2022] Müller, T., Evans, A., Schied, C. and Keller, A., 2022. Instant neural graphics primitives..
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead. (Smplx 실행 에러) 갑자기 .view() function에 에러가 있다고 발생했다. 이 문제를 어떻게 해결할까? # smplx/lbs.py # Error code (below) transforms_mat = transform_mat( rot_mats.view(-1, 3, 3), rel_joints.view(-1, 3, 1)).view(-1, joints.shape[1], 4, 4) 위의 코드 block에서 오류가 일어난 상황이다. # smplx/lbs.py # Change code (below) transforms_mat = transform_mat( rot_mats.view(-1, 3, 3), rel_joints.contiguous().view(-1, 3, 1)).view(-1, joints.shape[1], 4, 4) ..
What is difference between Explicit view and Implicit view? 캡스톤(졸업 프로젝트)을 준비하면서 NeRF와 관련된 논문들을 수없이 살펴보고 있는데, 자꾸 거슬리는 단어가 있었다. 바로 Explicit와 Implicit이다. 그리고 더 나아가서 Explicit view와 Implicit view 이런식으로 많이 논문에서 표현이 되는데 확실하게 이해하지 않으면 추후에 힘들어질 것 같아서 정리를 해야겠다고 생각이 들었다!! Some Example Meanings Explicit: 명시적, 명쾌하게, 분명히 Implicit: 암묵적, 암시된, 내포된 각각의 논문들을 살펴보면, Explicit view와 Implicit view에 대해서 서술한 논문들이 정말 많은데, 각각에 대해서 공통된 점을 발견하였다!! 1. Explicit view라고 하면 images안에 명확한 객..

반응형