Mr. Lauridsen has been nice enough to share some scripts and python for nuke.
Learning
I had lunch with a friend and mentor of mine Jim O' Hagen. We got talking about what we wanted to get better at or maybe something we needed to learn. He mentioned Codecademy.com . Jim mentioned that Miles had posted a commandline tutorial from them and it was really good. Last week I posted about discussions on the Nuke mailing list about wanting to get better at math. I thought I'd pass this forward.
5 Nodes No Connection
A work in progress.
I am making a node setup for a despill with the difference added back on top.
Five Nodes and no connection:
curNode = nuke.selectedNodes()
mergediff = nuke.nodes.Merge2()
mergediff.knob('operation').setValue('difference')
mergeplus = nuke.nodes.Merge2()
mergeplus.knob('operation').setValue('plus')
sat = nuke.nodes.Saturation()
sat.knob('saturation').setValue('0')
ibk = nuke.nodes.IBKGizmoV3()
Have a good one,
michaelb