https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 6542b23594e3fc2e1775e651c51977689bf9a1b4 authored by Daniel Fort on 09 July 2017, 20:29:21 UTC
Closed branch unified-5D3-FW_VERSION-Makefile-fix
Tip revision: 6542b23
defish-lut.m
#!/usr/bin/env octave3.2

prefix = argv(){1};

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

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