├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── ReadMe.md ├── __init__.py ├── example_workflows ├── circular_padding.json ├── crop_and_paste.json ├── cubemap2equirectangular.json ├── equirectangular2equirectangular.json ├── equirectangular2perspective.json ├── example_basic_equi2cubemap2equi.png ├── example_basic_equi2cubemap2split2equi.png ├── masked_seam_removal.json ├── roll_image.json └── split_and_merge_faces.json ├── nodes.py ├── pyproject.toml └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/ReadMe.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/circular_padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/circular_padding.json -------------------------------------------------------------------------------- /example_workflows/crop_and_paste.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/crop_and_paste.json -------------------------------------------------------------------------------- /example_workflows/cubemap2equirectangular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/cubemap2equirectangular.json -------------------------------------------------------------------------------- /example_workflows/equirectangular2equirectangular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/equirectangular2equirectangular.json -------------------------------------------------------------------------------- /example_workflows/equirectangular2perspective.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/equirectangular2perspective.json -------------------------------------------------------------------------------- /example_workflows/example_basic_equi2cubemap2equi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/example_basic_equi2cubemap2equi.png -------------------------------------------------------------------------------- /example_workflows/example_basic_equi2cubemap2split2equi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/example_basic_equi2cubemap2split2equi.png -------------------------------------------------------------------------------- /example_workflows/masked_seam_removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/masked_seam_removal.json -------------------------------------------------------------------------------- /example_workflows/roll_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/roll_image.json -------------------------------------------------------------------------------- /example_workflows/split_and_merge_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/example_workflows/split_and_merge_faces.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/ComfyUI_pytorch360convert/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytorch360convert --------------------------------------------------------------------------------