簡體   English   中英

OpenCV墊到SFML圖像

[英]OpenCV mat to SFML image

有沒有一種方法可以將OpenCV素材格式化為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();
    }

這對我很好:

cv::VideoCapture cap(0); // open the video file for reading
if(!cap.isOpened())
{
    return 0;
}

sf::RenderWindow window(sf::VideoMode(1200, 900), "RenderWindow");
cv::Mat frameRGB, frameRGBA;
sf::Image image;
sf::Texture texture;
sf::Event event;
sf::Sprite sprite;

while (window.isOpen())
{
    cap >> frameRGB;

    if(frameRGB.empty())
    {
        break;
    }

    cv::cvtColor(frameRGB, frameRGBA, cv::COLOR_BGR2RGBA);

    image.create(frameRGBA.cols, frameRGBA.rows, frameRGBA.ptr());

    if (!texture.loadFromImage(image))
    {
        break;
    }

    sprite.setTexture(texture);

    while (window.pollEvent(event))
    {
        if (event.type == sf::Event::Closed)
            window.close();
    }

    window.draw(sprite);
    window.display();
}

管理camData時出現問題。 您從循環外部分配內存,但是cv::cvtColor()cv::cvtColor()重新分配continuousRGBA ,這就是為什么您看到黑屏的原因。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM