OPenCV中累加一个三通道矩阵中的所有元素:程序为:float sum( const CvMat* mat ){ float s = 0.0f; for(int row=0; rowrows; row++ ){ const float* ptr=(const float*)(mat->data.ptr + row * mat->step); for( col=0; colcols; col++ ) { s +=
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/15 19:58:11
OPenCV中累加一个三通道矩阵中的所有元素:程序为:float sum( const CvMat* mat ){ float s = 0.0f; for(int row=0; rowrows; row++ ){ const float* ptr=(const float*)(mat->data.ptr + row * mat->step); for( col=0; colcols; col++ ) { s +=
OPenCV中累加一个三通道矩阵中的所有元素:
程序为:
float sum( const CvMat* mat )
{
float s = 0.0f;
for(int row=0; rowrows; row++ )
{
const float* ptr=(const float*)(mat->data.ptr + row * mat->step);
for( col=0; colcols; col++ )
{
s += *ptr++;
}
}
return( s );
}
我想问const float* ptr=(const float*)(mat->data.ptr + row * mat->step); 这句程序的详细意思,看不懂
OPenCV中累加一个三通道矩阵中的所有元素:程序为:float sum( const CvMat* mat ){ float s = 0.0f; for(int row=0; rowrows; row++ ){ const float* ptr=(const float*)(mat->data.ptr + row * mat->step); for( col=0; colcols; col++ ) { s +=
mat->data.ptr 是指向 mat中数据的指针,是char 的
而mat中的数据,是float的
所以,在前面进行了强制转换 (const float*)
mat->step,是mat中,每行数据的长度
不过,感觉这里这么用不对头,因为 step,也是以byte为单位的,而前面已经强制成float了,所以就被人为放大了
先定义一个中间指针
char *ptr1;
ptr1 = mat->data.ptr + row * mat->step;
ptr = =(const float*)ptr1;
这样就可以了
还有可改进的地方,循环内
每次指针
ptr1 += mat->step;
就可以,不用乘row了