https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: aaab2fffbe0b3d2c96578c4442858c9892f6212b authored by alex@thinkpad on 16 April 2018, 04:48:54 UTC
tft_regs: allow brute-forcing all registers in PLAY mode
Tip revision: aaab2ff
defish-xy.m
#!/usr/bin/env octave3.2

x = linspace(0,360,1440); y = linspace(0,240,960);
x = [x, fliplr(x)];
y = [y, fliplr(y)];
[X,Y] = meshgrid(x,y);
size(X)
XY = zeros(480*4,720*4);
size(XY)
for i = 1:480*4
	for j = 1:720*4
		if i/480/4 < (721-j/4)/720
			XY(i,j) = X(i,j) / 360;
		else
			XY(i,j) = Y(i,j) / 255;
		end
	end
end
imwrite(XY,'xy.tiff'); # defish this and save it as my-lut-filename.tif
back to top