我从纸上拿出这段代码,由于缩进而无法运行(我认为吗?) 我已经尝试过Octave(4.0.0,5.1.0)和Matlab(R2018a)
for xb = 1:x_blocks
for yb = 1:y_blocks
y_index = ((yb-1)*8)+1;
x_index = ((xb-1)*8)+1;
dct_matrix = squeeze(mj.dct_matrices(yb, xb, :, :));
image_block = round(minijpeg_idct2(double(dct_matrix) .* double(mj.q_matrix)) + image(y_index:(y_index+7), x_index:(x_index+7)) = image_block;
end
end
在我要重新创建的论文上。