Attachment 'createDummyCorrection.m'
Download 1 % Dummy Luminanzkorrektur ohne Effekt
2
3 % gewünschte Bildschirmauflösung
4 X_Pixel = 1280;
5 Y_Pixel = 1024;
6 % X_Pixel = 1024;
7 % Y_Pixel = 768;
8 % X_Pixel = 800;
9 % Y_Pixel = 600;
10
11 zi = ones( X_Pixel, Y_Pixel );
12 fname = sprintf('NoCorrection_%dx%d.dat', X_Pixel, Y_Pixel);
13 f = fopen(fname,'w','ieee-le');
14 fwrite(f,zi','float32');
15 fclose(f);
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.