https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: ca5a88fee7181cc1d0549b8bf080a48e4a7b0114 authored by a1ex on 22 October 2013, 21:23:34 UTC
Close branch mk11174/update-to-lens-units-metricimperial-1381039973424.
Tip revision: ca5a88f
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