250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- CSS
- 블록체인
- netfunnel
- Python
- Kaikas
- chatGPT
- 공연티켓
- git
- nginx
- 라라벨
- PM2
- exceljs
- 회고
- threejs
- jquery
- Ai
- pagination
- 발행
- NextJS
- miniconda
- Laravel
- Remix
- 배포
- Setting
- nodejs
- nft
- metamask
- polygon
- node
- React
Archives
- Today
- Total
목록HDR (1)
박주니 개발 정리
python hdr 사이즈 줄이는 방법
이 작업을 하기 위해서는 hdr 파일이 있어야합니다. 1. HdrSizeControler.py 를 만들고 해당코드를 복사해서 붙여놓습니다. import cv2import numpy as np# HDR 파일 로드hdr_image = cv2.imread('poly_haven_studio_8k.hdr', cv2.IMREAD_ANYDEPTH | cv2.IMREAD_COLOR)# 해상도 줄이기 (2K로 줄이기)width = 2048height = int(hdr_image.shape[0] * (2048 / hdr_image.shape[1]))resized_hdr = cv2.resize(hdr_image, (width, height), interpolation=cv2.INTER_AREA)# 줄인 HDR 파일 저장o..
threejs
2024. 6. 16. 22:33