fixed file name, added select image

This commit is contained in:
lostjared
2017-02-05 04:20:05 -08:00
parent 2256d9b733
commit 59d5effd08
3 changed files with 32 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
CaptureCamera::CaptureCamera(QWidget *parent) : QDialog(parent) {
setGeometry(100, 100, 290, 120);
setFixedSize(290, 120);
setWindowTitle("Capture from Webcam");
setWindowIcon(QPixmap(":/images/icon.png"));
@@ -67,6 +68,7 @@ void CaptureCamera::btn_Start() {
}
CaptureVideo::CaptureVideo(QWidget *parent) : QDialog(parent) {
setGeometry(100, 100, 330, 100);
setFixedSize(330, 100);
setWindowTitle(("Capture from Video"));
setWindowIcon(QPixmap(":/images/icon.png"));