├── .gitattributes ├── .gitignore ├── README.md ├── cocksmithing.md └── images ├── BubbleTrap.png ├── CrushDepthDemolding.jpg ├── CrushDepthFinishedQueerSwirl.jpg ├── CrushDepthGloveMoldLayer1.jpg ├── CrushDepthGloveMoldLayer2.jpg ├── CrushDepthGloveMoldTrimmed.jpg ├── CrushDepthMixDegassing.jpg ├── CrushDepthModelFixture.jpg ├── CrushDepthModelFootSeal.jpg ├── CrushDepthModelMounted.jpg ├── CrushDepthModelPrint.jpg ├── CrushDepthModelSmoothed.jpg ├── CrushDepthPourLayout.jpg ├── CrushDepthPourMixNebula.jpg ├── CrushDepthPourMmix.jpg ├── CrushDepthPourReady.jpg ├── CrushDepthShellScaffoldFin.jpg ├── CrushDepthSupportShellA.jpg ├── CrushDepthSupportShellB1.jpg ├── CrushDepthSupportShellB2.jpg ├── CrushDepthZbrushModel.png ├── MicaPigments.jpg ├── bubble trap.svg ├── finished toys ├── finished_black_green.jpg ├── finished_bluegreen.jpg ├── finished_bright_gradient.jpg ├── finished_green_daylight.jpg ├── finished_green_glow.jpg ├── finished_nebula.jpg ├── finished_pink_swirls.jpg ├── finished_purple_marble.jpg ├── finished_queer_swirl.jpg ├── finished_sky.jpg └── finished_springtime.jpg ├── marble_mix.jpg ├── marble_mix_gold.jpg ├── negation.jpg ├── silicone_pour.jpg ├── source images ├── converted │ ├── crush depth demolding-1.jpg │ ├── crush depth demolding-1.jpg.out.pp3 │ ├── crush depth demolding.jpg │ ├── crush depth demolding.jpg.out.pp3 │ ├── crush depth glove mold layer 1.jpg │ ├── crush depth glove mold layer 1.jpg.out.pp3 │ ├── crush depth glove mold layer 2.jpg │ ├── crush depth glove mold layer 2.jpg.out.pp3 │ ├── crush depth glove mold trimmed-1.jpg │ ├── crush depth glove mold trimmed-1.jpg.out.pp3 │ ├── crush depth glove mold trimmed.jpg │ ├── crush depth glove mold trimmed.jpg.out.pp3 │ ├── crush depth mix degassing.jpg │ ├── crush depth mix degassing.jpg.out.pp3 │ ├── crush depth model fixture.jpg │ ├── crush depth model fixture.jpg.out.pp3 │ ├── crush depth model foot seal.jpg │ ├── crush depth model foot seal.jpg.out.pp3 │ ├── crush depth model mounted.jpg │ ├── crush depth model mounted.jpg.out.pp3 │ ├── crush depth model print-1.jpg │ ├── crush depth model print-1.jpg.out.pp3 │ ├── crush depth model print.jpg │ ├── crush depth model print.jpg.out.pp3 │ ├── crush depth model smoothed.jpg │ ├── crush depth model smoothed.jpg.out.pp3 │ ├── crush depth pour layout.jpg │ ├── crush depth pour layout.jpg.out.pp3 │ ├── crush depth pour mix.jpg │ ├── crush depth pour mix.jpg.out.pp3 │ ├── crush depth pour mx nebula-1.jpg │ ├── crush depth pour mx nebula-1.jpg.out.pp3 │ ├── crush depth pour mx nebula.jpg │ ├── crush depth pour mx nebula.jpg.out.pp3 │ ├── crush depth pour ready.jpg │ ├── crush depth pour ready.jpg.out.pp3 │ ├── crush depth shell scaffold fin.jpg │ ├── crush depth shell scaffold fin.jpg.out.pp3 │ ├── crush depth support shell a.jpg │ ├── crush depth support shell a.jpg.out.pp3 │ ├── crush depth support shell b1.jpg │ ├── crush depth support shell b1.jpg.out.pp3 │ ├── crush depth support shell b2.jpg │ ├── crush depth support shell b2.jpg.out.pp3 │ ├── crush depth trim after.jpg │ ├── crush depth trim after.jpg.out.pp3 │ ├── crush depth trim before.jpg │ ├── crush depth trim before.jpg.out.pp3 │ ├── marbled mix gold.jpg │ ├── marbled mix gold.jpg.out.pp3 │ ├── mica pigments.jpg │ ├── mica pigments.jpg.out.pp3 │ ├── silicone pour.jpg │ └── silicone pour.jpg.out.pp3 ├── crush depth demolding.jpg ├── crush depth demolding.jpg.pp3 ├── crush depth glove mold layer 1.jpg ├── crush depth glove mold layer 1.jpg.pp3 ├── crush depth glove mold layer 2.jpg ├── crush depth glove mold layer 2.jpg.pp3 ├── crush depth glove mold trimmed.jpg ├── crush depth glove mold trimmed.jpg.pp3 ├── crush depth mix degassing.jpg ├── crush depth mix degassing.jpg.pp3 ├── crush depth model fixture.jpg ├── crush depth model fixture.jpg.pp3 ├── crush depth model foot seal.jpg ├── crush depth model foot seal.jpg.pp3 ├── crush depth model mounted.jpg ├── crush depth model mounted.jpg.pp3 ├── crush depth model print.jpg ├── crush depth model print.jpg.pp3 ├── crush depth model smoothed.jpg ├── crush depth model smoothed.jpg.pp3 ├── crush depth pour layout.jpg ├── crush depth pour layout.jpg.pp3 ├── crush depth pour mix.jpg ├── crush depth pour mix.jpg.pp3 ├── crush depth pour mx nebula.jpg ├── crush depth pour mx nebula.jpg.pp3 ├── crush depth pour ready.jpg ├── crush depth pour ready.jpg.pp3 ├── crush depth shell scaffold fin.jpg ├── crush depth shell scaffold fin.jpg.pp3 ├── crush depth support shell a.jpg ├── crush depth support shell a.jpg.pp3 ├── crush depth support shell b1.jpg ├── crush depth support shell b1.jpg.pp3 ├── crush depth support shell b2.jpg ├── crush depth support shell b2.jpg.pp3 ├── crush depth trim after.jpg ├── crush depth trim after.jpg.pp3 ├── crush depth trim before.jpg ├── crush depth zbrush screenshot side.png ├── crush depth zbrush screenshot top.png ├── marble mix.JPEG ├── marble mix.JPEG.pp3 ├── marbled mix gold.jpg ├── marbled mix gold.jpg.pp3 ├── marbled mix green.jpg ├── marbled mix green.jpg.pp3 ├── mica pigments.jpg ├── mica pigments.jpg.pp3 ├── negation fullsize.jpg ├── silicone pour.jpg ├── silicone pour.jpg.pp3 └── trimming.svg ├── trimming.png ├── undercut.png └── undercut.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cocksmithing.md.backup 2 | *.backup 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cocksmithing 2 | a guide to crafting professional-quality silicone dildos at home 3 | 4 | **[please refer to the main document cocksmithing.md](cocksmithing.md)** (should be visible as rendered markdown on github). 5 | -------------------------------------------------------------------------------- /images/BubbleTrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/BubbleTrap.png -------------------------------------------------------------------------------- /images/CrushDepthDemolding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthDemolding.jpg -------------------------------------------------------------------------------- /images/CrushDepthFinishedQueerSwirl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthFinishedQueerSwirl.jpg -------------------------------------------------------------------------------- /images/CrushDepthGloveMoldLayer1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthGloveMoldLayer1.jpg -------------------------------------------------------------------------------- /images/CrushDepthGloveMoldLayer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthGloveMoldLayer2.jpg -------------------------------------------------------------------------------- /images/CrushDepthGloveMoldTrimmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthGloveMoldTrimmed.jpg -------------------------------------------------------------------------------- /images/CrushDepthMixDegassing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthMixDegassing.jpg -------------------------------------------------------------------------------- /images/CrushDepthModelFixture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthModelFixture.jpg -------------------------------------------------------------------------------- /images/CrushDepthModelFootSeal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthModelFootSeal.jpg -------------------------------------------------------------------------------- /images/CrushDepthModelMounted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthModelMounted.jpg -------------------------------------------------------------------------------- /images/CrushDepthModelPrint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthModelPrint.jpg -------------------------------------------------------------------------------- /images/CrushDepthModelSmoothed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthModelSmoothed.jpg -------------------------------------------------------------------------------- /images/CrushDepthPourLayout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthPourLayout.jpg -------------------------------------------------------------------------------- /images/CrushDepthPourMixNebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthPourMixNebula.jpg -------------------------------------------------------------------------------- /images/CrushDepthPourMmix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthPourMmix.jpg -------------------------------------------------------------------------------- /images/CrushDepthPourReady.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthPourReady.jpg -------------------------------------------------------------------------------- /images/CrushDepthShellScaffoldFin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthShellScaffoldFin.jpg -------------------------------------------------------------------------------- /images/CrushDepthSupportShellA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthSupportShellA.jpg -------------------------------------------------------------------------------- /images/CrushDepthSupportShellB1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthSupportShellB1.jpg -------------------------------------------------------------------------------- /images/CrushDepthSupportShellB2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthSupportShellB2.jpg -------------------------------------------------------------------------------- /images/CrushDepthZbrushModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/CrushDepthZbrushModel.png -------------------------------------------------------------------------------- /images/MicaPigments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/MicaPigments.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_black_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_black_green.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_bluegreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_bluegreen.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_bright_gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_bright_gradient.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_green_daylight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_green_daylight.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_green_glow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_green_glow.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_nebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_nebula.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_pink_swirls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_pink_swirls.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_purple_marble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_purple_marble.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_queer_swirl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_queer_swirl.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_sky.jpg -------------------------------------------------------------------------------- /images/finished toys/finished_springtime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/finished toys/finished_springtime.jpg -------------------------------------------------------------------------------- /images/marble_mix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/marble_mix.jpg -------------------------------------------------------------------------------- /images/marble_mix_gold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/marble_mix_gold.jpg -------------------------------------------------------------------------------- /images/negation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/negation.jpg -------------------------------------------------------------------------------- /images/silicone_pour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/silicone_pour.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth demolding-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth demolding-1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth demolding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth demolding.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth glove mold layer 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth glove mold layer 1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth glove mold layer 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth glove mold layer 2.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth glove mold trimmed-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth glove mold trimmed-1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth glove mold trimmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth glove mold trimmed.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth mix degassing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth mix degassing.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model fixture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model fixture.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model foot seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model foot seal.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model mounted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model mounted.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model print-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model print-1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model print.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model smoothed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth model smoothed.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth model smoothed.jpg.out.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=0.01 14 | Brightness=0 15 | Contrast=31 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=1 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.002 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=297 277 | Y=194 278 | W=3425 279 | H=2569 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.27000000000000002 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/converted/crush depth pour layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth pour layout.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth pour mix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth pour mix.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth pour mx nebula-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth pour mx nebula-1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth pour mx nebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth pour mx nebula.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth pour ready.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth pour ready.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth shell scaffold fin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth shell scaffold fin.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth shell scaffold fin.jpg.out.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=-0.1690119132399559 14 | Brightness=0 15 | Contrast=22 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=202 277 | Y=128 278 | W=3669 279 | H=2752 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.25 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/converted/crush depth support shell a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth support shell a.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth support shell b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth support shell b1.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth support shell b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth support shell b2.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth trim after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth trim after.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth trim after.jpg.out.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=false 12 | Clip=0.02 13 | Compensation=0 14 | Brightness=0 15 | Contrast=0 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=No 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=none 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=false 276 | X=-1 277 | Y=-1 278 | W=4033 279 | H=3025 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=1 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(cameraICC) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.9231 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame= 574 | DarkFrameAuto=false 575 | FlatFieldFile= 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/converted/crush depth trim before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/crush depth trim before.jpg -------------------------------------------------------------------------------- /images/source images/converted/crush depth trim before.jpg.out.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=-1 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=false 12 | Clip=0.02 13 | Compensation=0 14 | Brightness=0 15 | Contrast=0 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=-1 167 | Green=-1 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=No 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=none 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=false 276 | X=-1 277 | Y=-1 278 | W=15000 279 | H=15000 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=1 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(cameraICC) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.9231 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame= 574 | DarkFrameAuto=false 575 | FlatFieldFile= 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/converted/marbled mix gold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/marbled mix gold.jpg -------------------------------------------------------------------------------- /images/source images/converted/mica pigments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/mica pigments.jpg -------------------------------------------------------------------------------- /images/source images/converted/silicone pour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/converted/silicone pour.jpg -------------------------------------------------------------------------------- /images/source images/crush depth demolding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth demolding.jpg -------------------------------------------------------------------------------- /images/source images/crush depth glove mold layer 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth glove mold layer 1.jpg -------------------------------------------------------------------------------- /images/source images/crush depth glove mold layer 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth glove mold layer 2.jpg -------------------------------------------------------------------------------- /images/source images/crush depth glove mold trimmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth glove mold trimmed.jpg -------------------------------------------------------------------------------- /images/source images/crush depth mix degassing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth mix degassing.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model fixture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth model fixture.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model foot seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth model foot seal.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model mounted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth model mounted.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth model print.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model smoothed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth model smoothed.jpg -------------------------------------------------------------------------------- /images/source images/crush depth model smoothed.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=0.01 14 | Brightness=0 15 | Contrast=31 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=1 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.002 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=297 277 | Y=194 278 | W=3425 279 | H=2569 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.27000000000000002 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth pour layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth pour layout.jpg -------------------------------------------------------------------------------- /images/source images/crush depth pour layout.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=-0.24368377774953842 14 | Brightness=0 15 | Contrast=22 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=473 277 | Y=455 278 | W=3409 279 | H=2557 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.26000000000000001 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth pour mix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth pour mix.jpg -------------------------------------------------------------------------------- /images/source images/crush depth pour mx nebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth pour mx nebula.jpg -------------------------------------------------------------------------------- /images/source images/crush depth pour ready.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth pour ready.jpg -------------------------------------------------------------------------------- /images/source images/crush depth shell scaffold fin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth shell scaffold fin.jpg -------------------------------------------------------------------------------- /images/source images/crush depth shell scaffold fin.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=-0.1690119132399559 14 | Brightness=0 15 | Contrast=22 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=202 277 | Y=128 278 | W=3669 279 | H=2752 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.25 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth support shell a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth support shell a.jpg -------------------------------------------------------------------------------- /images/source images/crush depth support shell a.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=0.055643916130065918 14 | Brightness=0 15 | Contrast=26 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=8 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=338 277 | Y=145 278 | W=3601 279 | H=2701 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.25 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth support shell b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth support shell b1.jpg -------------------------------------------------------------------------------- /images/source images/crush depth support shell b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth support shell b2.jpg -------------------------------------------------------------------------------- /images/source images/crush depth support shell b2.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=-0.089752286672592163 14 | Brightness=0 15 | Contrast=30 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=411 277 | Y=207 278 | W=3551 279 | H=2663 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.25 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth trim after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth trim after.jpg -------------------------------------------------------------------------------- /images/source images/crush depth trim after.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=false 12 | Clip=0.02 13 | Compensation=0 14 | Brightness=0 15 | Contrast=0 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=No 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=none 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=false 276 | X=-1 277 | Y=-1 278 | W=4033 279 | H=3025 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=1 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(cameraICC) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.9231 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame= 574 | DarkFrameAuto=false 575 | FlatFieldFile= 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/crush depth trim before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth trim before.jpg -------------------------------------------------------------------------------- /images/source images/crush depth zbrush screenshot side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth zbrush screenshot side.png -------------------------------------------------------------------------------- /images/source images/crush depth zbrush screenshot top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/crush depth zbrush screenshot top.png -------------------------------------------------------------------------------- /images/source images/marble mix.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/marble mix.JPEG -------------------------------------------------------------------------------- /images/source images/marble mix.JPEG.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=false 12 | Clip=0.02 13 | Compensation=0 14 | Brightness=0 15 | Contrast=0 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=No 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=none 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=false 276 | X=-1 277 | Y=-1 278 | W=2049 279 | H=1537 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=1 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(cameraICC) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.9231 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame= 574 | DarkFrameAuto=false 575 | FlatFieldFile= 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/marbled mix gold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/marbled mix gold.jpg -------------------------------------------------------------------------------- /images/source images/marbled mix gold.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=true 12 | Clip=0.02 13 | Compensation=-0.26476388424634933 14 | Brightness=0 15 | Contrast=23 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Custom 166 | Temperature=6667 167 | Green=1.0069999999999999 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=464 277 | Y=348 278 | W=3384 279 | H=2538 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.27000000000000002 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/marbled mix green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/marbled mix green.jpg -------------------------------------------------------------------------------- /images/source images/marbled mix green.jpg.pp3: -------------------------------------------------------------------------------- 1 | [Version] 2 | AppVersion=5.8 3 | Version=346 4 | 5 | [General] 6 | Rank=0 7 | ColorLabel=0 8 | InTrash=false 9 | 10 | [Exposure] 11 | Auto=false 12 | Clip=0.02 13 | Compensation=0 14 | Brightness=0 15 | Contrast=0 16 | Saturation=0 17 | Black=0 18 | HighlightCompr=0 19 | HighlightComprThreshold=0 20 | ShadowCompr=50 21 | HistogramMatching=false 22 | CurveFromHistogramMatching=false 23 | ClampOOG=true 24 | CurveMode=Standard 25 | CurveMode2=Standard 26 | Curve=0; 27 | Curve2=0; 28 | 29 | [HLRecovery] 30 | Enabled=false 31 | Method=Blend 32 | 33 | [Retinex] 34 | Enabled=false 35 | Str=20 36 | Scal=3 37 | Iter=1 38 | Grad=1 39 | Grads=1 40 | Gam=1.3 41 | Slope=3 42 | Median=false 43 | Neigh=80 44 | Offs=0 45 | Vart=200 46 | Limd=8 47 | highl=4 48 | skal=3 49 | RetinexMethod=high 50 | mapMethod=none 51 | viewMethod=none 52 | Retinexcolorspace=Lab 53 | Gammaretinex=none 54 | CDCurve=0; 55 | MAPCurve=0; 56 | CDHCurve=0; 57 | LHCurve=0; 58 | Highlights=0 59 | HighlightTonalWidth=80 60 | Shadows=0 61 | ShadowTonalWidth=80 62 | Radius=40 63 | TransmissionCurve=1;0;0.5;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 64 | GainTransmissionCurve=1;0;0.10000000000000001;0.34999999999999998;0;0.25;0.25;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.25;0.34999999999999998;0.34999999999999998;1;0.10000000000000001;0;0; 65 | 66 | [Local Contrast] 67 | Enabled=false 68 | Radius=80 69 | Amount=0.20000000000000001 70 | Darkness=1 71 | Lightness=1 72 | 73 | [Channel Mixer] 74 | Enabled=false 75 | Red=1000;0;0; 76 | Green=0;1000;0; 77 | Blue=0;0;1000; 78 | 79 | [Black & White] 80 | Enabled=false 81 | Method=Desaturation 82 | Auto=false 83 | ComplementaryColors=true 84 | Setting=RGB-Rel 85 | Filter=None 86 | MixerRed=33 87 | MixerOrange=33 88 | MixerYellow=33 89 | MixerGreen=33 90 | MixerCyan=33 91 | MixerBlue=33 92 | MixerMagenta=33 93 | MixerPurple=33 94 | GammaRed=0 95 | GammaGreen=0 96 | GammaBlue=0 97 | Algorithm=SP 98 | LuminanceCurve=0; 99 | BeforeCurveMode=Standard 100 | AfterCurveMode=Standard 101 | BeforeCurve=0; 102 | AfterCurve=0; 103 | 104 | [Luminance Curve] 105 | Enabled=false 106 | Brightness=0 107 | Contrast=0 108 | Chromaticity=0 109 | AvoidColorShift=false 110 | RedAndSkinTonesProtection=0 111 | LCredsk=true 112 | LCurve=0; 113 | aCurve=0; 114 | bCurve=0; 115 | ccCurve=0; 116 | chCurve=0; 117 | lhCurve=0; 118 | hhCurve=0; 119 | LcCurve=0; 120 | ClCurve=0; 121 | 122 | [Sharpening] 123 | Enabled=false 124 | Contrast=20 125 | Method=usm 126 | Radius=0.5 127 | BlurRadius=0.20000000000000001 128 | Amount=200 129 | Threshold=20;80;2000;1200; 130 | OnlyEdges=false 131 | EdgedetectionRadius=1.8999999999999999 132 | EdgeTolerance=1800 133 | HalocontrolEnabled=false 134 | HalocontrolAmount=85 135 | DeconvRadius=0.75 136 | DeconvAmount=100 137 | DeconvDamping=0 138 | DeconvIterations=30 139 | 140 | [Vibrance] 141 | Enabled=false 142 | Pastels=0 143 | Saturated=0 144 | PSThreshold=0;75; 145 | ProtectSkins=false 146 | AvoidColorShift=true 147 | PastSatTog=true 148 | SkinTonesCurve=0; 149 | 150 | [SharpenEdge] 151 | Enabled=false 152 | Passes=2 153 | Strength=50 154 | ThreeChannels=false 155 | 156 | [SharpenMicro] 157 | Enabled=false 158 | Matrix=false 159 | Strength=20 160 | Contrast=20 161 | Uniformity=5 162 | 163 | [White Balance] 164 | Enabled=true 165 | Setting=Camera 166 | Temperature=6490 167 | Green=1.0019899871615525 168 | Equal=1 169 | TemperatureBias=0 170 | 171 | [Color appearance] 172 | Enabled=false 173 | Degree=90 174 | AutoDegree=true 175 | Degreeout=90 176 | AutoDegreeout=true 177 | Surround=Average 178 | Surrsrc=Average 179 | AdaptLum=16 180 | Badpixsl=0 181 | Model=RawT 182 | Algorithm=JC 183 | J-Light=0 184 | Q-Bright=0 185 | C-Chroma=0 186 | S-Chroma=0 187 | M-Chroma=0 188 | J-Contrast=0 189 | Q-Contrast=0 190 | H-Hue=0 191 | RSTProtection=0 192 | AdaptScene=2000 193 | AutoAdapscen=true 194 | YbScene=18 195 | Autoybscen=true 196 | SurrSource=false 197 | Gamut=true 198 | Tempout=5000 199 | Greenout=1 200 | Tempsc=5000 201 | Greensc=1 202 | Ybout=18 203 | Datacie=false 204 | Tonecie=false 205 | CurveMode=Lightness 206 | CurveMode2=Lightness 207 | CurveMode3=Chroma 208 | Curve=0; 209 | Curve2=0; 210 | Curve3=0; 211 | 212 | [Impulse Denoising] 213 | Enabled=false 214 | Threshold=50 215 | 216 | [Defringing] 217 | Enabled=false 218 | Radius=2 219 | Threshold=13 220 | HueCurve=1;0.16666666699999999;0;0.34999999999999998;0.34999999999999998;0.34699999999999998;0;0.34999999999999998;0.34999999999999998;0.51366742600000004;0;0.34999999999999998;0.34999999999999998;0.66894457100000004;0;0.34999999999999998;0.34999999999999998;0.82877752459999998;0.97835991;0.34999999999999998;0.34999999999999998;0.99088838270000001;0;0.34999999999999998;0.34999999999999998; 221 | 222 | [Dehaze] 223 | Enabled=false 224 | Strength=50 225 | ShowDepthMap=false 226 | Depth=25 227 | Luminance=false 228 | 229 | [Directional Pyramid Denoising] 230 | Enabled=false 231 | Enhance=false 232 | Median=false 233 | Luma=0 234 | Ldetail=0 235 | Chroma=15 236 | Method=Lab 237 | LMethod=SLI 238 | CMethod=MAN 239 | C2Method=AUTO 240 | SMethod=shal 241 | MedMethod=soft 242 | RGBMethod=soft 243 | MethodMed=Lonly 244 | Redchro=0 245 | Bluechro=0 246 | Gamma=1.7 247 | Passes=1 248 | LCurve=1;0.050000000000000003;0.14999999999999999;0.34999999999999998;0.34999999999999998;0.55000000000000004;0.040000000000000001;0.34999999999999998;0.34999999999999998; 249 | CCCurve=1;0.050000000000000003;0.5;0.34999999999999998;0.34999999999999998;0.34999999999999998;0.050000000000000003;0.34999999999999998;0.34999999999999998; 250 | 251 | [EPD] 252 | Enabled=false 253 | Strength=0.5 254 | Gamma=1 255 | EdgeStopping=1.3999999999999999 256 | Scale=1 257 | ReweightingIterates=0 258 | 259 | [FattalToneMapping] 260 | Enabled=false 261 | Threshold=30 262 | Amount=20 263 | Anchor=50 264 | 265 | [Shadows & Highlights] 266 | Enabled=false 267 | Highlights=0 268 | HighlightTonalWidth=70 269 | Shadows=0 270 | ShadowTonalWidth=30 271 | Radius=40 272 | Lab=false 273 | 274 | [Crop] 275 | Enabled=true 276 | X=522 277 | Y=279 278 | W=3409 279 | H=2557 280 | FixedRatio=true 281 | Ratio=As Image 282 | Orientation=As Image 283 | Guide=Frame 284 | 285 | [Coarse Transformation] 286 | Rotate=0 287 | HorizontalFlip=false 288 | VerticalFlip=false 289 | 290 | [Common Properties for Transformations] 291 | Method=log 292 | AutoFill=true 293 | 294 | [Rotation] 295 | Degree=0 296 | 297 | [Distortion] 298 | Amount=0 299 | 300 | [LensProfile] 301 | LcMode=none 302 | LCPFile= 303 | UseDistortion=true 304 | UseVignette=true 305 | UseCA=false 306 | LFCameraMake= 307 | LFCameraModel= 308 | LFLens= 309 | 310 | [Perspective] 311 | Horizontal=0 312 | Vertical=0 313 | 314 | [Gradient] 315 | Enabled=false 316 | Degree=0 317 | Feather=25 318 | Strength=0.59999999999999998 319 | CenterX=0 320 | CenterY=0 321 | 322 | [PCVignette] 323 | Enabled=false 324 | Strength=0.59999999999999998 325 | Feather=50 326 | Roundness=50 327 | 328 | [CACorrection] 329 | Red=0 330 | Blue=0 331 | 332 | [Vignetting Correction] 333 | Amount=0 334 | Radius=50 335 | Strength=1 336 | CenterX=0 337 | CenterY=0 338 | 339 | [Resize] 340 | Enabled=false 341 | Scale=0.28000000000000003 342 | AppliesTo=Cropped area 343 | Method=Lanczos 344 | DataSpecified=3 345 | Width=900 346 | Height=900 347 | AllowUpscaling=false 348 | 349 | [PostDemosaicSharpening] 350 | Enabled=false 351 | Contrast=10 352 | AutoContrast=true 353 | AutoRadius=true 354 | DeconvRadius=0.75 355 | DeconvRadiusOffset=0 356 | DeconvIterCheck=true 357 | DeconvIterations=20 358 | 359 | [PostResizeSharpening] 360 | Enabled=false 361 | Contrast=15 362 | Method=rld 363 | Radius=0.5 364 | Amount=200 365 | Threshold=20;80;2000;1200; 366 | OnlyEdges=false 367 | EdgedetectionRadius=1.8999999999999999 368 | EdgeTolerance=1800 369 | HalocontrolEnabled=false 370 | HalocontrolAmount=85 371 | DeconvRadius=0.45000000000000001 372 | DeconvAmount=100 373 | DeconvDamping=0 374 | DeconvIterations=100 375 | 376 | [Color Management] 377 | InputProfile=(embedded) 378 | ToneCurve=false 379 | ApplyLookTable=false 380 | ApplyBaselineExposureOffset=true 381 | ApplyHueSatMap=true 382 | DCPIlluminant=0 383 | WorkingProfile=ProPhoto 384 | WorkingTRC=none 385 | WorkingTRCGamma=2.3999999999999999 386 | WorkingTRCSlope=12.92 387 | OutputProfile=RTv4_sRGB 388 | OutputProfileIntent=Relative 389 | OutputBPC=true 390 | 391 | [Wavelet] 392 | Enabled=false 393 | Strength=100 394 | Balance=0 395 | Iter=0 396 | MaxLev=7 397 | TilesMethod=full 398 | DaubMethod=4_ 399 | ChoiceLevMethod=all 400 | BackMethod=grey 401 | LevMethod=4 402 | DirMethod=all 403 | CBgreenhigh=0 404 | CBgreenmed=0 405 | CBgreenlow=0 406 | CBbluehigh=0 407 | CBbluemed=0 408 | CBbluelow=0 409 | Expcontrast=false 410 | Expchroma=false 411 | Expedge=false 412 | Expresid=false 413 | Expfinal=false 414 | Exptoning=false 415 | Expnoise=false 416 | Contrast1=0 417 | Contrast2=0 418 | Contrast3=0 419 | Contrast4=0 420 | Contrast5=0 421 | Contrast6=0 422 | Contrast7=0 423 | Contrast8=0 424 | Contrast9=0 425 | Chroma1=0 426 | Chroma2=0 427 | Chroma3=0 428 | Chroma4=0 429 | Chroma5=0 430 | Chroma6=0 431 | Chroma7=0 432 | Chroma8=0 433 | Chroma9=0 434 | ContExtra=0 435 | HSMethod=with 436 | HLRange=50;75;100;98; 437 | SHRange=0;2;50;25; 438 | Edgcont=0;10;75;40; 439 | Level0noise=0;0; 440 | Level1noise=0;0; 441 | Level2noise=0;0; 442 | Level3noise=0;0; 443 | ThresholdHighlight=5 444 | ThresholdShadow=4 445 | Edgedetect=90 446 | Edgedetectthr=20 447 | EdgedetectthrHi=0 448 | Edgesensi=60 449 | Edgeampli=10 450 | ThresholdChroma=5 451 | CHromaMethod=without 452 | Medgreinf=less 453 | CHSLromaMethod=SL 454 | EDMethod=CU 455 | NPMethod=none 456 | BAMethod=none 457 | TMMethod=cont 458 | ChromaLink=0 459 | ContrastCurve=1;0;0.25;0.34999999999999998;0.34999999999999998;0.5;0.75;0.34999999999999998;0.34999999999999998;0.90000000000000002;0;0.34999999999999998;0.34999999999999998; 460 | Pastlev=0;2;30;20; 461 | Satlev=30;45;130;100; 462 | OpacityCurveRG=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 463 | OpacityCurveBY=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 464 | OpacityCurveW=1;0;0.34999999999999998;0.34999999999999998;0;0.34999999999999998;0.75;0.34999999999999998;0.34999999999999998;0.59999999999999998;0.75;0.34999999999999998;0.34999999999999998;1;0.34999999999999998;0;0; 465 | OpacityCurveWL=1;0;0.5;0.34999999999999998;0.34999999999999998;1;0.5;0.34999999999999998;0.34999999999999998; 466 | HHcurve=0; 467 | CHcurve=0; 468 | WavclCurve=0; 469 | Median=false 470 | Medianlev=false 471 | Linkedg=true 472 | CBenab=false 473 | Lipst=false 474 | Skinprotect=0 475 | Hueskin=-5;25;170;120; 476 | Edgrad=15 477 | Edgval=0 478 | ThrEdg=10 479 | AvoidColorShift=false 480 | TMr=false 481 | ResidualcontShadow=0 482 | ResidualcontHighlight=0 483 | ThresholdResidShadow=35 484 | ThresholdResidHighLight=65 485 | Residualchroma=0 486 | ResidualTM=0 487 | Residualgamma=1 488 | HueRangeResidual=0 489 | HueRange=-260;-250;-130;-140; 490 | Contrast=0 491 | 492 | [Directional Pyramid Equalizer] 493 | Enabled=false 494 | Gamutlab=false 495 | cbdlMethod=bef 496 | Mult0=1 497 | Mult1=1 498 | Mult2=1 499 | Mult3=1 500 | Mult4=1 501 | Mult5=1 502 | Threshold=0.20000000000000001 503 | Skinprotect=0 504 | Hueskin=-5;25;170;120; 505 | 506 | [HSV Equalizer] 507 | Enabled=false 508 | HCurve=0; 509 | SCurve=0; 510 | VCurve=0; 511 | 512 | [SoftLight] 513 | Enabled=false 514 | Strength=30 515 | 516 | [Film Simulation] 517 | Enabled=false 518 | ClutFilename= 519 | Strength=100 520 | 521 | [RGB Curves] 522 | Enabled=false 523 | LumaMode=false 524 | rCurve=0; 525 | gCurve=0; 526 | bCurve=0; 527 | 528 | [ColorToning] 529 | Enabled=false 530 | Method=LabRegions 531 | Lumamode=true 532 | Twocolor=Std 533 | Redlow=0 534 | Greenlow=0 535 | Bluelow=0 536 | Satlow=0 537 | Balance=0 538 | Sathigh=0 539 | Redmed=0 540 | Greenmed=0 541 | Bluemed=0 542 | Redhigh=0 543 | Greenhigh=0 544 | Bluehigh=0 545 | Autosat=true 546 | OpacityCurve=1;0;0.29999999999999999;0.34999999999999998;0;0.25;0.80000000000000004;0.34999999999999998;0.34999999999999998;0.69999999999999996;0.80000000000000004;0.34999999999999998;0.34999999999999998;1;0.29999999999999999;0;0; 547 | ColorCurve=1;0.050000000000000003;0.62;0.25;0.25;0.58499999999999996;0.11;0.25;0.25; 548 | SatProtectionThreshold=30 549 | SaturatedOpacity=80 550 | Strength=50 551 | HighlightsColorSaturation=60;80; 552 | ShadowsColorSaturation=80;208; 553 | ClCurve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 554 | Cl2Curve=3;0;0;0.34999999999999998;0.65000000000000002;1;1; 555 | LabGridALow=0 556 | LabGridBLow=0 557 | LabGridAHigh=0 558 | LabGridBHigh=0 559 | LabRegionA_1=0 560 | LabRegionB_1=0 561 | LabRegionSaturation_1=0 562 | LabRegionSlope_1=1 563 | LabRegionOffset_1=0 564 | LabRegionPower_1=1 565 | LabRegionHueMask_1=1;0.16666666699999999;1;0.34999999999999998;0.34999999999999998;0.82877752459999998;1;0.34999999999999998;0.34999999999999998; 566 | LabRegionChromaticityMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 567 | LabRegionLightnessMask_1=1;0;1;0.34999999999999998;0.34999999999999998;1;1;0.34999999999999998;0.34999999999999998; 568 | LabRegionMaskBlur_1=0 569 | LabRegionChannel_1=-1 570 | LabRegionsShowMask=-1 571 | 572 | [RAW] 573 | DarkFrame=/szeva 574 | DarkFrameAuto=false 575 | FlatFieldFile=/szeva 576 | FlatFieldAutoSelect=false 577 | FlatFieldBlurRadius=32 578 | FlatFieldBlurType=Area Flatfield 579 | FlatFieldAutoClipControl=false 580 | FlatFieldClipControl=0 581 | CA=false 582 | CAAvoidColourshift=true 583 | CAAutoIterations=2 584 | CARed=0 585 | CABlue=0 586 | HotPixelFilter=false 587 | DeadPixelFilter=false 588 | HotDeadPixelThresh=100 589 | PreExposure=1 590 | 591 | [RAW Bayer] 592 | Method=amaze 593 | Border=4 594 | ImageNum=1 595 | CcSteps=0 596 | PreBlack0=0 597 | PreBlack1=0 598 | PreBlack2=0 599 | PreBlack3=0 600 | PreTwoGreen=true 601 | LineDenoise=0 602 | LineDenoiseDirection=3 603 | GreenEqThreshold=0 604 | DCBIterations=2 605 | DCBEnhance=true 606 | LMMSEIterations=2 607 | DualDemosaicAutoContrast=true 608 | DualDemosaicContrast=20 609 | PixelShiftMotionCorrectionMethod=1 610 | PixelShiftEperIso=0 611 | PixelShiftSigma=1 612 | PixelShiftShowMotion=false 613 | PixelShiftShowMotionMaskOnly=false 614 | pixelShiftHoleFill=true 615 | pixelShiftMedian=false 616 | pixelShiftGreen=true 617 | pixelShiftBlur=true 618 | pixelShiftSmoothFactor=0.69999999999999996 619 | pixelShiftEqualBright=false 620 | pixelShiftEqualBrightChannel=false 621 | pixelShiftNonGreenCross=true 622 | pixelShiftDemosaicMethod=amaze 623 | PDAFLinesFilter=false 624 | 625 | [RAW X-Trans] 626 | Method=3-pass (best) 627 | DualDemosaicAutoContrast=true 628 | DualDemosaicContrast=20 629 | Border=7 630 | CcSteps=0 631 | PreBlackRed=0 632 | PreBlackGreen=0 633 | PreBlackBlue=0 634 | 635 | [MetaData] 636 | Mode=0 637 | 638 | [Film Negative] 639 | Enabled=false 640 | RedRatio=1.3600000000000001 641 | GreenExponent=1.5 642 | BlueRatio=0.85999999999999999 643 | -------------------------------------------------------------------------------- /images/source images/mica pigments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/mica pigments.jpg -------------------------------------------------------------------------------- /images/source images/negation fullsize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/negation fullsize.jpg -------------------------------------------------------------------------------- /images/source images/silicone pour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/source images/silicone pour.jpg -------------------------------------------------------------------------------- /images/trimming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/trimming.png -------------------------------------------------------------------------------- /images/undercut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkatt/Cocksmithing/c21137d901864c9decfd66258e4cafcfa824ffad/images/undercut.png --------------------------------------------------------------------------------