From: 020535 <020535@07accd87-1e0b-0410-939d-c05d8a058e03> Date: Thu, 11 Jun 2009 21:55:04 +0000 (+0000) Subject: Removing the docs from svn. These are generatet using doxygen anyways. X-Git-Url: https://git.defcon.no/?a=commitdiff_plain;h=a65d4d45c78706c49bd443a392b4c378efbdc3b9;p=qopencamwidget Removing the docs from svn. These are generatet using doxygen anyways. git-svn-id: https://dilbert.hig.no/svn/student/020535/qopencamwidget/trunk@176 07accd87-1e0b-0410-939d-c05d8a058e03 --- diff --git a/doc/html/annotated.html b/doc/html/annotated.html deleted file mode 100644 index 259c2b6..0000000 --- a/doc/html/annotated.html +++ /dev/null @@ -1,33 +0,0 @@ - -
-| QOpenCamWidget | |
| View |
1.5.6
-
-
diff --git a/doc/html/classQOpenCamWidget-members.html b/doc/html/classQOpenCamWidget-members.html
deleted file mode 100644
index 69534bb..0000000
--- a/doc/html/classQOpenCamWidget-members.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-| canvas | QOpenCamWidget | [private] |
| capture | QOpenCamWidget | [private] |
| frametimer | QOpenCamWidget | [private] |
| grabCapture(int source) | QOpenCamWidget | |
| grabFrame(void) | QOpenCamWidget | [slot] |
| imageReady(QImage snapshot) | QOpenCamWidget | [signal] |
| Ipl2QImage(const IplImage *img) | QOpenCamWidget | |
| layout | QOpenCamWidget | [private] |
| nextFrame | QOpenCamWidget | [private] |
| paintEvent(QPaintEvent *event) | QOpenCamWidget | |
| QOpenCamWidget(QWidget *parent=0) | QOpenCamWidget | |
| setSnapshotVisible(bool visible) | QOpenCamWidget | |
| startCapture(void) | QOpenCamWidget | |
| startSnap() | QOpenCamWidget | [slot] |
| trigger | QOpenCamWidget | [private] |
| trigger_active | QOpenCamWidget | [private] |
| ~QOpenCamWidget(void) | QOpenCamWidget |
1.5.6
-
-
diff --git a/doc/html/classQOpenCamWidget.html b/doc/html/classQOpenCamWidget.html
deleted file mode 100644
index a9aecff..0000000
--- a/doc/html/classQOpenCamWidget.html
+++ /dev/null
@@ -1,530 +0,0 @@
-
-
-#include <qopencamwidget.h>
-- -
Public Slots | |
| void | grabFrame (void) |
| Grabs a frame and causes an update() when triggered. | |
| void | startSnap () |
| Trigger this slot to save a frame from the widget. | |
Signals | |
| void | imageReady (QImage snapshot) |
Public Member Functions | |
| QOpenCamWidget (QWidget *parent=0) | |
| Consctructs a QWidget based widget for displaying video coming from an OpenCV capture source. | |
| ~QOpenCamWidget (void) | |
| void | paintEvent (QPaintEvent *event) |
| A paint event is a request to repaint all or part of a widget. | |
| void | setSnapshotVisible (bool visible) |
| Changes the visibility of the optional built-in "Take snapshot" button. | |
| bool | grabCapture (int source) |
| Grabs an OpenCV video capture source. | |
| void | startCapture (void) |
| Starts up grabbing of video frames. | |
| QImage * | Ipl2QImage (const IplImage *img) |
| Converts from the OpenCV IplImage data structure to a QImage. | |
Private Attributes | |
| CvCapture * | capture |
| QTimer * | frametimer |
| QImage * | nextFrame |
| QLabel * | canvas |
| QVBoxLayout * | layout |
| QPushButton * | trigger |
| bool | trigger_active |
Definition at line 29 of file qopencamwidget.h.
-| QOpenCamWidget::QOpenCamWidget | -( | -QWidget * | - parent = 0 |
- ) | -- |
-Consctructs a QWidget based widget for displaying video coming from an OpenCV capture source. -
-Including webcam data in a Qt application can be problematic, at least as long as Phonon does not support webcams, and the Phonon GStreamer backend only supports simple pipelines.
-This class solves the complexity of adding a webcam view, by using the cross-platform available OpenCV library.
-Limitations, i.e. reasons to read this code and reimplement, are: saving or streaming video is not really available (unless you do repeated timer-triggered connections to the startSnap slot), the widget size is identical to the video source dimensions (it resizes the wodget using setMinimuSize to the video dimensions, and does not handle resizing to sizes above this dimension.
-A brief summary of how to use this class:
QOpenCamWidget *cw = new QOpenCamWidget(this); - if ( cw->grabCapture(-1) ) { - cw->setSnapshotVisible(true); - cw->startCapture(); - } - connect( cw, SIGNAL(imageReady(QImage)), this, SLOT(saveImage(QImage))); -
-
| *parent | The parent widget containing this widget, defaults to NULL. |
Definition at line 60 of file qopencamwidget.cpp.
- -References canvas, frametimer, layout, nextFrame, trigger, and trigger_active.
- -| QOpenCamWidget::~QOpenCamWidget | -( | -void | -- | ) | -- |
- -
Definition at line 88 of file qopencamwidget.cpp.
- - - --
| void QOpenCamWidget::paintEvent | -( | -QPaintEvent * | -event | -) | -- |
-A paint event is a request to repaint all or part of a widget. -
-It can happen for one of the following reasons:
-
Definition at line 144 of file qopencamwidget.cpp.
- - - -| void QOpenCamWidget::setSnapshotVisible | -( | -bool | -visible | -) | -- |
-Changes the visibility of the optional built-in "Take snapshot" button. -
-The widget contains a push-button that optionally can be displayed. When visible, this button is located at the bottom of the widget, and causes the SLOT QOpenCamWidget::startSnap to be triggered when clicked.
-
| visible | True makes the button display, and trigger, false turns the feature off. False, i.e. no button, is default. |
Definition at line 110 of file qopencamwidget.cpp.
- -References layout, startSnap(), trigger, and trigger_active.
- -Referenced by View::View().
- -| bool QOpenCamWidget::grabCapture | -( | -int | -source | -) | -- |
-Grabs an OpenCV video capture source. -
-By grabbing a source, it is meant to open the capture source, and have it ready to start streaming/capturing frames. Returns true on success, false on error. The grabCapture is separated from the constructor and/or frame-grabbing, so that you may do the error-checking you really should do before proceeding.
-
| source | The OpenCV capture source enumeration index to open |
Definition at line 183 of file qopencamwidget.cpp.
- -References canvas, and capture.
- -Referenced by View::View().
- -| void QOpenCamWidget::startCapture | -( | -void | -- | ) | -- |
-Starts up grabbing of video frames. -
-The actual grabbing and displaying of video frames is performed by a QTimer triggering the SLOT QOpenCamWidget::grabFrame(). startCapture() sets up the timer running this captureFrame loop.
-The SLOT QOpenCamWidget::startSnap() is used to get image frames out from the widget for other uses, like saving or processing. This function relies on the timer created and configured by startCapture(), and as such, this function is the only permitted way to start the actual capture/streaming of video from the source. -
Definition at line 217 of file qopencamwidget.cpp.
- -References frametimer, grabFrame(), and trigger.
- -Referenced by View::View().
- -| QImage * QOpenCamWidget::Ipl2QImage | -( | -const IplImage * | -img | -) | -- |
-Converts from the OpenCV IplImage data structure to a QImage. -
-OpenCV uses a data strcuture calles IplImage, optimized for computer vision image processing tasks. This code was adapted from kcamwidget.cpp, part of the KDE SVN at playground/multimedia/kcam/kcamwidget.cpp
-In regard that the IplImage can be forced into a format that aligns well with a RBG888-format, the conversion becomes one of the shortes, simples IplImage->QImage I've seen.
-
| *img | The IplImage to be converted to a QImage. |
Definition at line 241 of file qopencamwidget.cpp.
- -Referenced by grabFrame().
- -| void QOpenCamWidget::grabFrame | -( | -void | -- | ) | - [slot] |
-
-Grabs a frame and causes an update() when triggered. -
-This is the SLOT that actually reads the video source and causes the widget to display live video. Preferably this slot will never be called my any other signal that a timeout() on the frametimer, which is controlled by QOpenCamWidget::startCapture() -
Definition at line 266 of file qopencamwidget.cpp.
- -References capture, Ipl2QImage(), and nextFrame.
- -Referenced by startCapture().
- -| void QOpenCamWidget::startSnap | -( | -void | -- | ) | - [slot] |
-
-Trigger this slot to save a frame from the widget. -
-When this slot is triggered, the widgets capture loop is temporarily stopped, and the last displayed frame is "captured", and made available through the emitting of the class imageReady SIGNAL.
-With the "Take snapshot" button visible (setSnapshotVisible(true)), this SLOT is triggered when the user clicks on the trigger button. If you do not wish to use the internal trigger button, you will have to add a different mechanism to trigger this SLOT.
-It is possible, though I would not recommend, to use repeated triggering of this slot to do repeated frame-capture, and thus make a form of "Animation" or "Video" capture. -
Definition at line 306 of file qopencamwidget.cpp.
- -References frametimer, imageReady(), and nextFrame.
- -Referenced by setSnapshotVisible().
- -| void QOpenCamWidget::imageReady | -( | -QImage | -snapshot | -) | - [signal] |
-
- -
Referenced by startSnap().
- --
CvCapture* QOpenCamWidget::capture [private] |
-
- -
Definition at line 35 of file qopencamwidget.h.
- -Referenced by grabCapture(), grabFrame(), and ~QOpenCamWidget().
- -QTimer* QOpenCamWidget::frametimer [private] |
-
- -
Definition at line 36 of file qopencamwidget.h.
- -Referenced by QOpenCamWidget(), startCapture(), and startSnap().
- -QImage* QOpenCamWidget::nextFrame [private] |
-
- -
Definition at line 37 of file qopencamwidget.h.
- -Referenced by grabFrame(), paintEvent(), QOpenCamWidget(), and startSnap().
- -QLabel* QOpenCamWidget::canvas [private] |
-
- -
Definition at line 39 of file qopencamwidget.h.
- -Referenced by grabCapture(), paintEvent(), QOpenCamWidget(), and ~QOpenCamWidget().
- -QVBoxLayout* QOpenCamWidget::layout [private] |
-
- -
Definition at line 40 of file qopencamwidget.h.
- -Referenced by QOpenCamWidget(), and setSnapshotVisible().
- -QPushButton* QOpenCamWidget::trigger [private] |
-
- -
Definition at line 41 of file qopencamwidget.h.
- -Referenced by QOpenCamWidget(), setSnapshotVisible(), startCapture(), and ~QOpenCamWidget().
- -bool QOpenCamWidget::trigger_active [private] |
-
- -
Definition at line 42 of file qopencamwidget.h.
- -Referenced by QOpenCamWidget(), and setSnapshotVisible().
- --
1.5.6
-
-
diff --git a/doc/html/classView-members.html b/doc/html/classView-members.html
deleted file mode 100644
index ad6d22b..0000000
--- a/doc/html/classView-members.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-| saveImage(QImage image) | View | [slot] |
| View(QWidget *parent=0) | View | |
| ~View(void) | View |
1.5.6
-
-
diff --git a/doc/html/classView.html b/doc/html/classView.html
deleted file mode 100644
index cd6ff9e..0000000
--- a/doc/html/classView.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-#include <view.h>
-- -
Public Slots | |
| void | saveImage (QImage image) |
Public Member Functions | |
| View (QWidget *parent=0) | |
| ~View (void) | |
Definition at line 5 of file view.h.
-| View::View | -( | -QWidget * | - parent = 0 |
- ) | -- |
- -
Definition at line 32 of file view.cpp.
- -References QOpenCamWidget::grabCapture(), saveImage(), QOpenCamWidget::setSnapshotVisible(), and QOpenCamWidget::startCapture().
- --
| void View::saveImage | -( | -QImage | -image | -) | - [slot] |
-
-
1.5.6
-
-
diff --git a/doc/html/doxygen.css b/doc/html/doxygen.css
deleted file mode 100644
index 22c4843..0000000
--- a/doc/html/doxygen.css
+++ /dev/null
@@ -1,473 +0,0 @@
-BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
- font-family: Geneva, Arial, Helvetica, sans-serif;
-}
-BODY,TD {
- font-size: 90%;
-}
-H1 {
- text-align: center;
- font-size: 160%;
-}
-H2 {
- font-size: 120%;
-}
-H3 {
- font-size: 100%;
-}
-CAPTION {
- font-weight: bold
-}
-DIV.qindex {
- width: 100%;
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- padding: 2px;
- line-height: 140%;
-}
-DIV.navpath {
- width: 100%;
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- padding: 2px;
- line-height: 140%;
-}
-DIV.navtab {
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- margin-right: 15px;
- padding: 2px;
-}
-TD.navtab {
- font-size: 70%;
-}
-A.qindex {
- text-decoration: none;
- font-weight: bold;
- color: #1A419D;
-}
-A.qindex:visited {
- text-decoration: none;
- font-weight: bold;
- color: #1A419D
-}
-A.qindex:hover {
- text-decoration: none;
- background-color: #ddddff;
-}
-A.qindexHL {
- text-decoration: none;
- font-weight: bold;
- background-color: #6666cc;
- color: #ffffff;
- border: 1px double #9295C2;
-}
-A.qindexHL:hover {
- text-decoration: none;
- background-color: #6666cc;
- color: #ffffff;
-}
-A.qindexHL:visited {
- text-decoration: none;
- background-color: #6666cc;
- color: #ffffff
-}
-A.el {
- text-decoration: none;
- font-weight: bold
-}
-A.elRef {
- font-weight: bold
-}
-A.code:link {
- text-decoration: none;
- font-weight: normal;
- color: #0000FF
-}
-A.code:visited {
- text-decoration: none;
- font-weight: normal;
- color: #0000FF
-}
-A.codeRef:link {
- font-weight: normal;
- color: #0000FF
-}
-A.codeRef:visited {
- font-weight: normal;
- color: #0000FF
-}
-A:hover {
- text-decoration: none;
- background-color: #f2f2ff
-}
-DL.el {
- margin-left: -1cm
-}
-.fragment {
- font-family: monospace, fixed;
- font-size: 95%;
-}
-PRE.fragment {
- border: 1px solid #CCCCCC;
- background-color: #f5f5f5;
- margin-top: 4px;
- margin-bottom: 4px;
- margin-left: 2px;
- margin-right: 8px;
- padding-left: 6px;
- padding-right: 6px;
- padding-top: 4px;
- padding-bottom: 4px;
-}
-DIV.ah {
- background-color: black;
- font-weight: bold;
- color: #ffffff;
- margin-bottom: 3px;
- margin-top: 3px
-}
-
-DIV.groupHeader {
- margin-left: 16px;
- margin-top: 12px;
- margin-bottom: 6px;
- font-weight: bold;
-}
-DIV.groupText {
- margin-left: 16px;
- font-style: italic;
- font-size: 90%
-}
-BODY {
- background: white;
- color: black;
- margin-right: 20px;
- margin-left: 20px;
-}
-TD.indexkey {
- background-color: #e8eef2;
- font-weight: bold;
- padding-right : 10px;
- padding-top : 2px;
- padding-left : 10px;
- padding-bottom : 2px;
- margin-left : 0px;
- margin-right : 0px;
- margin-top : 2px;
- margin-bottom : 2px;
- border: 1px solid #CCCCCC;
-}
-TD.indexvalue {
- background-color: #e8eef2;
- font-style: italic;
- padding-right : 10px;
- padding-top : 2px;
- padding-left : 10px;
- padding-bottom : 2px;
- margin-left : 0px;
- margin-right : 0px;
- margin-top : 2px;
- margin-bottom : 2px;
- border: 1px solid #CCCCCC;
-}
-TR.memlist {
- background-color: #f0f0f0;
-}
-P.formulaDsp {
- text-align: center;
-}
-IMG.formulaDsp {
-}
-IMG.formulaInl {
- vertical-align: middle;
-}
-SPAN.keyword { color: #008000 }
-SPAN.keywordtype { color: #604020 }
-SPAN.keywordflow { color: #e08000 }
-SPAN.comment { color: #800000 }
-SPAN.preprocessor { color: #806020 }
-SPAN.stringliteral { color: #002080 }
-SPAN.charliteral { color: #008080 }
-SPAN.vhdldigit { color: #ff00ff }
-SPAN.vhdlchar { color: #000000 }
-SPAN.vhdlkeyword { color: #700070 }
-SPAN.vhdllogic { color: #ff0000 }
-
-.mdescLeft {
- padding: 0px 8px 4px 8px;
- font-size: 80%;
- font-style: italic;
- background-color: #FAFAFA;
- border-top: 1px none #E0E0E0;
- border-right: 1px none #E0E0E0;
- border-bottom: 1px none #E0E0E0;
- border-left: 1px none #E0E0E0;
- margin: 0px;
-}
-.mdescRight {
- padding: 0px 8px 4px 8px;
- font-size: 80%;
- font-style: italic;
- background-color: #FAFAFA;
- border-top: 1px none #E0E0E0;
- border-right: 1px none #E0E0E0;
- border-bottom: 1px none #E0E0E0;
- border-left: 1px none #E0E0E0;
- margin: 0px;
-}
-.memItemLeft {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memItemRight {
- padding: 1px 8px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplItemLeft {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: none;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplItemRight {
- padding: 1px 8px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: none;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.memTemplParams {
- padding: 1px 0px 0px 8px;
- margin: 4px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #E0E0E0;
- border-right-color: #E0E0E0;
- border-bottom-color: #E0E0E0;
- border-left-color: #E0E0E0;
- border-top-style: solid;
- border-right-style: none;
- border-bottom-style: none;
- border-left-style: none;
- color: #606060;
- background-color: #FAFAFA;
- font-size: 80%;
-}
-.search {
- color: #003399;
- font-weight: bold;
-}
-FORM.search {
- margin-bottom: 0px;
- margin-top: 0px;
-}
-INPUT.search {
- font-size: 75%;
- color: #000080;
- font-weight: normal;
- background-color: #e8eef2;
-}
-TD.tiny {
- font-size: 75%;
-}
-a {
- color: #1A41A8;
-}
-a:visited {
- color: #2A3798;
-}
-.dirtab {
- padding: 4px;
- border-collapse: collapse;
- border: 1px solid #84b0c7;
-}
-TH.dirtab {
- background: #e8eef2;
- font-weight: bold;
-}
-HR {
- height: 1px;
- border: none;
- border-top: 1px solid black;
-}
-
-/* Style for detailed member documentation */
-.memtemplate {
- font-size: 80%;
- color: #606060;
- font-weight: normal;
- margin-left: 3px;
-}
-.memnav {
- background-color: #e8eef2;
- border: 1px solid #84b0c7;
- text-align: center;
- margin: 2px;
- margin-right: 15px;
- padding: 2px;
-}
-.memitem {
- padding: 4px;
- background-color: #eef3f5;
- border-width: 1px;
- border-style: solid;
- border-color: #dedeee;
- -moz-border-radius: 8px 8px 8px 8px;
-}
-.memname {
- white-space: nowrap;
- font-weight: bold;
-}
-.memdoc{
- padding-left: 10px;
-}
-.memproto {
- background-color: #d5e1e8;
- width: 100%;
- border-width: 1px;
- border-style: solid;
- border-color: #84b0c7;
- font-weight: bold;
- -moz-border-radius: 8px 8px 8px 8px;
-}
-.paramkey {
- text-align: right;
-}
-.paramtype {
- white-space: nowrap;
-}
-.paramname {
- color: #602020;
- font-style: italic;
- white-space: nowrap;
-}
-/* End Styling for detailed member documentation */
-
-/* for the tree view */
-.ftvtree {
- font-family: sans-serif;
- margin:0.5em;
-}
-/* these are for tree view when used as main index */
-.directory {
- font-size: 9pt;
- font-weight: bold;
-}
-.directory h3 {
- margin: 0px;
- margin-top: 1em;
- font-size: 11pt;
-}
-
-/* The following two styles can be used to replace the root node title */
-/* with an image of your choice. Simply uncomment the next two styles, */
-/* specify the name of your image and be sure to set 'height' to the */
-/* proper pixel height of your image. */
-
-/* .directory h3.swap { */
-/* height: 61px; */
-/* background-repeat: no-repeat; */
-/* background-image: url("yourimage.gif"); */
-/* } */
-/* .directory h3.swap span { */
-/* display: none; */
-/* } */
-
-.directory > h3 {
- margin-top: 0;
-}
-.directory p {
- margin: 0px;
- white-space: nowrap;
-}
-.directory div {
- display: none;
- margin: 0px;
-}
-.directory img {
- vertical-align: -30%;
-}
-/* these are for tree view when not used as main index */
-.directory-alt {
- font-size: 100%;
- font-weight: bold;
-}
-.directory-alt h3 {
- margin: 0px;
- margin-top: 1em;
- font-size: 11pt;
-}
-.directory-alt > h3 {
- margin-top: 0;
-}
-.directory-alt p {
- margin: 0px;
- white-space: nowrap;
-}
-.directory-alt div {
- display: none;
- margin: 0px;
-}
-.directory-alt img {
- vertical-align: -30%;
-}
-
diff --git a/doc/html/doxygen.png b/doc/html/doxygen.png
deleted file mode 100644
index f0a274b..0000000
Binary files a/doc/html/doxygen.png and /dev/null differ
diff --git a/doc/html/files.html b/doc/html/files.html
deleted file mode 100644
index 33f0314..0000000
--- a/doc/html/files.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-| main.cpp [code] | |
| qopencamwidget.cpp [code] | |
| qopencamwidget.h [code] | |
| view.cpp [code] | |
| view.h [code] |
1.5.6
-
-
diff --git a/doc/html/ftv2blank.png b/doc/html/ftv2blank.png
deleted file mode 100644
index 493c3c0..0000000
Binary files a/doc/html/ftv2blank.png and /dev/null differ
diff --git a/doc/html/ftv2doc.png b/doc/html/ftv2doc.png
deleted file mode 100644
index f72999f..0000000
Binary files a/doc/html/ftv2doc.png and /dev/null differ
diff --git a/doc/html/ftv2folderclosed.png b/doc/html/ftv2folderclosed.png
deleted file mode 100644
index d6d0634..0000000
Binary files a/doc/html/ftv2folderclosed.png and /dev/null differ
diff --git a/doc/html/ftv2folderopen.png b/doc/html/ftv2folderopen.png
deleted file mode 100644
index bbe2c91..0000000
Binary files a/doc/html/ftv2folderopen.png and /dev/null differ
diff --git a/doc/html/ftv2lastnode.png b/doc/html/ftv2lastnode.png
deleted file mode 100644
index e7b9ba9..0000000
Binary files a/doc/html/ftv2lastnode.png and /dev/null differ
diff --git a/doc/html/ftv2link.png b/doc/html/ftv2link.png
deleted file mode 100644
index 14f3fed..0000000
Binary files a/doc/html/ftv2link.png and /dev/null differ
diff --git a/doc/html/ftv2mlastnode.png b/doc/html/ftv2mlastnode.png
deleted file mode 100644
index 09ceb6a..0000000
Binary files a/doc/html/ftv2mlastnode.png and /dev/null differ
diff --git a/doc/html/ftv2mnode.png b/doc/html/ftv2mnode.png
deleted file mode 100644
index 3254c05..0000000
Binary files a/doc/html/ftv2mnode.png and /dev/null differ
diff --git a/doc/html/ftv2node.png b/doc/html/ftv2node.png
deleted file mode 100644
index c9f06a5..0000000
Binary files a/doc/html/ftv2node.png and /dev/null differ
diff --git a/doc/html/ftv2plastnode.png b/doc/html/ftv2plastnode.png
deleted file mode 100644
index 0b07e00..0000000
Binary files a/doc/html/ftv2plastnode.png and /dev/null differ
diff --git a/doc/html/ftv2pnode.png b/doc/html/ftv2pnode.png
deleted file mode 100644
index 2001b79..0000000
Binary files a/doc/html/ftv2pnode.png and /dev/null differ
diff --git a/doc/html/ftv2vertline.png b/doc/html/ftv2vertline.png
deleted file mode 100644
index b330f3a..0000000
Binary files a/doc/html/ftv2vertline.png and /dev/null differ
diff --git a/doc/html/functions.html b/doc/html/functions.html
deleted file mode 100644
index 12325d4..0000000
--- a/doc/html/functions.html
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/functions_func.html b/doc/html/functions_func.html
deleted file mode 100644
index bb21470..0000000
--- a/doc/html/functions_func.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html
deleted file mode 100644
index 1964345..0000000
--- a/doc/html/functions_vars.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/globals.html b/doc/html/globals.html
deleted file mode 100644
index c8020b5..0000000
--- a/doc/html/globals.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/globals_func.html b/doc/html/globals_func.html
deleted file mode 100644
index 899a60d..0000000
--- a/doc/html/globals_func.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/index.html b/doc/html/index.html
deleted file mode 100644
index 325a8bd..0000000
--- a/doc/html/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
--
1.5.6
-
-
diff --git a/doc/html/main_8cpp-source.html b/doc/html/main_8cpp-source.html
deleted file mode 100644
index dbf4f5f..0000000
--- a/doc/html/main_8cpp-source.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
1.5.6
-
-
diff --git a/doc/html/main_8cpp.html b/doc/html/main_8cpp.html
deleted file mode 100644
index 180ec03..0000000
--- a/doc/html/main_8cpp.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-#include <QtGui/QApplication>#include "view.h"-Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
| int main | -( | -int | -argc, | -|
| - | - | char * | -argv[] | - |
| - | ) | -- |
-
1.5.6
-
-
diff --git a/doc/html/qopencamwidget_8cpp-source.html b/doc/html/qopencamwidget_8cpp-source.html
deleted file mode 100644
index 6086746..0000000
--- a/doc/html/qopencamwidget_8cpp-source.html
+++ /dev/null
@@ -1,217 +0,0 @@
-
-
-
1.5.6
-
-
diff --git a/doc/html/qopencamwidget_8cpp.html b/doc/html/qopencamwidget_8cpp.html
deleted file mode 100644
index 58696cc..0000000
--- a/doc/html/qopencamwidget_8cpp.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-#include "qopencamwidget.h"-Go to the source code of this file.
1.5.6
-
-
diff --git a/doc/html/qopencamwidget_8h-source.html b/doc/html/qopencamwidget_8h-source.html
deleted file mode 100644
index 2380488..0000000
--- a/doc/html/qopencamwidget_8h-source.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
1.5.6
-
-
diff --git a/doc/html/qopencamwidget_8h.html b/doc/html/qopencamwidget_8h.html
deleted file mode 100644
index 07f0115..0000000
--- a/doc/html/qopencamwidget_8h.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-#include <QtGui>#include <opencv/cv.h>#include <opencv/highgui.h>-Go to the source code of this file.
Classes | |
| class | QOpenCamWidget |
1.5.6
-
-
diff --git a/doc/html/tab_b.gif b/doc/html/tab_b.gif
deleted file mode 100644
index 0d62348..0000000
Binary files a/doc/html/tab_b.gif and /dev/null differ
diff --git a/doc/html/tab_l.gif b/doc/html/tab_l.gif
deleted file mode 100644
index 9b1e633..0000000
Binary files a/doc/html/tab_l.gif and /dev/null differ
diff --git a/doc/html/tab_r.gif b/doc/html/tab_r.gif
deleted file mode 100644
index ce9dd9f..0000000
Binary files a/doc/html/tab_r.gif and /dev/null differ
diff --git a/doc/html/tabs.css b/doc/html/tabs.css
deleted file mode 100644
index 95f00a9..0000000
--- a/doc/html/tabs.css
+++ /dev/null
@@ -1,102 +0,0 @@
-/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
-
-DIV.tabs
-{
- float : left;
- width : 100%;
- background : url("tab_b.gif") repeat-x bottom;
- margin-bottom : 4px;
-}
-
-DIV.tabs UL
-{
- margin : 0px;
- padding-left : 10px;
- list-style : none;
-}
-
-DIV.tabs LI, DIV.tabs FORM
-{
- display : inline;
- margin : 0px;
- padding : 0px;
-}
-
-DIV.tabs FORM
-{
- float : right;
-}
-
-DIV.tabs A
-{
- float : left;
- background : url("tab_r.gif") no-repeat right top;
- border-bottom : 1px solid #84B0C7;
- font-size : x-small;
- font-weight : bold;
- text-decoration : none;
-}
-
-DIV.tabs A:hover
-{
- background-position: 100% -150px;
-}
-
-DIV.tabs A:link, DIV.tabs A:visited,
-DIV.tabs A:active, DIV.tabs A:hover
-{
- color: #1A419D;
-}
-
-DIV.tabs SPAN
-{
- float : left;
- display : block;
- background : url("tab_l.gif") no-repeat left top;
- padding : 5px 9px;
- white-space : nowrap;
-}
-
-DIV.tabs INPUT
-{
- float : right;
- display : inline;
- font-size : 1em;
-}
-
-DIV.tabs TD
-{
- font-size : x-small;
- font-weight : bold;
- text-decoration : none;
-}
-
-
-
-/* Commented Backslash Hack hides rule from IE5-Mac \*/
-DIV.tabs SPAN {float : none;}
-/* End IE5-Mac hack */
-
-DIV.tabs A:hover SPAN
-{
- background-position: 0% -150px;
-}
-
-DIV.tabs LI.current A
-{
- background-position: 100% -150px;
- border-width : 0px;
-}
-
-DIV.tabs LI.current SPAN
-{
- background-position: 0% -150px;
- padding-bottom : 6px;
-}
-
-DIV.navpath
-{
- background : none;
- border : none;
- border-bottom : 1px solid #84B0C7;
-}
diff --git a/doc/html/tree.html b/doc/html/tree.html
deleted file mode 100644
index a36c826..0000000
--- a/doc/html/tree.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
-
1.5.6
-
-
diff --git a/doc/html/view_8cpp.html b/doc/html/view_8cpp.html
deleted file mode 100644
index c3958a2..0000000
--- a/doc/html/view_8cpp.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-#include "view.h"#include "qopencamwidget.h"-Go to the source code of this file.
1.5.6
-
-
diff --git a/doc/html/view_8h-source.html b/doc/html/view_8h-source.html
deleted file mode 100644
index 2f22f0d..0000000
--- a/doc/html/view_8h-source.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
1.5.6
-
-
diff --git a/doc/html/view_8h.html b/doc/html/view_8h.html
deleted file mode 100644
index 49666b2..0000000
--- a/doc/html/view_8h.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-#include <QtGui>-Go to the source code of this file.
Classes | |
| class | View |
1.5.6
-
-
diff --git a/doc/man/man3/QOpenCamWidget.3 b/doc/man/man3/QOpenCamWidget.3
deleted file mode 100644
index 3758b7e..0000000
--- a/doc/man/man3/QOpenCamWidget.3
+++ /dev/null
@@ -1,286 +0,0 @@
-.TH "QOpenCamWidget" 3 "11 Jun 2009" "QOpenCamWidget" \" -*- nroff -*-
-.ad l
-.nh
-.SH NAME
-QOpenCamWidget \-
-.SH SYNOPSIS
-.br
-.PP
-\fC#include