• 大小: 0.81KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-03-26
  • 语言: C/C++
  • 标签: c  

资源简介


C语言计算图片直方图,RGBA原图像,有四个颜色通道分别为R,G,B,A。本例循环分别将三个通道的RGB值取出,返回指针

资源截图

代码片段和文件信息

#include 
#include 

/*
 *image_data is a RGBA iamge;
 */
unsigned int *histogram_rgba_unorm8(void* image_data int w int h)
{
    unsigned char *img = (unsigned char*)image_data;
    unsigned int *ref_histogram_results;
    unsigned int *ptr;
    int i;

    ref_histogram_results = (unsigned int*)malloc(256*3*sizeof(unsigned int));
    ptr = ref_histogram_results;

    memse

评论

共有 条评论