/*===================================================================== QGroundControl Open Source Ground Control Station (c) 2009 - 2011 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project QGROUNDCONTROL is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. QGROUNDCONTROL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with QGROUNDCONTROL. If not, see . ======================================================================*/ /** * @file * @brief Implementation of main window * * @author Dominik Honegger * */ #include "QGCVideoMainWindow.h" #include "ui_QGCVideoMainWindow.h" #include "UDPLink.h" #include QByteArray imageRecBuffer1 = QByteArray(376*240,255); QByteArray imageRecBuffer2 = QByteArray(376*240,255); QByteArray imageRecBuffer3 = QByteArray(376*240,255); QByteArray imageRecBuffer4 = QByteArray(376*240,255); static int part = 0; unsigned char last_id = 0; QGCVideoMainWindow::QGCVideoMainWindow(QWidget *parent) : QMainWindow(parent), link(QHostAddress::Any, 5555), ui(new Ui::QGCVideoMainWindow) { ui->setupUi(this); // Set widgets in video mode ui->video1Widget->enableVideo(true); ui->video2Widget->enableVideo(true); ui->video3Widget->enableVideo(true); ui->video4Widget->enableVideo(true); // Connect link to this widget, receive all bytes connect(&link, SIGNAL(bytesReceived(LinkInterface*,QByteArray)), this, SLOT(receiveBytes(LinkInterface*,QByteArray))); // Open port link.connect(); // Show flow // FIXME int xCount = 16; int yCount = 5; unsigned char flowX[xCount][yCount]; unsigned char flowY[xCount][yCount]; flowX[3][3] = 10; flowY[3][3] = 5; ui->video4Widget->copyFlow((const unsigned char*)flowX, (const unsigned char*)flowY, xCount, yCount); } QGCVideoMainWindow::~QGCVideoMainWindow() { delete ui; } void QGCVideoMainWindow::receiveBytes(LinkInterface* link, QByteArray data) { // There is no need to differentiate between links // for this use case here Q_UNUSED(link); // Image data is stored in QByteArray // Output bytes and load Lenna! QString bytes; QString index; QString imageid; QString ascii; // TODO FIXME Fabian // RAW hardcoded to 22x22 int imgWidth = 376; int imgHeight = 240; int imgColors = 255; //const int headerSize = 15; // Construct PGM header QString header("P5\n%1 %2\n%3\n"); header = header.arg(imgWidth).arg(imgHeight).arg(imgColors); unsigned char i0 = data[0]; unsigned char id = data[1]; index.append(QString().sprintf("%02x", i0)); imageid.append(QString().sprintf("%02x", id)); qDebug() << "Received" << data.size() << "bytes"<< " part: " <video1Widget->copyImage(test); ui->video1Widget->copyImage(image1); ui->video2Widget->copyImage(image2); ui->video3Widget->copyImage(image3); ui->video4Widget->copyImage(image4); part = 0; imageRecBuffer1.clear(); imageRecBuffer2.clear(); imageRecBuffer3.clear(); imageRecBuffer4.clear(); ui->video4Widget->enableFlow(true); int xCount = 16; int yCount = 5; unsigned char flowX[xCount][yCount]; unsigned char flowY[xCount][yCount]; ui->video4Widget->copyFlow((const unsigned char*)flowX, (const unsigned char*)flowY, xCount, yCount); } /* for (int j=0; j 31 && data.at(j) < 127) { ascii.append(data.at(j)); } else { ascii.append(219); } }*/ //qDebug() << bytes; //qDebug() << "ASCII:" << ascii; }