Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
eda637f5
Commit
eda637f5
authored
Jul 29, 2011
by
fattony
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enabled all four video streams with image id check
disabled hud instruments at startup
parent
4bbd02c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
48 deletions
+141
-48
QGCVideoMainWindow.cc
src/apps/qgcvideo/QGCVideoMainWindow.cc
+140
-47
QGCVideoWidget.cc
src/apps/qgcvideo/QGCVideoWidget.cc
+1
-1
No files found.
src/apps/qgcvideo/QGCVideoMainWindow.cc
View file @
eda637f5
...
...
@@ -37,7 +37,10 @@
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
),
...
...
@@ -75,6 +78,7 @@ void QGCVideoMainWindow::receiveBytes(LinkInterface* link, QByteArray data)
QString
bytes
;
QString
index
;
QString
imageid
;
QString
ascii
;
...
...
@@ -93,90 +97,147 @@ void QGCVideoMainWindow::receiveBytes(LinkInterface* link, QByteArray data)
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: "
<<
index
<<
" imageid: "
<<
imageid
;
switch
(
i0
)
{
case
0x01
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
imageRecBuffer1
[
i
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
]
=
data
[
i
*
4
+
1
];
part
=
0
;
}
part
=
part
|
1
;
break
;
}
case
0x02
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45124
/
4
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
]
=
data
[
i
*
4
+
1
];
imageRecBuffer1
[
i
+
45120
/
4
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
part
=
0
;
}
part
=
part
|
2
;
break
;
}
case
0x03
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45120
/
4
*
2
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
2
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
2
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
2
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
2
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
2
]
=
data
[
i
*
4
+
1
];
part
=
0
;
}
part
=
part
|
4
;
break
;
}
case
0x04
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
3
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
3
]
=
data
[
i
*
4
+
1
];
imageRecBuffer1
[
i
+
45120
/
4
*
3
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
3
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
3
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
3
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
part
=
0
;
}
part
=
part
|
8
;
break
;
}
case
0x05
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45120
/
4
*
4
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
4
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
4
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
4
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
4
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
4
]
=
data
[
i
*
4
+
1
];
part
=
0
;
}
part
=
part
|
16
;
break
;
}
case
0x06
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
5
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
5
]
=
data
[
i
*
4
+
1
];
imageRecBuffer1
[
i
+
45120
/
4
*
5
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
5
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
5
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
5
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
part
=
0
;
}
part
=
part
|
32
;
break
;
}
case
0x07
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
6
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
6
]
=
data
[
i
*
4
+
1
];
imageRecBuffer1
[
i
+
45120
/
4
*
6
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
6
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
6
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
6
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
part
=
0
;
}
part
=
part
|
64
;
break
;
}
case
0x08
:
{
for
(
int
i
=
4
;
i
<
data
.
size
()
/
4
;
i
++
)
for
(
int
i
=
0
;
i
<
data
.
size
()
/
4
-
1
;
i
++
)
{
imageRecBuffer1
[
i
+
45120
/
4
*
7
]
=
data
[
i
*
4
+
4
];
imageRecBuffer2
[
i
+
45120
/
4
*
7
]
=
data
[
i
*
4
+
5
]
+
127
;
imageRecBuffer3
[
i
+
45120
/
4
*
7
]
=
data
[
i
*
4
+
6
]
+
127
;
imageRecBuffer4
[
i
+
45120
/
4
*
7
]
=
data
[
i
*
4
+
7
];
}
if
(
id
!=
last_id
)
{
imageRecBuffer1
[
i
+
45124
/
4
*
7
]
=
data
[
i
*
4
];
imageRecBuffer2
[
i
+
45124
/
4
*
7
]
=
data
[
i
*
4
+
1
];
part
=
0
;
}
part
=
part
|
128
;
break
;
}
}
last_id
=
id
;
if
(
part
==
255
)
{
...
...
@@ -184,51 +245,84 @@ void QGCVideoMainWindow::receiveBytes(LinkInterface* link, QByteArray data)
tmpImage1
.
append
(
imageRecBuffer1
);
QByteArray
tmpImage2
(
header
.
toStdString
().
c_str
(),
header
.
toStdString
().
size
());
tmpImage2
.
append
(
imageRecBuffer2
);
QByteArray
tmpImage3
(
header
.
toStdString
().
c_str
(),
header
.
toStdString
().
size
());
tmpImage3
.
append
(
imageRecBuffer3
);
QByteArray
tmpImage4
(
header
.
toStdString
().
c_str
(),
header
.
toStdString
().
size
());
tmpImage4
.
append
(
imageRecBuffer4
);
// Load image into window
//QImage test(":images/patterns/lenna.jpg");
QImage
image1
;
QImage
image2
;
QImage
image3
;
QImage
image4
;
if
(
imageRecBuffer1
.
isNull
())
{
qDebug
()
<<
"could not convertToPGM()"
;
{
qDebug
()
<<
"could not convertToPGM()"
;
}
}
if
(
!
image1
.
loadFromData
(
tmpImage1
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image1"
;
if
(
!
image1
.
loadFromData
(
tmpImage1
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image1"
;
}
if
(
imageRecBuffer2
.
isNull
())
{
qDebug
()
<<
"could not convertToPGM()"
;
}
if
(
imageRecBuffer2
.
isNull
())
{
qDebug
()
<<
"could not convertToPGM()"
;
}
}
if
(
!
image2
.
loadFromData
(
tmpImage2
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image2"
;
if
(
!
image2
.
loadFromData
(
tmpImage2
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image2"
;
}
}
if
(
imageRecBuffer3
.
isNull
())
{
qDebug
()
<<
"could not convertToPGM()"
;
}
if
(
!
image3
.
loadFromData
(
tmpImage3
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image3"
;
}
if
(
imageRecBuffer4
.
isNull
())
{
qDebug
()
<<
"could not convertToPGM()"
;
}
if
(
!
image4
.
loadFromData
(
tmpImage4
,
"PGM"
))
{
qDebug
()
<<
"could not create extracted image3"
;
}
tmpImage1
.
clear
();
tmpImage2
.
clear
();
tmpImage3
.
clear
();
tmpImage4
.
clear
();
//ui->video1Widget->copyImage(test);
ui
->
video2Widget
->
copyImage
(
image1
);
ui
->
video3Widget
->
copyImage
(
image2
);
//ui->video4Widget->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
();
}
index
.
append
(
QString
().
sprintf
(
"%02x "
,
i0
));
for
(
int
j
=
0
;
j
<
data
.
size
();
j
++
)
{
/* for (int j=0; j<data.size(); j++) {
unsigned char v = data[j];
bytes.append(QString().sprintf("%02x ", v));
if (data.at(j) > 31 && data.at(j) < 127)
...
...
@@ -240,9 +334,8 @@ void QGCVideoMainWindow::receiveBytes(LinkInterface* link, QByteArray data)
ascii.append(219);
}
}
qDebug
()
<<
"Received"
<<
data
.
size
()
<<
"bytes"
;
qDebug
()
<<
"index: "
<<
index
;
}*/
//qDebug() << bytes;
//qDebug() << "ASCII:" << ascii;
...
...
src/apps/qgcvideo/QGCVideoWidget.cc
View file @
eda637f5
...
...
@@ -129,7 +129,7 @@ QGCVideoWidget::QGCVideoWidget(QWidget* parent)
load
(
0.0
f
),
offlineDirectory
(
""
),
nextOfflineImage
(
""
),
hudInstrumentsEnabled
(
tru
e
),
hudInstrumentsEnabled
(
fals
e
),
videoEnabled
(
false
),
xImageFactor
(
1.0
),
yImageFactor
(
1.0
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment