├── .gitignore ├── 1. pre-requisites ├── Rec. 2020.icc ├── 🜃 Adobe Standard to Linear.cube └── 🜃 Adobe Standard to Linear.xmp ├── 2. reversing the negative ├── colorchecker reference color values │ ├── ColorChecker Classic_Lab.tif │ └── ColorChecker SG_Lab.tif ├── density balance script │ └── density balance.js ├── inversion luts │ ├── 10^x.01_4.cube │ ├── density.cube │ ├── inv_density.cube │ └── inverse_01.cube ├── negative reversal template │ ├── 1. Negative inversion and edit in PS_REC.2020.tif │ └── 2. Negative inversion in PS_edit in Lr_REC.2020.tif ├── photoshop actions │ └── 🜃 Color Negative Inversion.atn └── print paper LUTs │ ├── 1. paper_a_fogged black and white.cube │ ├── 2. paper_a_0% black_fogged white.cube │ ├── 3. paper_a_100% white_fogged blacks.cube │ └── 4. paper_a_100% black and white.cube ├── 3. extraction ├── Create .XMP profile.png ├── extract negative conversion │ └── Neutral_64.png └── lutCreator.js - Create Luts.webloc ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /1. pre-requisites/Rec. 2020.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/1. pre-requisites/Rec. 2020.icc -------------------------------------------------------------------------------- /1. pre-requisites/🜃 Adobe Standard to Linear.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/1. pre-requisites/🜃 Adobe Standard to Linear.cube -------------------------------------------------------------------------------- /1. pre-requisites/🜃 Adobe Standard to Linear.xmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/1. pre-requisites/🜃 Adobe Standard to Linear.xmp -------------------------------------------------------------------------------- /2. reversing the negative/colorchecker reference color values/ColorChecker Classic_Lab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/colorchecker reference color values/ColorChecker Classic_Lab.tif -------------------------------------------------------------------------------- /2. reversing the negative/colorchecker reference color values/ColorChecker SG_Lab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/colorchecker reference color values/ColorChecker SG_Lab.tif -------------------------------------------------------------------------------- /2. reversing the negative/density balance script/density balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/density balance script/density balance.js -------------------------------------------------------------------------------- /2. reversing the negative/inversion luts/10^x.01_4.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/inversion luts/10^x.01_4.cube -------------------------------------------------------------------------------- /2. reversing the negative/inversion luts/density.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/inversion luts/density.cube -------------------------------------------------------------------------------- /2. reversing the negative/inversion luts/inv_density.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/inversion luts/inv_density.cube -------------------------------------------------------------------------------- /2. reversing the negative/inversion luts/inverse_01.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/inversion luts/inverse_01.cube -------------------------------------------------------------------------------- /2. reversing the negative/negative reversal template/1. Negative inversion and edit in PS_REC.2020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/negative reversal template/1. Negative inversion and edit in PS_REC.2020.tif -------------------------------------------------------------------------------- /2. reversing the negative/negative reversal template/2. Negative inversion in PS_edit in Lr_REC.2020.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/negative reversal template/2. Negative inversion in PS_edit in Lr_REC.2020.tif -------------------------------------------------------------------------------- /2. reversing the negative/photoshop actions/🜃 Color Negative Inversion.atn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/photoshop actions/🜃 Color Negative Inversion.atn -------------------------------------------------------------------------------- /2. reversing the negative/print paper LUTs/1. paper_a_fogged black and white.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/print paper LUTs/1. paper_a_fogged black and white.cube -------------------------------------------------------------------------------- /2. reversing the negative/print paper LUTs/2. paper_a_0% black_fogged white.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/print paper LUTs/2. paper_a_0% black_fogged white.cube -------------------------------------------------------------------------------- /2. reversing the negative/print paper LUTs/3. paper_a_100% white_fogged blacks.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/print paper LUTs/3. paper_a_100% white_fogged blacks.cube -------------------------------------------------------------------------------- /2. reversing the negative/print paper LUTs/4. paper_a_100% black and white.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/2. reversing the negative/print paper LUTs/4. paper_a_100% black and white.cube -------------------------------------------------------------------------------- /3. extraction/Create .XMP profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/3. extraction/Create .XMP profile.png -------------------------------------------------------------------------------- /3. extraction/extract negative conversion/Neutral_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/3. extraction/extract negative conversion/Neutral_64.png -------------------------------------------------------------------------------- /3. extraction/lutCreator.js - Create Luts.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/3. extraction/lutCreator.js - Create Luts.webloc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemy-color/color-negative-inversion/HEAD/README.md --------------------------------------------------------------------------------