how to find lowest vertical and horizontal DCT coefficient of an image block

I have an image of size 256x256 and it is divided into equal non overlapping blocks of size 8x8. I have to find the lowest vertical and horizontal DCT (Discrete Cosine Transform)coefficients of each image block. Is there any method available for this problem in MATLAB?


The usual method is to create an array of indices that maps from the most important to the least important as you have stored them.

在这里输入图像描述

This is the pattern used in JPEG. What we don't know is how you have arranged your coefficients so we cannot give you the ordering.

链接地址: http://www.djcxy.com/p/62898.html

上一篇: 编码JPEG时是否跳过了一些8x8块?

下一篇: 如何找到图像块的最低垂直和水平DCT系数