invalid conversion from `const void*' to `void*'
Posted Voyagee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了invalid conversion from `const void*' to `void*'相关的知识,希望对你有一定的参考价值。
在编译一个工程时出错,使用memcpy函数处报错 invalid conversion from `const void*‘ to `void*‘
void image2mat(const image<uchar>* I, cv::Mat& img){
int width = I->width();
int height = I->height();
img.create(height, width, CV_8UC1);
memcpy(img.datastart, (char *)imPtr(I, 0, 0), width * height * sizeof(uchar));
}
原来memcpy()函数:
void* memcpy(void*, const void*, size_t)’
第一个参数是void * ( 非const指针 ),而opencv3.2中 cv::Mat.datastart 返回的是const指针,在这里即红色部分,img.datastart返回的是const char*,(不清楚3.0之前的版本是不是返回的非const指针)
解决方法:改为
memcpy(const_cast<uchar *>(img.datastart), (char *)imPtr(I, 0, 0), width * height * sizeof(uchar));
const_cast功能:
const类型强制转化为非const类型
const_cast<new type>(expression)
例:
const int a = 5;
int* b = &a ;//error : const变量值不能更改
使用const_cast强制转换为非const:
const int a = 5;
int* b = const_cast<int *>(&a);
以上是关于invalid conversion from `const void*' to `void*'的主要内容,如果未能解决你的问题,请参考以下文章
VS2010 LINK1123:failure during conversion to COFF:file invalid or corrupt
c++中结构体套结构体用 = {0}初始化编译报错解决办法(用memset或者={})(error: invalid conversion)
VS2010报错:LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
VS2010报错:LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
类型收窄 error C2397: conversion from ‘const int‘ to ‘char‘ requires a narrowing conversion
warning: deprecated conversion from string constant to ‘char*’