-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This tool allows to process multiple images in one pipeline. Can be usefull when one needs to process several images of the same type.
- Loading branch information
1 parent
521bafb
commit 8e4d630
Showing
10 changed files
with
363 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "formimagebatch.h" | ||
#include "ui_formimagebatch.h" | ||
|
||
FormImageBatch::FormImageBatch(QWidget *parent) : | ||
QWidget(parent), | ||
ui(new Ui::FormImageBatch) | ||
{ | ||
ui->setupUi(this); | ||
} | ||
|
||
FormImageBatch::~FormImageBatch() | ||
{ | ||
delete ui; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef FORMIMAGEBATCH_H | ||
#define FORMIMAGEBATCH_H | ||
|
||
#include <QWidget> | ||
|
||
namespace Ui { | ||
class FormImageBatch; | ||
} | ||
|
||
class FormImageBatch : public QWidget | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit FormImageBatch(QWidget *parent = 0); | ||
~FormImageBatch(); | ||
|
||
private: | ||
Ui::FormImageBatch *ui; | ||
}; | ||
|
||
#endif // FORMIMAGEBATCH_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>FormImageBatch</class> | ||
<widget class="QWidget" name="FormImageBatch"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>400</width> | ||
<height>300</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Form</string> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout_3"> | ||
<property name="spacing"> | ||
<number>3</number> | ||
</property> | ||
<property name="leftMargin"> | ||
<number>3</number> | ||
</property> | ||
<property name="topMargin"> | ||
<number>3</number> | ||
</property> | ||
<property name="rightMargin"> | ||
<number>3</number> | ||
</property> | ||
<property name="bottomMargin"> | ||
<number>3</number> | ||
</property> | ||
<item> | ||
<layout class="QVBoxLayout" name="verticalLayout_2"> | ||
<property name="sizeConstraint"> | ||
<enum>QLayout::SetMinimumSize</enum> | ||
</property> | ||
<item> | ||
<widget class="QPushButton" name="pushButtonSourcePath"> | ||
<property name="text"> | ||
<string>Source folder</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="pushButtonOutputPath"> | ||
<property name="text"> | ||
<string>Output folder</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QPushButton" name="pushButtonRunBatch"> | ||
<property name="text"> | ||
<string>Run batch</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
<item> | ||
<layout class="QFormLayout" name="formLayout"> | ||
<property name="horizontalSpacing"> | ||
<number>3</number> | ||
</property> | ||
<property name="verticalSpacing"> | ||
<number>3</number> | ||
</property> | ||
<item row="0" column="0"> | ||
<widget class="QLabel" name="label"> | ||
<property name="text"> | ||
<string>Source path</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="1"> | ||
<widget class="QLineEdit" name="lineEditSourcePath"> | ||
<property name="readOnly"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="0"> | ||
<widget class="QLabel" name="label_2"> | ||
<property name="text"> | ||
<string>Output path</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="1"> | ||
<widget class="QLineEdit" name="lineEditOutputPath"> | ||
<property name="readOnly"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
<item> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<property name="spacing"> | ||
<number>3</number> | ||
</property> | ||
<property name="sizeConstraint"> | ||
<enum>QLayout::SetMaximumSize</enum> | ||
</property> | ||
</layout> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.