我在Github上找到了这段代码,因为我的openCv无法正常工作,所以我尝试使用jpeglib并使用sobelEdgeDetection方法
*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;
我尝试了很多方法来纠正此错误,并且我需要知道将自己的图像输入此代码的位置