VSL 2017+Qt 5+Opencv 3.4カメラを起動して写真を撮って保存します。
7688 ワード
1. Qtのuiインターフェイスは、絵を探しています。
2.ヘッドファイルを直接貼り付けて、後でゆっくり説明してください。
完全プロジェクトのダウンロード:QtWidgets Apple 2_jb 51.rar
ここで、VSL 2017+Qt 5+Opencv 3.4についてカメラを起動して写真を撮って保存した記事を紹介します。もっと関連するQt 5 Opencv 3.4は写真を撮って、内容を保存してください。以前の記事を検索してください。または下記の関連記事を引き続きご覧ください。これからもよろしくお願いします。
2.ヘッドファイルを直接貼り付けて、後でゆっくり説明してください。
#pragma once
#include <QtWidgets/QWidget>
#include "ui_camaraGet.h"
#ifndef CAMARAGET_H
#define CAMARAGET_H
#include <opencv2\core\core.hpp>
#include <QWidget>
#include <QImage>
#include <QTimer> //
#include <QGraphicsScene>
#include <QGraphicsView>
#include <highgui/highgui_c.h> // opencv
#include <opencv2\imgproc\imgproc.hpp>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp> //opencv
#include <opencv/cv.hpp>
using namespace cv;
namespace Ui {
class camaraGet;
}
class camaraGet : public QWidget
{
Q_OBJECT
public:
explicit camaraGet(QWidget *parent = 0);
~camaraGet();
private slots:
void openCamara(); //
void getFrame(); //
void closeCamara(); // 。
void takingPictures(); //
private:
Ui::camaraGet ui;
QTimer *timer;
QImage *imag;
CvCapture *cam;// ,
IplImage *frame;
VideoCapture capture1;
Mat showimage;
QImage Mat2Qimage(Mat cvImg);
// camaraGet(QWidget * parent);
// IplImage ,
};
#endif // CAMARAGET_H
3.ソースファイル
#pragma once
#include <QtWidgets/QWidget>
#include "ui_camaraGet.h"
#ifndef CAMARAGET_H
#define CAMARAGET_H
#include <opencv2\core\core.hpp>
#include <QWidget>
#include <QImage>
#include <QTimer> //
#include "camaraGet.h"
#include<stdlib.h>
#include<random>
using namespace cv;
using namespace std;
camaraGet::camaraGet(QWidget *parent):
QWidget(parent)
{
ui.setupUi(this);
connect(ui.pushButton, SIGNAL(clicked()), this, SLOT(openCamara()));
connect(ui.pushButton_2, SIGNAL(clicked()), this, SLOT(takingPictures()));
connect(ui.pushButton_3, SIGNAL(clicked()), this, SLOT(closeCamara()));
setWindowTitle(tr("Main Window"));
timer = new QTimer(this);
imag = new QImage();
connect(timer, SIGNAL(timeout()), this, SLOT(getFrame()));//
}
camaraGet::~camaraGet()
{
}
void camaraGet::openCamara()
{
capture1.open(1); // ,
timer->start(10);
}
void camaraGet::getFrame() {
capture1 >> showimage;
QImage imag = Mat2Qimage(showimage);
ui.label_2->setScaledContents(true);
ui.label_2->setPixmap(QPixmap::fromImage(imag));
}
void camaraGet::closeCamara()
{
timer->stop();
ui.label->clear();
capture1.release();
}
string strRand(int length) { // length:
char tmp; // tmp:
string buffer; // buffer:
random_device rd; // std::random_device rd
default_random_engine random(rd()); // rd random
for (int i = 0; i < length; i++) {
tmp = random() % 36;
if (tmp < 10) {
tmp += '0';
}
else {
tmp -= 10;
tmp += 'A';
}
buffer += tmp;
}
return buffer;
}
void camaraGet::takingPictures()
{
capture1.open(1);
capture1 >> showimage;
QImage img = Mat2Qimage(showimage);
ui.label->setScaledContents(true);
ui.label->setPixmap(QPixmap::fromImage(img));
string writePath = "../tempPhoto/";
string name;
int i = 0;
name = writePath + strRand(4) + ".jpg";
imwrite(name, showimage);
i++;
}
QImage camaraGet::Mat2Qimage(Mat cvImg)
{
// 8-bits unsigned, NO. OF CHANNELS = 1
if (cvImg.type() == CV_8UC1)
{
QImage image(cvImg.cols, cvImg.rows, QImage::Format_Indexed8);
// Set the color table (used to translate colour indexes to qRgb values)
image.setColorCount(256);
for (int i = 0; i < 256; i++)
{
image.setColor(i, qRgb(i, i, i));
}
// Copy input Mat
uchar *pSrc = cvImg.data;
for (int row = 0; row < cvImg.rows; row++)
{
uchar *pDest = image.scanLine(row);
memcpy(pDest, pSrc, cvImg.cols);
pSrc += cvImg.step;
}
return image;
}
// 8-bits unsigned, NO. OF CHANNELS = 3
else if (cvImg.type() == CV_8UC3)
{
// Copy input Mat
const uchar *pSrc = (const uchar*)cvImg.data;
// Create QImage with same dimensions as input Mat
QImage image(pSrc, cvImg.cols, cvImg.rows, cvImg.step, QImage::Format_RGB888);
return image.rgbSwapped();
}
else if (cvImg.type() == CV_8UC4)
{
// qDebug() << "CV_8UC4";
// Copy input Mat
const uchar *pSrc = (const uchar*)cvImg.data;
// Create QImage with same dimensions as input Mat
QImage image(pSrc, cvImg.cols, cvImg.rows, cvImg.step, QImage::Format_ARGB32);
return image.copy();
}
else
{
// qDebug() << "ERROR: Mat could not be converted to QImage.";
return QImage();
}
}
#include <QGraphicsScene>
#include <QGraphicsView>
#include <highgui/highgui_c.h> // opencv
#include <opencv2\imgproc\imgproc.hpp>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp> //opencv
#include <opencv/cv.hpp>
using namespace cv;
namespace Ui {
class camaraGet;
}
class camaraGet : public QWidget
{
Q_OBJECT
public:
explicit camaraGet(QWidget *parent = 0);
~camaraGet();
private slots:
void openCamara(); //
void getFrame(); //
void closeCamara(); // 。
void takingPictures(); //
private:
Ui::camaraGet ui;
QTimer *timer;
QImage *imag;
CvCapture *cam;// ,
IplImage *frame;
VideoCapture capture1;
Mat showimage;
QImage Mat2Qimage(Mat cvImg);
// camaraGet(QWidget * parent);
// IplImage ,
};
#endif // CAMARAGET_H
4.運転効果完全プロジェクトのダウンロード:QtWidgets Apple 2_jb 51.rar
ここで、VSL 2017+Qt 5+Opencv 3.4についてカメラを起動して写真を撮って保存した記事を紹介します。もっと関連するQt 5 Opencv 3.4は写真を撮って、内容を保存してください。以前の記事を検索してください。または下記の関連記事を引き続きご覧ください。これからもよろしくお願いします。