working on goto window

This commit is contained in:
lostjared
2018-08-29 15:18:26 -07:00
parent f4fa4a27fc
commit 7686b59460
4 changed files with 25 additions and 5 deletions

View File

@@ -2,9 +2,21 @@
GotoWindow::GotoWindow(QWidget *parent) : QDialog(parent) {
createControls();
}
void GotoWindow::setDisplayWindow(DisplayWindow *win) {
disp_window = win;
}
void GotoWindow::createControls() {
}
void GotoWindow::setVideo(cv::VideoCapture *cap) {
capture = cap;
void GotoWindow::setFrameIndex(const long &i) {
index = i;
}
void GotoWindow::ShowImage() {
}