我有一个问题使我发疯。
以下代码在CV_BRG2GRAY上产生分段错误
while (!glfwWindowShouldClose(window))
{
cap >> image_BGR;
cv::cvtColor(image_BGR, image_BGR, CV_BGR2GRAY);
display(window, image_BGR);
...
}
一些澄清
最佳答案
我发现了问题:尽管文档中未对此进行说明,但功能显示显然仅接受bgr图像:-/
关于c++ - CV::COLOR_BRG2GRAY上的段错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29898594/