├── .gitignore ├── LICENSE.md ├── README.md ├── img ├── header.jpg └── thumbnail.jpg ├── pyproject.toml └── src ├── exposure-bands ├── README.md ├── example.png └── exposure-bands.nk ├── hsv └── hsv-expr.nk ├── imageCropDivide ├── ImageCropDivide.nk ├── README.md ├── doc │ └── img │ │ ├── node-img.png │ │ └── nodegraph-cover.png └── src │ ├── ImageCropDivide-template.nk │ ├── Write-master-template.nk │ ├── Write-pass-template.nk │ ├── btn-script-template.py │ ├── build.py │ └── combine-script.py ├── localorender ├── .test │ ├── launcher.bat │ ├── menu.py │ ├── preferences15.1.nk │ └── test-scene-1.nknc ├── CHANGELOG.md ├── README.md ├── img │ ├── cover.jpg │ └── screenshot-overview.png └── localorender.py ├── metadataToCamera ├── README.md ├── main-visual.png ├── tool-metadataToCamera-baker.py ├── tool-metadataToCamera-redshift.nk └── tool-metadataToCamera.nk ├── nodeToText ├── README.md ├── demo.json ├── demo.png └── node_to_text.py ├── ocio-allocation-transform-lg2 ├── README.md └── ocio-allocation-transform-lg2.blink ├── ocio-contrast-linear └── contrast-linear-ocio.expr.nk ├── ocio-contrast-log └── contrast-log-ocio.expr.nk ├── ocio-saturation └── ocio-saturation.expr.nk ├── primaries_inset ├── CHANGELOG.md ├── PrimariesInset.nk ├── README.md ├── doc │ └── img │ │ ├── demo-inset-off.png │ │ ├── demo-inset-on.png │ │ ├── demo-outset.png │ │ ├── demo-plot.gif │ │ └── demo.mp4 └── src │ ├── PrimariesInset.blink │ ├── PrimariesInset │ ├── PrimariesInset-template.nk │ ├── colorspace-preset-script.py │ └── generate-presets.py │ ├── PrimariesPlot.blink │ ├── README.md │ └── build.py └── whitebalance ├── README.md ├── WhiteBalance.nk ├── cover.png └── src ├── README.md ├── WhiteBalance-template.nk ├── WhiteBalance.blink └── build.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/README.md -------------------------------------------------------------------------------- /img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/img/header.jpg -------------------------------------------------------------------------------- /img/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/img/thumbnail.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/exposure-bands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/exposure-bands/README.md -------------------------------------------------------------------------------- /src/exposure-bands/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/exposure-bands/example.png -------------------------------------------------------------------------------- /src/exposure-bands/exposure-bands.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/exposure-bands/exposure-bands.nk -------------------------------------------------------------------------------- /src/hsv/hsv-expr.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/hsv/hsv-expr.nk -------------------------------------------------------------------------------- /src/imageCropDivide/ImageCropDivide.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/ImageCropDivide.nk -------------------------------------------------------------------------------- /src/imageCropDivide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/README.md -------------------------------------------------------------------------------- /src/imageCropDivide/doc/img/node-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/doc/img/node-img.png -------------------------------------------------------------------------------- /src/imageCropDivide/doc/img/nodegraph-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/doc/img/nodegraph-cover.png -------------------------------------------------------------------------------- /src/imageCropDivide/src/ImageCropDivide-template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/ImageCropDivide-template.nk -------------------------------------------------------------------------------- /src/imageCropDivide/src/Write-master-template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/Write-master-template.nk -------------------------------------------------------------------------------- /src/imageCropDivide/src/Write-pass-template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/Write-pass-template.nk -------------------------------------------------------------------------------- /src/imageCropDivide/src/btn-script-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/btn-script-template.py -------------------------------------------------------------------------------- /src/imageCropDivide/src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/build.py -------------------------------------------------------------------------------- /src/imageCropDivide/src/combine-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/imageCropDivide/src/combine-script.py -------------------------------------------------------------------------------- /src/localorender/.test/launcher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/.test/launcher.bat -------------------------------------------------------------------------------- /src/localorender/.test/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/.test/menu.py -------------------------------------------------------------------------------- /src/localorender/.test/preferences15.1.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/.test/preferences15.1.nk -------------------------------------------------------------------------------- /src/localorender/.test/test-scene-1.nknc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/.test/test-scene-1.nknc -------------------------------------------------------------------------------- /src/localorender/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/CHANGELOG.md -------------------------------------------------------------------------------- /src/localorender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/README.md -------------------------------------------------------------------------------- /src/localorender/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/img/cover.jpg -------------------------------------------------------------------------------- /src/localorender/img/screenshot-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/img/screenshot-overview.png -------------------------------------------------------------------------------- /src/localorender/localorender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/localorender/localorender.py -------------------------------------------------------------------------------- /src/metadataToCamera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/metadataToCamera/README.md -------------------------------------------------------------------------------- /src/metadataToCamera/main-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/metadataToCamera/main-visual.png -------------------------------------------------------------------------------- /src/metadataToCamera/tool-metadataToCamera-baker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/metadataToCamera/tool-metadataToCamera-baker.py -------------------------------------------------------------------------------- /src/metadataToCamera/tool-metadataToCamera-redshift.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/metadataToCamera/tool-metadataToCamera-redshift.nk -------------------------------------------------------------------------------- /src/metadataToCamera/tool-metadataToCamera.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/metadataToCamera/tool-metadataToCamera.nk -------------------------------------------------------------------------------- /src/nodeToText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/nodeToText/README.md -------------------------------------------------------------------------------- /src/nodeToText/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/nodeToText/demo.json -------------------------------------------------------------------------------- /src/nodeToText/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/nodeToText/demo.png -------------------------------------------------------------------------------- /src/nodeToText/node_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/nodeToText/node_to_text.py -------------------------------------------------------------------------------- /src/ocio-allocation-transform-lg2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/ocio-allocation-transform-lg2/README.md -------------------------------------------------------------------------------- /src/ocio-allocation-transform-lg2/ocio-allocation-transform-lg2.blink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/ocio-allocation-transform-lg2/ocio-allocation-transform-lg2.blink -------------------------------------------------------------------------------- /src/ocio-contrast-linear/contrast-linear-ocio.expr.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/ocio-contrast-linear/contrast-linear-ocio.expr.nk -------------------------------------------------------------------------------- /src/ocio-contrast-log/contrast-log-ocio.expr.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/ocio-contrast-log/contrast-log-ocio.expr.nk -------------------------------------------------------------------------------- /src/ocio-saturation/ocio-saturation.expr.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/ocio-saturation/ocio-saturation.expr.nk -------------------------------------------------------------------------------- /src/primaries_inset/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/CHANGELOG.md -------------------------------------------------------------------------------- /src/primaries_inset/PrimariesInset.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/PrimariesInset.nk -------------------------------------------------------------------------------- /src/primaries_inset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/README.md -------------------------------------------------------------------------------- /src/primaries_inset/doc/img/demo-inset-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/doc/img/demo-inset-off.png -------------------------------------------------------------------------------- /src/primaries_inset/doc/img/demo-inset-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/doc/img/demo-inset-on.png -------------------------------------------------------------------------------- /src/primaries_inset/doc/img/demo-outset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/doc/img/demo-outset.png -------------------------------------------------------------------------------- /src/primaries_inset/doc/img/demo-plot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/doc/img/demo-plot.gif -------------------------------------------------------------------------------- /src/primaries_inset/doc/img/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/doc/img/demo.mp4 -------------------------------------------------------------------------------- /src/primaries_inset/src/PrimariesInset.blink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/PrimariesInset.blink -------------------------------------------------------------------------------- /src/primaries_inset/src/PrimariesInset/PrimariesInset-template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/PrimariesInset/PrimariesInset-template.nk -------------------------------------------------------------------------------- /src/primaries_inset/src/PrimariesInset/colorspace-preset-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/PrimariesInset/colorspace-preset-script.py -------------------------------------------------------------------------------- /src/primaries_inset/src/PrimariesInset/generate-presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/PrimariesInset/generate-presets.py -------------------------------------------------------------------------------- /src/primaries_inset/src/PrimariesPlot.blink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/PrimariesPlot.blink -------------------------------------------------------------------------------- /src/primaries_inset/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/README.md -------------------------------------------------------------------------------- /src/primaries_inset/src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/primaries_inset/src/build.py -------------------------------------------------------------------------------- /src/whitebalance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/README.md -------------------------------------------------------------------------------- /src/whitebalance/WhiteBalance.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/WhiteBalance.nk -------------------------------------------------------------------------------- /src/whitebalance/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/cover.png -------------------------------------------------------------------------------- /src/whitebalance/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/src/README.md -------------------------------------------------------------------------------- /src/whitebalance/src/WhiteBalance-template.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/src/WhiteBalance-template.nk -------------------------------------------------------------------------------- /src/whitebalance/src/WhiteBalance.blink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/src/WhiteBalance.blink -------------------------------------------------------------------------------- /src/whitebalance/src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLixm/nuke-tools-lxm/HEAD/src/whitebalance/src/build.py --------------------------------------------------------------------------------