Переход от VisualStudio (C ++) к Matlab - PullRequest
0 голосов
/ 12 апреля 2019

Я написал приложение для веб-камеры в VisualStudio (C ++), которое фиксирует канал веб-камеры и показывает его в окне с помощью пакета opencv.Я могу скомпилировать и запустить решение без каких-либо проблем.Я также написал код в Matlab MEX и скомпилировал его с помощью компилятора C ++ из VisualStudio, но ничего не происходит, когда я запускаю MEX-файл.Как заставить окно появляться с использованием файла MEX?

Это для более крупного приложения (созданного в Matlab app-design), где мне нужно иметь возможность снимать изображения с помощью веб-камеры.В настоящее время он работает с файлом .exe программы веб-камеры, скомпилированной в VS, но я хотел бы переключить эту функцию на функцию MEX, чтобы иметь возможность скомпилировать приложение, над которым я работаю.

Программа, скомпилированная в VS:

#include <opencv2/opencv.hpp>
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char* argv[])
{
    //Open the default video camera
    VideoCapture cap(0);

    // if not success, exit program
    if (cap.isOpened() == false)
    {
        cout << "Cannot open the video camera" << endl;
        cin.get(); //wait for any key press
        return -1;
    }

    double dWidth = cap.get(CAP_PROP_FRAME_WIDTH); //get the width of frames of the video
    double dHeight = cap.get(CAP_PROP_FRAME_HEIGHT); //get the height of frames of the video

    cout << "Resolution of the video : " << dWidth << " x " << dHeight << endl;

    string window_name = "My Camera Feed";
    namedWindow(window_name); //create a window called "My Camera Feed"

    while (true)
    {
        Mat frame;
        bool bSuccess = cap.read(frame); // read a new frame from video 

        //Breaking the while loop if the frames cannot be captured
        if (bSuccess == false)
        {
            cout << "Video camera is disconnected" << endl;
            cin.get(); //Wait for any key press
            break;
        }

        //show the frame in the created window
        imshow(window_name, frame);

        //wait for for 10 ms until any key is pressed.  
        //If the 'Esc' key is pressed, break the while loop.
        //If the any other key is pressed, continue the loop 
        //If any key is not pressed withing 10 ms, continue the loop 
        if (waitKey(10) == 27)
        {
            cout << "Esc key is pressed by user. Stoppig the video" << endl;
            break;
        }
    }

    return 0;

}

Программа в Matlab:

/* webcam
 * Runs webcam from matlab
 * capture window: ctrl + c
 * end window: esc
 */

#include "mex.hpp"
#include "mexAdapter.hpp"
#include <opencv2/opencv.hpp>
#include <iostream>

using namespace cv;
using namespace std;
using namespace matlab::data;
using matlab::mex::ArgumentList;

class MexFunction : public matlab::mex::Function {
public:
    int operator()() {
        //Open the default video camera
    VideoCapture cap(0);

    // if not success, exit program
    if (cap.isOpened() == false)
    {
        cout << "Cannot open the video camera" << endl;
        cin.get(); //wait for any key press
        return -1;
    }

    double dWidth = cap.get(CAP_PROP_FRAME_WIDTH); //get the width of frames of the video
    double dHeight = cap.get(CAP_PROP_FRAME_HEIGHT); //get the height of frames of the video

    cout << "Resolution of the video : " << dWidth << " x " << dHeight << endl;

    string window_name = "My Camera Feed";
    namedWindow(window_name); //create a window called "My Camera Feed"

    while (true)
    {
        Mat frame;
        bool bSuccess = cap.read(frame); // read a new frame from video 

        //Breaking the while loop if the frames cannot be captured
        if (bSuccess == false)
        {
            cout << "Video camera is disconnected" << endl;
            cin.get(); //Wait for any key press
            break;
        }

        //show the frame in the created window
        imshow(window_name, frame);

        //wait for for 10 ms until any key is pressed.  
        //If the 'Esc' key is pressed, break the while loop.
        //If the any other key is pressed, continue the loop 
        //If any key is not pressed withing 10 ms, continue the loop 
        if (waitKey(10) == 27)
        {
            cout << "Esc key is pressed by user. Stoppig the video" << endl;
            break;
        }
    }
    return 0;
    }

};

Я скомпилировал программу в Matlab с помощью команды:

mex webcamCversion.cpp -I'C:\opencv\build\include\'

Я быожидайте увидеть окно, открывающееся с веб-трансляцией, но ничего не произойдет, когда я запускаю версию программы Matlab.

...