gpt4 book ai didi

opencv - 遍历 hsv 图像不断崩溃

转载 作者:行者123 更新时间:2023-12-02 17:51:19 26 4
gpt4 key购买 nike

我正在尝试遍历 HSV 图像,但它一直在崩溃。

   Mat a=imread("play.jpg");
Mat hsvimage, hsvimage2,cont;
cvtColor(a, hsvimage, CV_BGR2HSV );
imshow("image",a);
inRange(hsvimage, Scalar(20, 100, 100), Scalar(170, 255, 255),hsvimage2);
imshow("Thresholded image",hsvimage2);

for(int i=0; i<hsvimage2.rows; i++)
for(int j=0; i<hsvimage2.cols; j++)
//the line belows keeps failing
std::cout <<hsvimage2.at<uchar>(i,j) << " " << hsvimage2.at<uchar>(i,j) << " " << hsvimage2.at<uchar>(i,j) << std::endl;

最佳答案

它可能会崩溃,因为您在内部循环中有错字,您可以在其中与 i 进行比较而不是 j在终止条件下。

for(int j=0; i<hsvimage2.cols; j++)

此外,如果您有一个 BGR 图像进入(3 个 channel ),您将获得一个 HSV 图像(3 个 channel ),但是您正在访问像素,就好像它们是单 channel 一样。为你的循环尝试这样的事情来转储 H、S 和 V 值:

for(int i=0; i<hsvimage2.rows; i++)
{
for(int j=0; j<hsvimage2.cols; j++) // original error was on this line
{
Vec3b pHSV = hsvimage2.at<Vec3b>(i, j);
std::cout << pHSV.val[0] << " "
<< pHSV.val[1] << " "
<< pHSV.val[2] << std::endl;
}
}

关于opencv - 遍历 hsv 图像不断崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20454792/

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