2

ここに私のコードがあります

#include <iostream>

#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"

using namespace std;

const int KEY_ENTER = 10;
const int KEY_ESC   = 27;
const int KEY_1         = 49;
const int KEY_2         = 50;
const int KEY_3         = 51;
const int KEY_4         = 52;
const int KEY_5         = 53;
const int KEY_6         = 54;

const int DELAY = 30;

const string WIN_NAME = "Camera View";

const string NAME[6] = {"me", "serk", "prot", "vitkt", "st", "tara"};

struct pg
{
string name;
int cnt;
pg(): name(""), cnt (0) {};
pg(string s, int c) : name(s) , cnt(c) {};
};

pg crew[6];

int main()
{
for(int i = 0; i < 6; ++i)
    crew[i] = pg(NAME[i], 0);

cv::VideoCapture cam;

cam.open(0);

cv::Mat frame;

pg cur = crew[0];

int c = 0;
for(;cam.isOpened();)
{
    try
    {
    cam >> frame;

    cv::imshow(WIN_NAME, frame);

    int key = cv::waitKey(DELAY);

    cur = (key >= KEY_1 && key <= KEY_6) ? crew[key - KEY_1] : cur;

    if(KEY_ENTER == key)
        cv::imwrite(cv::format("%s%d.jpg", cur.name.c_str(), cur.cnt++), frame);

    if(KEY_ESC == key)
        break;
    } catch (cv::Exception e)
    {
        cout << e.err << endl;
    }
}

cam.release();
return 0;
}

しかし、カメラからビデオをキャプチャできません。=( 私の PC には Ubuntu 12.04 があります。

Linuxのインストール手順のすべての手順を正確に実行しました 。問題をグーグル検索し、これに追加の依存関係をインストールしました

  • python-opencv
  • libhighgui2.3
  • libhighgui-dev
  • ffmpeg
  • libgstreamer0.10-0
  • libv4l-0
  • libv4l-dev
  • libxine2
  • libunicap2
  • libdc1394-22

私が見つけることができる他の多く。しかし、それでも機能しません。
ばかげていますが、このコードは同じディストリビューションのubuntuを使用して私のラップトップで動作します。コンパイルエラーはありません。

端末 gstreamer-properties でそのカメラを開きます。誰かが何をすべきか知っていますか?お願い助けて。

ファイルから写真を読み込めないことに気付きました

コード例 #include "opencv2/core/core.hpp" #include "opencv2/highgui/highgui.hpp"

#include <iostream>

using namespace std;

int main()
{
system("clear");

cv::Mat picture;
picture = cv::imread("boobies.jpg");

cout << picture.rows << endl;
cv::imshow("Smile", picture);

char ch;
cin >> ch;

cv::destroyWindow("Smile");

return 0;
}

プロジェクトフォルダから画像をロードしていません

4

2 に答える 2

2

を初期化するのを忘れましたcam。パラメーターとしてコンストラクターを使用する必要がありintます。

// the constructor that opens video file
VideoCapture(const string& filename);
// the constructor that starts streaming from the camera
VideoCapture(int device);

次のようにします。

cv::VideoCapture cam(0);
cam.open(0);

また、次を使用できますcvCaptureFromCAM

CvCapture *capture;
capture = cvCaptureFromCAM( 0 );

これにより、キャプチャ インスタンスが割り当てられ、初期化されます。

于 2013-07-11T19:33:35.037 に答える