123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>Form</class>
- <widget class="QWidget" name="Form">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>513</width>
- <height>406</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_3">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QTabWidget" name="tabWidget">
- <property name="currentIndex">
- <number>1</number>
- </property>
- <widget class="QWidget" name="tab">
- <attribute name="title">
- <string>滤波器设置</string>
- </attribute>
- <layout class="QHBoxLayout" name="horizontalLayout_4">
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <layout class="QFormLayout" name="formLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>滤波器窗口大小X</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QtLineEditor" name="WindowSizeXEdit"/>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>滤波器窗口大小Y</string>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="label_3">
- <property name="text">
- <string>高斯滤波Sigma</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QtLineEditor" name="WindowSizeYEdit"/>
- </item>
- <item row="2" column="1">
- <widget class="QtLineEditor" name="FilterGaussSigma"/>
- </item>
- <item row="3" column="1">
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <item>
- <widget class="QCheckBox" name="checkBoxMeanFilter">
- <property name="text">
- <string>均值</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="checkBoxGaussFilter">
- <property name="text">
- <string>高斯</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="label_4">
- <property name="text">
- <string>滤波器类型选择</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <widget class="QWidget" name="tab_2">
- <attribute name="title">
- <string>Tab 2</string>
- </attribute>
- <widget class="QtLineEditor" name="LightAddEdit">
- <property name="geometry">
- <rect>
- <x>170</x>
- <y>140</y>
- <width>113</width>
- <height>20</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label_5">
- <property name="geometry">
- <rect>
- <x>110</x>
- <y>140</y>
- <width>54</width>
- <height>12</height>
- </rect>
- </property>
- <property name="text">
- <string>色彩加值</string>
- </property>
- </widget>
- <widget class="QPushButton" name="ConfrimButton">
- <property name="geometry">
- <rect>
- <x>400</x>
- <y>330</y>
- <width>75</width>
- <height>23</height>
- </rect>
- </property>
- <property name="text">
- <string>确认</string>
- </property>
- </widget>
- </widget>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <customwidgets>
- <customwidget>
- <class>QtLineEditor</class>
- <extends>QLineEdit</extends>
- <header location="global">QtLineEditor.h</header>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections/>
- </ui>
|