【发布时间】:2015-04-01 02:47:33
【问题描述】:
有没有办法将 OpenCV mat 格式化为 SFML 图像。或者有没有其他方法可以在 SFML 窗口中显示垫子? 我试过将mat数组转换成uchar数组,但是结果是黑屏。
cv::VideoCapture cap(0); // open the video file for reading
sf::Event event;
sf::Image image;
sf::Texture texture;
sf::Sprite sprite;
sprite.setTexture(texture);
cv::Mat frame;
sf::RenderWindow window(sf::VideoMode(1200, 900),"my Window");
cap >> frame;
uchar* camData = new uchar[frame.total()*4];
cv::Mat continuousRGBA(frame.size(), CV_8UC4, camData);
cv::cvtColor(frame, continuousRGBA, CV_BGR2RGBA, 4);
image.create(frame.cols,frame.rows,camData);
texture.loadFromImage(image);
while (window.isOpen()){
cap >> frame;
cv::cvtColor(frame, continuousRGBA, CV_BGR2RGBA, 4);
image.create(frame.cols,frame.rows,camData);
texture.loadFromImage(image);
while (window.pollEvent(event)){
if (event.type == sf::Event::Closed)
window.close();
}
window.draw(sprite);
window.display();
}
【问题讨论】: