2014-07-15 17:12:10 -04:00
|
|
|
#include <opencv/cv.h>
|
|
|
|
#include <opencv/highgui.h>
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QPainter>
|
|
|
|
#include "QVideoDevice.h"
|
|
|
|
#include "VideoProcessor.h"
|
|
|
|
|
|
|
|
QVideoInputDevice::QVideoInputDevice(QWidget *parent)
|
2015-05-11 15:40:07 -04:00
|
|
|
:QObject(parent)
|
2014-07-13 09:57:25 -04:00
|
|
|
{
|
|
|
|
_timer = NULL ;
|
|
|
|
_capture_device = NULL ;
|
|
|
|
_video_encoder = NULL ;
|
|
|
|
_echo_output_device = NULL ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QVideoInputDevice::stop()
|
|
|
|
{
|
|
|
|
if(_timer != NULL)
|
|
|
|
{
|
|
|
|
QObject::disconnect(_timer,SIGNAL(timeout()),this,SLOT(grabFrame())) ;
|
|
|
|
_timer->stop() ;
|
|
|
|
delete _timer ;
|
|
|
|
_timer = NULL ;
|
|
|
|
}
|
|
|
|
if(_capture_device != NULL)
|
|
|
|
{
|
|
|
|
cvReleaseCapture(&_capture_device) ;
|
|
|
|
_capture_device = NULL ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void QVideoInputDevice::start()
|
|
|
|
{
|
|
|
|
// make sure everything is re-initialised
|
|
|
|
//
|
|
|
|
stop() ;
|
|
|
|
|
|
|
|
// Initialise la capture
|
|
|
|
static const int cam_id = 0 ;
|
|
|
|
_capture_device = cvCaptureFromCAM(cam_id);
|
|
|
|
|
|
|
|
if(_capture_device == NULL)
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot initialise camera. Something's wrong." << std::endl;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
_timer = new QTimer ;
|
|
|
|
QObject::connect(_timer,SIGNAL(timeout()),this,SLOT(grabFrame())) ;
|
|
|
|
|
|
|
|
_timer->start(50) ; // 10 images per second.
|
|
|
|
}
|
|
|
|
|
|
|
|
void QVideoInputDevice::grabFrame()
|
|
|
|
{
|
|
|
|
IplImage *img=cvQueryFrame(_capture_device);
|
|
|
|
|
|
|
|
if(img == NULL)
|
|
|
|
{
|
|
|
|
std::cerr << "(EE) Cannot capture image from camera. Something's wrong." << std::endl;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
// get the image data
|
|
|
|
|
|
|
|
if(img->nChannels != 3)
|
|
|
|
{
|
|
|
|
std::cerr << "(EE) expected 3 channels. Got " << img->nChannels << std::endl;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2014-12-30 10:42:15 -05:00
|
|
|
// convert to RGB and copy to new buffer, because cvQueryFrame tells us to not modify the buffer
|
|
|
|
cv::Mat img_rgb;
|
|
|
|
cv::cvtColor(cv::Mat(img), img_rgb, CV_BGR2RGB);
|
|
|
|
|
2014-07-13 09:57:25 -04:00
|
|
|
static const int _encoded_width = 128 ;
|
|
|
|
static const int _encoded_height = 128 ;
|
|
|
|
|
2014-12-30 10:42:15 -05:00
|
|
|
QImage image = QImage(img_rgb.data,img_rgb.cols,img_rgb.rows,QImage::Format_RGB888).scaled(QSize(_encoded_width,_encoded_height),Qt::IgnoreAspectRatio,Qt::SmoothTransformation) ;
|
2014-07-13 09:57:25 -04:00
|
|
|
|
2014-07-15 16:04:31 -04:00
|
|
|
if(_video_encoder != NULL)
|
|
|
|
{
|
|
|
|
_video_encoder->addImage(image) ;
|
|
|
|
emit networkPacketReady() ;
|
|
|
|
}
|
2014-07-13 09:57:25 -04:00
|
|
|
if(_echo_output_device != NULL) _echo_output_device->showFrame(image) ;
|
|
|
|
}
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
bool QVideoInputDevice::getNextEncodedPacket(RsVOIPDataChunk& chunk)
|
2014-07-15 16:04:31 -04:00
|
|
|
{
|
|
|
|
return _video_encoder->nextPacket(chunk) ;
|
|
|
|
}
|
|
|
|
|
2014-07-13 09:57:25 -04:00
|
|
|
QVideoInputDevice::~QVideoInputDevice()
|
|
|
|
{
|
|
|
|
stop() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QVideoOutputDevice::QVideoOutputDevice(QWidget *parent)
|
|
|
|
: QLabel(parent)
|
2014-07-20 16:50:36 -04:00
|
|
|
{
|
|
|
|
showFrameOff() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QVideoOutputDevice::showFrameOff()
|
2014-07-13 09:57:25 -04:00
|
|
|
{
|
2014-12-04 08:49:04 -05:00
|
|
|
setPixmap(QPixmap(":/images/video-icon-big.png").scaled(320,256,Qt::KeepAspectRatio,Qt::SmoothTransformation)) ;
|
2014-07-13 09:57:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void QVideoOutputDevice::showFrame(const QImage& img)
|
|
|
|
{
|
|
|
|
setPixmap(QPixmap::fromImage(img).scaled(minimumSize(),Qt::IgnoreAspectRatio,Qt::SmoothTransformation)) ;
|
|
|
|
}
|
|
|
|
|