Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Problem with cv::VideoCapture

Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. For this I use the class cv::VideoCapture . Everything works good, except now when I want to deploy this application statically . Now when I compile in static, cv :: VideoCapture can no longer open the videos yet opened well before ... This is my simplify code:

void traitement_mouvement::mouvement(String url) { qDebug()<<"running app";

VideoCapture capture(url);

    if (!capture.isOpened())
    {
        qDebug()<<"Problem opening video";
        qDebug() << QString::fromStdString(url);
    }

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance

Problem with cv::VideoCaptureopencv in release mode

Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. For this I use the class cv::VideoCapture . Everything works good, except now when I want to deploy this application statically . Now when I compile in static, cv :: VideoCapture I can no longer open the imagges and videos yet opened well before ... This is my simplify code:

void traitement_mouvement::mouvement(String url) { qDebug()<<"running app";

VideoCapture capture(url);

    if (!capture.isOpened())
    {
        qDebug()<<"Problem opening video";
        qDebug() << QString::fromStdString(url);
    }

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance

Problem with opencv in release static mode

Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. Everything works good, except now when I want to deploy this application statically . Now when I compile in static, I can no longer open the imagges and videos yet opened well before ... This is my simplify code:

void traitement_mouvement::mouvement(String url) { qDebug()<<"running app";

VideoCapture capture(url);

    if (!capture.isOpened())
    {
        qDebug()<<"Problem opening video";
        qDebug() << QString::fromStdString(url);
    }

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance

click to hide/show revision 4
No.4 Revision

Problem with opencv in static mode

Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. Everything works good, except now when I want to deploy this application statically . Now when I compile in static, I can no longer open the imagges and videos yet opened well before ... This is my simplify code:

void traitement_mouvement::mouvement(String url)
{
 qDebug()<<"running app";

app";
VideoCapture capture(url);

    if (!capture.isOpened())
    {
        qDebug()<<"Problem opening video";
        qDebug() << QString::fromStdString(url);
    }

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance

Problem opencv with opencv in static modecompilation

Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. Everything works good, except now when I want to deploy this application statically . Now when I compile in static, I can no longer open the imagges and videos yet opened well before ... This is my simplify code:

void traitement_mouvement::mouvement(String url)
{
qDebug()<<"running app";

VideoCapture capture(url);

    if (!capture.isOpened())
    {
        qDebug()<<"Problem opening video";
        qDebug() << QString::fromStdString(url);
    }

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance