Matching Photoshop Adjustments to Nuke
November 28th, 2008This is a response to a question on VFXTalk.
Nuke calculates in linear space and Photoshop in the Working Space color space (usually sRGB).
Thats why adjustments like curves levels and stuff doesn’t match up between the different applications.
If you want to use the same settings in Nuke colorLookup as Photoshop Curves you need to calculate them in the same color space. To achieve this you convert from linear in nuke to the color space you use in Photoshop apply your colorLookup and then convert back to linear space.
Edge detection in Nuke
November 26th, 2008Thank You!
October 24th, 2008Mad Crew would like to thank Fido for the screening of “Låt den rätte komma in” last night.
And Against all odds for a great party.
Thank You!
/Mad Crew
Honda FWA
October 14th, 2008Stupid!
September 10th, 2008EQ Shading
September 1st, 2008This is a post in response to this post on CGTalk.
I did a little setup that i think do what you want.
I’m using undeformed reference geometry with a projection.
Here’s the file. barshading.ma
MEL: Padding Function
August 19th, 2008This is a little function that takes a number and adds padding to it.
global proc string padNumber(int $number, int $length){
string $paddedString = string($number);
while(size($paddedString)<$length)
$paddedString = ("0"+$paddedString);
return $paddedString;
}
Example:
padNumber 55 4;
// Result: 0055








