如何在Matlab上运行该功能?

时间:2019-12-07 23:36:49

标签: matlab function linear-algebra calculus dct

我从纸上拿出这段代码,由于缩进而无法运行(我认为吗?) 我已经尝试过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

在我要重新创建的论文上。

https://www.dropbox.com/sh/71reqspybn4w7rf/AAAhNTKVL-tGC_EbxbIZbOQva?dl=0&preview=Linear+Algebra+Project2.pdf

0 个答案:

没有答案