【发布时间】:2020-01-13 07:02:41
【问题描述】:
cv::Mat image = cv::Mat::zeros(1920,1080,CV_8UC4); //it's an example (I use image have 4 channel)
cv::Vec4b& pixel = image.at<cv::Vec4b>(i,j) // i and j is rows and cols
我想使用 Cuda(GpuMat) 并且没有“.at”
如何更改访问像素的代码
【问题讨论】: