LUTs: Powerful Color Correction - The Guide

  • FierySwordswoman
  • Topic Author
More
6 years 10 months ago #21 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

Ioxa wrote: Yes, those shaders have little performance impact, but each one runs in its own pass which creates additional overhead. Why wouldn't you condense multiple shaders into one simple pass?

Eh, good enough for me. I'll add a mention in the OP once you add it to your shader thread (or make a new one), unless you just want me to link to your initial reply/dropbox link. (?)

Please Log in or Create an account to join the conversation.

  • Ioxa
More
6 years 10 months ago #22 by Ioxa Replied by Ioxa on topic LUT's: Powerful Color Correction - The Guide

FierySwordswoman wrote:

Ioxa wrote: Yes, those shaders have little performance impact, but each one runs in its own pass which creates additional overhead. Why wouldn't you condense multiple shaders into one simple pass?

Eh, good enough for me. I'll add a mention in the OP once you add it to your shader thread (or make a new one), unless you just want me to link to your initial reply/dropbox link. (?)

If you want to add it to the OP you can just link to the post I made here, if I update it I'll update the link. As far as updating it, I think I'd just try to reduce the size of the texture, but I don't know if that would have any negative effects on the LUT. Have you experimented with compressing LUTs at all? Any suggestions for the best way to do it?

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 10 months ago - 6 years 10 months ago #23 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

Ioxa wrote: If you want to add it to the OP you can just link to the post I made here, if I update it I'll update the link. As far as updating it, I think I'd just try to reduce the size of the texture, but I don't know if that would have any negative effects on the LUT. Have you experimented with compressing LUTs at all? Any suggestions for the best way to do it?

Alright. I'll make a note of it, but I'm going to wait to amend the post until McFly releases his LUT creator to the shader master in github so I can test it first.

Now, I know basically nothing about HLSL or any shader programming (most I've done is set up UIMask.fx to take a preprocessor variable as a mask texture), so I'm a bit unsure of what you're trying to achieve.
All I'll say is that using the defaults (32^3) is a pretty good setup.
-If you're trying to reduce the texture size as the shader sees it, I have no idea.
-If it's somehow as simple as reducing the filesize, exporting from GIMP at max .png compression makes some 32^3 LUTs smaller than 500 bytes. Hard to beat that.
Last edit: 6 years 10 months ago by FierySwordswoman.

Please Log in or Create an account to join the conversation.

  • Ioxa
More
6 years 10 months ago #24 by Ioxa Replied by Ioxa on topic LUT's: Powerful Color Correction - The Guide
I just want to reduce the file size of the texture I use for the createLUT shader, right now its about 8mb. I'm wondering if there is any noticeable loss of accuracy or quality when compressing a LUT, especially since anyone using the shader may compress the LUT again when they export it from their photo editor.

Please Log in or Create an account to join the conversation.

  • crosire
More
6 years 10 months ago #25 by crosire Replied by crosire on topic LUT's: Powerful Color Correction - The Guide
Never compress LUTs with a lossy compression (JPG is a no-go). Most compression algorithms that can be used with PNG are lossless however, meaning upon decompression/loading the entire data is fully restored. This is a necessity for LUTs to work, since they are data lookup tables (like an excel sheet) and not really images (they are just encoded as such).
The following user(s) said Thank You: Ioxa

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 10 months ago - 6 years 10 months ago #26 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

Ioxa wrote: I just want to reduce the file size of the texture I use for the createLUT shader, right now its about 8mb.

That's nothing, dood. You should see some of my Skyrim textures.
128 megs for the body, 33 for the hands, 50 for the face....

Also, if you bump up the level of compression for the .png that file becomes 8 kilobytes.
Last edit: 6 years 10 months ago by FierySwordswoman.

Please Log in or Create an account to join the conversation.

  • Ioxa
More
6 years 10 months ago #27 by Ioxa Replied by Ioxa on topic LUT's: Powerful Color Correction - The Guide

crosire wrote: Never compress LUTs with a lossy compression (JPG is a no-go). Most compression algorithms that can be used with PNG are lossless however, meaning upon decompression/loading the entire data is fully restored. This is a necessity for LUTs to work, since they are data lookup tables (like an excel sheet) and not really images (they are just encoded as such).

Thanks Crosire! I didn't know PNG compression was lossless, I just figured something would always be lost when compressing a file.

FierySwordswoman wrote:

Ioxa wrote: I just want to reduce the file size of the texture I use for the createLUT shader, right now its about 8mb.

That's nothing, dood. You should see some of my Skyrim textures.
128 megs for the body, 33 for the hands, 50 for the face....

Also, if you bump up the level of compression for the .png that file becomes 8 kilobytes.


Yup! Dropped the file size down to 8.2kb from 8.2mb.

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 10 months ago - 6 years 10 months ago #28 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

Ioxa wrote: ...I just figured something would always be lost when compressing a file.

A fair amount of image formats including .png, a fair amount of audio formats including .flac, and every generic-purpose archive is lossless. Even the .264 video codec has a lossless render option.
If you want to get *really* fancy there's hybrids where it exports 2 smaller files: one lossy and another that contains the information lost in said lossy file.
Last edit: 6 years 10 months ago by FierySwordswoman.

Please Log in or Create an account to join the conversation.

  • Marty
More
6 years 10 months ago #29 by Marty Replied by Marty on topic LUT's: Powerful Color Correction - The Guide

Ioxa wrote: I made a simple shader for people out there like me that are more comfortable using the shaders in ReShade to make color adjustments...


Looks like a great shader, but I'm having difficulties to get it to work. I created my own 1440p texture, but when I turn on the shader no changes are applied to the LUT and the transparent rest of the image is just white. Does the same with the 1080p texture the shader came with. And yes it's at the top on the load order.
I would appreciate any help with getting it to work.

Please Log in or Create an account to join the conversation.

  • Ioxa
More
6 years 10 months ago #30 by Ioxa Replied by Ioxa on topic LUT's: Powerful Color Correction - The Guide

Marty wrote:

Ioxa wrote: I made a simple shader for people out there like me that are more comfortable using the shaders in ReShade to make color adjustments...


Looks like a great shader, but I'm having difficulties to get it to work. I created my own 1440p texture, but when I turn on the shader no changes are applied to the LUT and the transparent rest of the image is just white. Does the same with the 1080p texture the shader came with. And yes it's at the top on the load order.
I would appreciate any help with getting it to work.


If you see the LUT on your screen when the shader is enabled then you should be fine, doesnt really matter what color the rest of the screen is. As long as its at the top of the load order and you see the LUT on your screen then any effects that follow will be applied to the LUT. All you have to do at that point is take a screenshot and then cut the LUT out of that screenshot. Also make sure the method you're using to take screenshots is capturing the changes made by ReShade.

If you have anymore questions post them here .

Please Log in or Create an account to join the conversation.

  • Myashi
More
6 years 8 months ago #31 by Myashi Replied by Myashi on topic LUT's: Powerful Color Correction - The Guide
I usually do my preset with the lut method.
I prefer to use Photoshop, because I feel much comfortable with its adjustment levels.
Great tutorial btw!

Please Log in or Create an account to join the conversation.

  • Red
More
6 years 8 months ago #32 by Red Replied by Red on topic LUT's: Powerful Color Correction - The Guide
I'm having an issue, any color,lighting or brightness settings I do, I end up with blue turning into purple.. What am I doing wrong??
Look at the sign truns from blue into purple..
Warning: Spoiler!

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 8 months ago #33 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

Red wrote: I'm having an issue, any color,lighting or brightness settings I do, I end up with blue turning into purple.. What am I doing wrong??

wat

-Uhm. What neutral LUT are you using? The default one? If not, try the default one.
-Does the purple show up in your editor, or just in-game? Can you take a pic of the settings being adjusted?
The following user(s) said Thank You: Red

Please Log in or Create an account to join the conversation.

  • Red
More
6 years 8 months ago #34 by Red Replied by Red on topic LUT's: Powerful Color Correction - The Guide
Huh, apparently I was using the wrong LUT, its working now. Many thanks :) !

Please Log in or Create an account to join the conversation.

  • sets
More
6 years 7 months ago #35 by sets Replied by sets on topic LUT's: Powerful Color Correction - The Guide
judging from your screenshots, we can do the same result with other shaders which are more simple, what's the point of using this complicated shader ?

Please Log in or Create an account to join the conversation.

  • crosire
More
6 years 7 months ago #36 by crosire Replied by crosire on topic LUT's: Powerful Color Correction - The Guide

sets wrote: judging from your screenshots, we can do the same result with other shaders which are more simple, what's the point of using this complicated shader ?

It's much faster. Also easier to manage a single LUT, compared to having 5 effects you need to match up.

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 7 months ago - 6 years 7 months ago #37 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

sets wrote: judging from your screenshots, we can do the same result with other shaders which are more simple, what's the point of using this complicated shader ?

crosire wrote: It's much faster. Also easier to manage a single LUT, compared to having 5 effects you need to match up.


In addition to what crosire said, I'd like to point out that I did some really quick and simple edits for the sake of the tutorial. Using a full-feature image manipulator like I showed limits color corrections to your imagination.

Controlling saturation based on luminosity:
Warning: Spoiler!

Per-channel HSV:
Warning: Spoiler!

Controlling brightness based on color amount just because I can:
Warning: Spoiler!


List goes on nearly forever.
Last edit: 6 years 7 months ago by FierySwordswoman.

Please Log in or Create an account to join the conversation.

  • sets
More
6 years 7 months ago - 6 years 7 months ago #38 by sets Replied by sets on topic LUT's: Powerful Color Correction - The Guide
i can make the same result with just technic color 1 or 2 or colorful + curves
having to do all the stuff like taking game screenshot and modify thru photoshop / gimp takes too long and much trouble, idk why you guys are saying it's faster
and one screenshot don't reflect the full game because different areas have different colors/effect etc. You have to take multiple screenshots then modify them for desired result. while you can do all these stuffs with the other shaders much easier
Last edit: 6 years 7 months ago by sets.

Please Log in or Create an account to join the conversation.

  • FierySwordswoman
  • Topic Author
More
6 years 7 months ago - 6 years 7 months ago #39 by FierySwordswoman Replied by FierySwordswoman on topic LUT's: Powerful Color Correction - The Guide

sets wrote: i can make the same result with just technic color 1 or 2 or colorful + curves
having to do all the stuff like taking game screenshot and modify thru photoshop / gimp takes too long and much trouble, idk why you guys are saying it's faster
and one screenshot don't reflect the full game because different areas have different colors/effect etc. You have to take multiple screenshots then modify them for desired result. while you can do all these stuffs with the other shaders much easier

     My point is is that with a full program you have unlimited control. Anything you can think of, you can make if you know how. It's not limited to whatever Ceejay and a few others thought would be the best method of color grading.
-Also, I don't know what shader set you're using, but the stock technicolor1/2, colorfulness, and curves almost certainly don't do any of what I displayed in my demo screenshots. The first three are instagram filters and the last is just contrast. Only thing that'd come close is marty's kinda-lightroom shader depending on what tools it offers.

     As for the "it's faster" thing, I think what crosire was saying is that it runs faster in-game.
However, using LUT's since ReShade..... 2.0.0? Sure. Using LUT's for a long time, I'd argue that once you figure out the workflow for making them, it becomes just as fast if not faster than fiddling with all the shader parameters.
Last edit: 6 years 7 months ago by FierySwordswoman.

Please Log in or Create an account to join the conversation.

  • crosire
More
6 years 7 months ago #40 by crosire Replied by crosire on topic LUT's: Powerful Color Correction - The Guide
Yeah, I was saying it's faster performance-wise.

Please Log in or Create an account to join the conversation.

We use cookies
We use cookies on our website. Some of them are essential for the operation of the forum. You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.