gpt4 book ai didi

c++ - Mat::ones 在 OpenCV 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 22:33:27 31 4
gpt4 key购买 nike

int main () {    

Mat A = Mat::ones(100, 100, CV_8U)*3;
cout << A.at<int>(0,0) << endl;

return 0;
}

输出是一个非常大的数::50529027

谁能帮帮我?? C++代码

最佳答案

you're casting to the wrong type in A.at<int>() // should be uchar instead of int

so, A.at<int>(0,0) sees 0x03030303, which is, in fact 50529027.

Mat A = Mat::ones(100, 100, CV_8U)*3;
cout << int(A.at<uchar>(0,0)) << endl;

(围绕 A.at() 的转换只是为了用 cout 而不是 char 显示数字)

关于c++ - Mat::ones 在 OpenCV 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14853416/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com