본문 바로가기

전체 글172

Pycharm에 conda 가상환경 적용법 Pycharm에 conda 가상환경 적용법 1. 우측 상단에 설정 버튼 클릭 후 Settings..를 클릭 2. 좌측 검색창에 Python Interpreter 검색 후 우측에 있는 Add interpreter 클릭(초록색 박스) 후 Add Local Interpreter 클릭 3. 좌측 Conda Environemnt로 변경한 후 Use existing environment 클릭 4. 내가 만들어둔 Conda 가상환경 클릭 후 Ok 누르면 끝 2024. 3. 11.
MMDetection 공부하기 config_file과 checkpoint_file은 MMDetection 문서에 Get Start 부분에서 다운 받으면 됨 참고로 python 파일은 mmdetection 폴더에 생성했습니다. 데모에 있는 이미지를 inference 후 print 해본 것 # 간략하게 print(result)만 해보는 Tutorial from mmdet.apis import init_detector, inference_detector config_file = 'rtmdet_tiny_8xb32-300e_coco.py' checkpoint_file = 'rtmdet_tiny_8xb32-300e_coco_20220902_112414-78e30dcc.pth' img = 'demo/demo.jpg' model = init_det.. 2024. 3. 7.
MMDetection mim install "mmcv>=2.0.0" 설치 중 에러 떴을 시.. 위에와 같은 에러가 뜨는데 그랬을 땐 다음과 같이 입력해보자.. pip install torch==2.0.0 torchvision==0.15.1 설치가 잘 되었다.. 참고한 사이트: https://github.com/open-mmlab/mmcv/issues/2938 [Bug] Could not build wheels for mmcv, which is required to install pyproject.toml-based projects · Issue #2938 · open-mmlab/m Prerequisite I have searched Issues and Discussions but cannot get the expected help. The bug has not been fixed in the la.. 2024. 3. 6.
Zibra Liquids - 1 1. 환경 설치 -> 대충 Plane과 Cube 세우고 Material 넣어줌 2. Reflection Probe Bake -> 환경 전체에 덮어 씌운 뒤 Bake 3. Zibra Liquid 게임 상에 넣기 4. Zibra Liquid 설정 -> Reflection probe 넣으라고 빨간색으로 경고가 나오는데 2번 Bake한 Reflection Probe 넣기 -> Edit Container Area 조절하기 (물이 어디까지 나올지 범위 정하는 듯) 5. 조절 완료한 Zibra Liquids -> Zibra Liquid 자식 객체에 있는 ZibraLiquid Emitter는 물이 나오는 위치 Position을 변경시키면 위치 조절이 가능함 6. ZibraLiquid Emiiter 위치 조절 7. Sc.. 2023. 9. 27.