使用jpeglib进行sobel边缘检测

时间:2019-07-04 20:43:11

标签: c++ malloc jpeg

我在Github上找到了这段代码,因为我的openCv无法正常工作,所以我尝试使用jpeglib并使用sobelEdgeDetection方法

Github Code


  *image = malloc(*width * *height * *channels * sizeof(*image));

此代码出错

无效的转换形式void *到char **

  *width = cinfo.output_width, *height = cinfo.output_height;
  *channels = cinfo.num_components;
  // printf("width=%d height=%d c=%d\n", *width, *height, *channels);
  *image = malloc(*width * *height * *channels * sizeof(*image));
  JSAMPROW rowptr[1];
  int row_stride = *width * *channels;

我尝试了很多方法来纠正此错误,并且我需要知道将自己的图像输入此代码的位置

0 个答案:

没有答案