c - DCT 的 C 图像分割

标签 c image divide dct

谁能告诉我们如何将图像分成8X8 block 吗?

我可以读取图像,但无法将其划分为 DCT 的 8x8 子矩阵。

int main()
{
    FILE *image_raw;
    unsigned char **matriz_image;
    int i, j;
    int rows=1080, colums=1920;

    matriz_image = (unsigned char  **) malloc (rows*sizeof(unsigned char *));

    //i create dinamic colums
    for(i=0; i<rows; i++)
    {
        matriz_image[i] = (unsigned char *) malloc (colums*sizeof(unsigned char ));
    }

    //i open image raw
    image_raw =  fopen("imag.dat", "r+b");
    //i copy values to matriz_image


    for (i = 0; i < rows; ++i)
    {
        fread(matriz_image[i], sizeof(unsigned char ), colums, image_raw);
    }


    for(i=0; i<rows; i++)
    {
        for(j=0; j<colums; j++)
        {
            // printf("%i ",*(*(matriz_image+i)+j));
            printf("%i ",matriz_image[i][j]);
        }
        printf("\n");
    }

最佳答案

你可以这样做:

void dct(unsigned char **m, int baserow, int basecol)
{
  for (int row = baserow, endrow = baserow + 8; row < endrow; ++row)
    for (int col = basecol, endcol = basecol + 8; col < endcol; ++col)
      ; // operate on m[row][col]
}

int do_dcts(unsigned char **m, int num_rows, int num_cols)
{
  if (num_rows <= 0 || num_rows % 8 || num_cols <= 0 || num_cols % 8)
    return -1;

  for (int row = 0; row < num_rows; row += 8)
    for (int col = 0; col < num_cols; col += 8)
      dct(m, row, col);    

  return 0;
}

使用两级指针实现 2D 数组会浪费空间并恶化内存局部性。最好先进行一次分配,然后适本地偏移到数组中,如下所示:

int main()
{
    FILE *image_raw;
    unsigned char *matriz_image;
    int i, j;
    int rows=1080, colums=1920;

    matriz_image = malloc(rows*colums*sizeof(unsigned char));

    ...

如果您可以使行和列常量或具有 VLA,那么您可以这样做:

unsigned char (*m)[colums] = (unsigned char (*)[colums]) matriz_image;

m[5][2] = 2; // double indexed access without extra pointers + allocs

类似地,您可以将 m 类型的指向矩阵的指针传递给函数来对其进行操作。

如果您无法使行和列成为编译时常量并且您没有 VLA,那么您可以编写辅助 fcns 来为您执行指针算术:

inline unsigned char *get_row(unsigned char *m, int numcols, int row)
{
  return &m[row * num_cols];
}

inline unsigned char *get_elem(unsigned char *m, int numcols, int row, int col)
{
  return &m[row * num_cols + col];
}

...

*get_elem(m, colums, 5, 2) = 2;  // double indexing not as nice but good memory usage

如果您确实需要快速执行这些操作,那么当您读入图像时,您可以重新组织它以将 8x8 字节 block 连续放置在内存中,以获得最佳的缓存性能:

// organize m like m[rows * colums / 64][8][8]; so first index is an 8x8 block #

for (int k = 0; k < rows / 8; ++k)        // read all rows in chunks of 8
  for (int i = 0; i < 8; ++i)             // read 8 rows
    for (int j = 0; j < colums / 8; ++j)  // read 1 row in 8 byte chunks
      fread(&m[k * 8 * colums + i * 8 + j * 64], 1, 8, image_raw);

...

typedef unsigned char (*block_ptr)[8];

inline block_ptr get_block(unsigned char *m, int num_cols, int block_num)
{
  return (block_ptr) &m[block_num * 64];
}

inline block_ptr get_block2(unsigned char *m, int num_cols, int row, int col)
{
  if (row % 8 || col % 8)
    return NULL;

  return (block_ptr) &m[row * num_cols + col * 8];
}

...

for (int k = 0; k < rows * colums / 64; ++k)
{
  block_ptr block = get_block(m, num_colums, k);

  for (int i = 0; i < 8; ++i)
    for (int j = 0; j < 8; ++j)
      ;  // operate on block[i][j];
}

关于c - DCT 的 C 图像分割,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28976941/

相关文章:

c - 尝试调用 execvp 来运行通过标准输入提供的程序名,但每次调用都失败

c - linux上实现链表的C程序从文件读取数据出错

jquery - 如何使用CSS3、jQuery、HTML制作图片队列效果?

CSS 撤消高度 : auto; declaration

java - BigDecimal.divide(BD,int,RM) - BigDecimal 无法转换为双错误

c - 如何在C中将短值除以int

c++ - 如何在 CLion 中编译子目录文件?

c - 为什么我的解析函数返回不返回所有预期的标记?

Javascript:如何交换两个图像的值?

python - 如何将 pandas Dataframe 的每一列划分为一个系列?