This commit is contained in:
2025-07-16 14:41:19 +03:00
parent 2a1ddbedf2
commit ec39173514
51 changed files with 11380 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
% MATLAB code to generate test files that exercise a JBIG codec
width = 1200;
img = [];
for y=1:650;
mx = ceil(y / 5);
line = uint8(repmat(round(rand(1,mx)),1,ceil(width/mx))) == 1;
img = [img ; line(1:width)];
end
imwrite(img, 'mx.png', 'PNG');