Hello, I am doing this image processing programming for pseudocoloring.
aFile = File.new("mix.lut","w+")
for i in 0...256
red = i*i/255
green = Math.sqrt(i). to_i
blue = i
aFile.puts "#{red} #{green} #{blue}"
end
aFile.close
I made this simple color LUT, and i want to apply it to an image (RGB image). I could not figure it out what method to apply it.