Changes between Initial Version and Version 1 of Ticket #53
- Timestamp:
- 10/11/11 07:44:39 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #53
- Property status changed from new to closed
- Property resolution changed from to fixed
-
Ticket #53 – description
initial v1 1 1 Add color grading post process, including rendering and tools. 2 2 3 Color grading is very important for high quality rendering. The kernel of it is a look-up table that transform a LDR RGB color to another. The look-up table can be store in a 32x32x323D texture. Use RGB as coordinate to do the looking up.3 Color grading is very important for high quality rendering. The kernel of it is a look-up table that transform a LDR RGB color to another. The look-up table can be store in a 16x16x16 3D texture. Use RGB as coordinate to do the looking up. 4 4 5 5 The editing process has 3 steps: 6 1. Generate a identity look-up table. The output is the same as input. It's a 2D image with 32x1024, flatten the Z dimension.6 1. Generate a identity look-up table. The output is the same as input. It's a 2D image with 16x256, flatten the Z dimension. 7 7 2. Capture a frame in game, tune it's RGB curves inside image processing tools, such as PhotoShop. 8 8 3. Apply the tuned RGB curves to the identity look-up table image.