├── .gitignore ├── CHANGELOG.md ├── README.md ├── docs ├── cryptomatte_logo.svg ├── encryptomatteProperties.png ├── fusion.md ├── fusionInstallDefaults.png ├── fusionInstallUser.png ├── fusionUsageComp.png ├── fusionUsageFuseAdvanced.png ├── fusionUsageFuseControls.png ├── github-zip.png ├── gizmoProperties.png ├── header.png ├── nuke.md └── nukeScreenshot.jpg ├── fusion ├── Config │ └── cryptomatte_shortcuts.fu ├── Fuses │ └── Matte │ │ └── cryptomatte.fuse └── Modules │ └── Lua │ ├── cryptomatte_utilities.lua │ └── test_cryptomatte_utilities.lua ├── license.txt ├── nuke ├── Cryptomatte.gizmo ├── Encryptomatte.gizmo ├── cryptomatte_logo.png ├── cryptomatte_utilities.py ├── cryptomatte_utilities_tests.py ├── init.py ├── menu.py └── pymmh3.py ├── sample_images ├── bunny_CryptoAsset.exr ├── bunny_CryptoMaterial.exr ├── bunny_CryptoObject.exr ├── cornellBox_CryptoWildcard.0001.exr ├── cornellBox_CryptoWildcard.0002.exr ├── debug_images │ ├── about.md │ ├── multichannel.exr │ ├── sidecar_manifest.crypto_asset.json │ ├── sidecar_manifest.exr │ └── special_chars.exr ├── sidecar_manifest │ ├── bunny_CryptoObject.exr │ └── bunny_CryptoObject_manifest.json └── testGrid_CryptoObject.exr └── specification ├── IDmattes_poster.pdf └── cryptomatte_specification.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | .DS_Store 4 | *.pyc 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/README.md -------------------------------------------------------------------------------- /docs/cryptomatte_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/cryptomatte_logo.svg -------------------------------------------------------------------------------- /docs/encryptomatteProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/encryptomatteProperties.png -------------------------------------------------------------------------------- /docs/fusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusion.md -------------------------------------------------------------------------------- /docs/fusionInstallDefaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusionInstallDefaults.png -------------------------------------------------------------------------------- /docs/fusionInstallUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusionInstallUser.png -------------------------------------------------------------------------------- /docs/fusionUsageComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusionUsageComp.png -------------------------------------------------------------------------------- /docs/fusionUsageFuseAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusionUsageFuseAdvanced.png -------------------------------------------------------------------------------- /docs/fusionUsageFuseControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/fusionUsageFuseControls.png -------------------------------------------------------------------------------- /docs/github-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/github-zip.png -------------------------------------------------------------------------------- /docs/gizmoProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/gizmoProperties.png -------------------------------------------------------------------------------- /docs/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/header.png -------------------------------------------------------------------------------- /docs/nuke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/nuke.md -------------------------------------------------------------------------------- /docs/nukeScreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/docs/nukeScreenshot.jpg -------------------------------------------------------------------------------- /fusion/Config/cryptomatte_shortcuts.fu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/fusion/Config/cryptomatte_shortcuts.fu -------------------------------------------------------------------------------- /fusion/Fuses/Matte/cryptomatte.fuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/fusion/Fuses/Matte/cryptomatte.fuse -------------------------------------------------------------------------------- /fusion/Modules/Lua/cryptomatte_utilities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/fusion/Modules/Lua/cryptomatte_utilities.lua -------------------------------------------------------------------------------- /fusion/Modules/Lua/test_cryptomatte_utilities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/fusion/Modules/Lua/test_cryptomatte_utilities.lua -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/license.txt -------------------------------------------------------------------------------- /nuke/Cryptomatte.gizmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/Cryptomatte.gizmo -------------------------------------------------------------------------------- /nuke/Encryptomatte.gizmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/Encryptomatte.gizmo -------------------------------------------------------------------------------- /nuke/cryptomatte_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/cryptomatte_logo.png -------------------------------------------------------------------------------- /nuke/cryptomatte_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/cryptomatte_utilities.py -------------------------------------------------------------------------------- /nuke/cryptomatte_utilities_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/cryptomatte_utilities_tests.py -------------------------------------------------------------------------------- /nuke/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/init.py -------------------------------------------------------------------------------- /nuke/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/menu.py -------------------------------------------------------------------------------- /nuke/pymmh3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/nuke/pymmh3.py -------------------------------------------------------------------------------- /sample_images/bunny_CryptoAsset.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/bunny_CryptoAsset.exr -------------------------------------------------------------------------------- /sample_images/bunny_CryptoMaterial.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/bunny_CryptoMaterial.exr -------------------------------------------------------------------------------- /sample_images/bunny_CryptoObject.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/bunny_CryptoObject.exr -------------------------------------------------------------------------------- /sample_images/cornellBox_CryptoWildcard.0001.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/cornellBox_CryptoWildcard.0001.exr -------------------------------------------------------------------------------- /sample_images/cornellBox_CryptoWildcard.0002.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/cornellBox_CryptoWildcard.0002.exr -------------------------------------------------------------------------------- /sample_images/debug_images/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/debug_images/about.md -------------------------------------------------------------------------------- /sample_images/debug_images/multichannel.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/debug_images/multichannel.exr -------------------------------------------------------------------------------- /sample_images/debug_images/sidecar_manifest.crypto_asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/debug_images/sidecar_manifest.crypto_asset.json -------------------------------------------------------------------------------- /sample_images/debug_images/sidecar_manifest.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/debug_images/sidecar_manifest.exr -------------------------------------------------------------------------------- /sample_images/debug_images/special_chars.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/debug_images/special_chars.exr -------------------------------------------------------------------------------- /sample_images/sidecar_manifest/bunny_CryptoObject.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/sidecar_manifest/bunny_CryptoObject.exr -------------------------------------------------------------------------------- /sample_images/sidecar_manifest/bunny_CryptoObject_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/sidecar_manifest/bunny_CryptoObject_manifest.json -------------------------------------------------------------------------------- /sample_images/testGrid_CryptoObject.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/sample_images/testGrid_CryptoObject.exr -------------------------------------------------------------------------------- /specification/IDmattes_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/specification/IDmattes_poster.pdf -------------------------------------------------------------------------------- /specification/cryptomatte_specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psyop/Cryptomatte/HEAD/specification/cryptomatte_specification.pdf --------------------------------------------------------------------------------