implementing gradient maps and luts with svg
resource collection
Resources
- web gpu overview - https://surma.dev/things/webgpu/
- image dithering - https://surma.dev/things/ditherpunk/
- dither me this (the tool) - https://doodad.dev/dither-me-this/
- dither me this (the code) - https://github.com/DitheringIdiot/dither-me-this
- svg fm (the tool) - https://svgfm.chriskirknielsen.com/
- svg fm (the code) - https://github.com/chriskirknielsen/svgfm
- 2d look-up tables with c++ - https://github.com/NTProductions/2D-LUTs
- nvidia’s extremely technical guide on LUTs -https://developer.nvidia.com/gpugems/gpugems2/part-iii-high-quality-rendering/chapter-24-using-lookup-tables-accelerate-color
- shaders with p5.js - https://www.youtube.com/watch?v=3mfvZ-mdtZQ
-
svg
tableValues
- https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/tableValues - svgs to re-create gradient filters - https://www.perplexity.ai/search/can-gradient-maps-be-replicate-91NZZ2ECSJuzO9fUpExfsw
- heat maps using svg filters - https://expensive.toys/blog/svg-filter-heat-map
- the above post’s predecessor - https://expensive.toys/blog/pure-CSS-heatmap
Knowledge and Possible Outcomes
I really like the look that Gradient Maps give to images, videos and filters. I was also aware that LUTs can pre-process the colours in an image before displaying them. Using these two things together should provide me the solution I’m looking for, but I don’t even know where to start???
How I got to know about these things
- Gradient Maps - from Photoshop and Procreate
- LUTs - from that one Facebook AR filter creation app, Blender
- A
- B
How do I even go about this? Creating a 1D LUT may make most sense, along with using that one