https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 6e14cb972f84511d2d973ef3320cd318143a4863 authored by a1ex on 22 October 2013, 21:30:03 UTC
Close branch DataFolder.
Tip revision: 6e14cb9
defish-lut.m
#!/usr/bin/env octave3.2

prefix = "rectilin";

xy = double(imread([prefix "-xy.png"]));

f = fopen([prefix ".lut"], "wb")
for i = 1:480/2
	for j = 1:720/2
		fwrite(f, [xy(i,j), xy(481-i,721-j)], 'uint8');
	end
end
fclose(f)
back to top