Metadata-Version: 2.1
Name: cubemap2pano
Version: 0.0.1
Summary: Convert cubemap to equirectangular panorama image
Home-page: https://github.com/serpong/cubemap2pano
Author: serpong
Author-email: tykim@xrleader.co.kr
Keywords: panorama,cubemap,equirectangular,image,360,vr
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Image Processing
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: torch
Requires-Dist: torchvision

# cubemap2pano

`cubemap2pano`는 큐브맵 이미지를 등각 원통형 파노라마 이미지로 변환하는 Python 패키지입니다.

## 설치

```bash
pip install cubemap2pano
```

## 사용법

다음은 `cubemap2pano` 패키지를 사용하는 예제입니다:

```python

from cubemap2pano import cubemap2pano

if __name__ == "__main__":
    HEIGHT = 1024
    WIDTH = HEIGHT * 2

    cubemap_paths = [
        ([ "./F.jpg", "./R.jpg", "./B.jpg", "./L.jpg", "./U.jpg", "./D.jpg"], "./result/pano.jpg")
    ]
    cubemap2pano(WIDTH, HEIGHT, cubemap_paths)
```
