Nicolas Hanson January 22, 2018 Share January 22, 2018 (edited) Can I access generators such as the grey scale from the nodes? What I want to accomplish is the split the image in two and have my corrections affect the different luma levels based on a grey scale. Edited January 22, 2018 by Nicolas Hanson Link to comment Share on other sites More sharing options...
Emily Haine January 26, 2018 Share January 26, 2018 (edited) I don't think it is possible to access generators with nodes, but there are several ways to accomplish what you want to do. You can add a gradient from the windows menu and drag it into the frame horizontally. You can add a square mask, offset it and feather it. You can add a grey scale in the edit room, right clip and make it a compound clip so that you can access it in the color room. Add colors into the luma ranges you want, save a still and copy the grade into your image. Edited January 26, 2018 by Emily Haine 1 Link to comment Share on other sites More sharing options...
Cary Knoop January 27, 2018 Share January 27, 2018 On 1/22/2018 at 4:02 AM, Nicolas Hanson said: Can I access generators such as the grey scale from the nodes? What I want to accomplish is the split the image in two and have my corrections affect the different luma levels based on a grey scale. You could use DCTL for this. Here is an example of a DCTL that splits an image in 4 parts for showing the original and the three individual channels in LAB and RGB colorspace (set the variable 1 for LAB and 0 for RGB): https://github.com/CaryKnoop/DCTL/blob/master/C_Channel_Viewer.dctl 1 1 Link to comment Share on other sites More sharing options...
Cary Knoop January 28, 2018 Share January 28, 2018 Here is DCTL code to make a gray scale ramp: __DEVICE__ float3 transform(int p_Width, int p_Height, int p_X, int p_Y, float p_R, float p_G, float p_B) { return make_float3( (float) (p_X + 1) / p_Width, (float) (p_X + 1) / p_Width, (float) (p_X + 1) / p_Width); } 1 Link to comment Share on other sites More sharing options...
Nicolas Hanson January 28, 2018 Author Share January 28, 2018 Thank you Cary! I'm not familiar with DCTLs but I will definitely try this tomorrow at the office. Link to comment Share on other sites More sharing options...
Cary Knoop January 28, 2018 Share January 28, 2018 (edited) If you save the code in a file with an extension .dctl (make sure there are no spaces in the file name) and then place the file in the folder DCTL (you can find this folder under the LUT folder) and start Resolve it should come up in the DCTL menu. Edited January 28, 2018 by Cary Knoop 1 Link to comment Share on other sites More sharing options...
Nicolas Hanson January 28, 2018 Author Share January 28, 2018 You are great, thank you very much! Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.