https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: bf02ea25a575a188bba28256be64f65453d40096 authored by dannephoto on 13 May 2017, 02:51:45 UTC
Trying for 10bit12bit compressed lj92
Tip revision: bf02ea2
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