Subversion Repositories OpenCV2-Cookbook

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 PointedEar 1
/*------------------------------------------------------------------------------------------*\
2
   This file contains material supporting chapter 1 of the cookbook:  
3
   Computer Vision Programming using the OpenCV Library.
4
   by Robert Laganiere, Packt Publishing, 2011.
5
 
6
   This program is free software; permission is hereby granted to use, copy, modify,
7
   and distribute this source code, or portions thereof, for any purpose, without fee,
8
   subject to the restriction that the copyright notice may not be removed
9
   or altered from any source or altered source distribution.
10
   The software is released on an as-is basis and without any warranties of any kind.
11
   In particular, the software is not guaranteed to be fault-tolerant or free from failure.
12
   The author disclaims all warranties with regard to this software, any use,
13
   and any consequent failure, is purely the responsibility of the user.
14
 
15
   Copyright (C) 2010-2011 Robert Laganiere, www.laganiere.name
16
\*------------------------------------------------------------------------------------------*/
17
/********************************************************************************
18
** Form generated from reading UI file 'mainwindow.ui'
19
**
20
** Created: Wed Jun 30 08:35:07 2010
21
**      by: Qt User Interface Compiler version 4.6.3
22
**
23
** WARNING! All changes made in this file will be lost when recompiling UI file!
24
********************************************************************************/
25
 
26
#ifndef UI_MAINWINDOW_H
27
#define UI_MAINWINDOW_H
28
 
29
#include <QtCore/QVariant>
30
#include <QtGui/QAction>
31
#include <QtGui/QApplication>
32
#include <QtGui/QButtonGroup>
33
#include <QtGui/QHeaderView>
34
#include <QtGui/QLabel>
35
#include <QtGui/QMainWindow>
36
#include <QtGui/QMenuBar>
37
#include <QtGui/QPushButton>
38
#include <QtGui/QStatusBar>
39
#include <QtGui/QToolBar>
40
#include <QtGui/QWidget>
41
 
42
QT_BEGIN_NAMESPACE
43
 
44
class Ui_MainWindow
45
{
46
public:
47
    QWidget *centralWidget;
48
    QPushButton *pushButton;
49
    QPushButton *pushButton_2;
50
    QLabel *label;
51
    QMenuBar *menuBar;
52
    QToolBar *mainToolBar;
53
    QStatusBar *statusBar;
54
 
55
    void setupUi(QMainWindow *MainWindow)
56
    {
57
        if (MainWindow->objectName().isEmpty())
58
            MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
59
        MainWindow->resize(572, 326);
60
        centralWidget = new QWidget(MainWindow);
61
        centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
62
        pushButton = new QPushButton(centralWidget);
63
        pushButton->setObjectName(QString::fromUtf8("pushButton"));
64
        pushButton->setGeometry(QRect(10, 10, 111, 51));
65
        pushButton_2 = new QPushButton(centralWidget);
66
        pushButton_2->setObjectName(QString::fromUtf8("pushButton_2"));
67
        pushButton_2->setGeometry(QRect(10, 70, 111, 51));
68
        label = new QLabel(centralWidget);
69
        label->setObjectName(QString::fromUtf8("label"));
70
        label->setGeometry(QRect(160, 10, 391, 261));
71
        MainWindow->setCentralWidget(centralWidget);
72
        menuBar = new QMenuBar(MainWindow);
73
        menuBar->setObjectName(QString::fromUtf8("menuBar"));
74
        menuBar->setGeometry(QRect(0, 0, 572, 25));
75
        MainWindow->setMenuBar(menuBar);
76
        mainToolBar = new QToolBar(MainWindow);
77
        mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
78
        MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
79
        statusBar = new QStatusBar(MainWindow);
80
        statusBar->setObjectName(QString::fromUtf8("statusBar"));
81
        MainWindow->setStatusBar(statusBar);
82
 
83
        retranslateUi(MainWindow);
84
 
85
        QMetaObject::connectSlotsByName(MainWindow);
86
    } // setupUi
87
 
88
    void retranslateUi(QMainWindow *MainWindow)
89
    {
90
        MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0, QApplication::UnicodeUTF8));
91
        pushButton->setText(QApplication::translate("MainWindow", "Open Image", 0, QApplication::UnicodeUTF8));
92
        pushButton_2->setText(QApplication::translate("MainWindow", "Process", 0, QApplication::UnicodeUTF8));
93
        label->setText(QApplication::translate("MainWindow", "Image", 0, QApplication::UnicodeUTF8));
94
    } // retranslateUi
95
 
96
};
97
 
98
namespace Ui {
99
    class MainWindow: public Ui_MainWindow {};
100
} // namespace Ui
101
 
102
QT_END_NAMESPACE
103
 
104
#endif // UI_MAINWINDOW_H