https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 2edf3588768b8a4c86d45a6bec3255fe41418bad authored by nanomad on 10 September 2011, 00:10:53 UTC
We can now display a simple Hello World message on the screen
Tip revision: 2edf358
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