Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YeaZ-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
chadhat
YeaZ-GUI
Commits
38d96ec4
Unverified
Commit
38d96ec4
authored
4 years ago
by
lpbsscientist
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added tracker checkbox
parent
cb0898e4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
unet/LaunchBatchPrediction.py
+11
-2
11 additions, 2 deletions
unet/LaunchBatchPrediction.py
with
11 additions
and
2 deletions
unet/LaunchBatchPrediction.py
+
11
−
2
View file @
38d96ec4
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
Created on Tue Nov 19 17:38:58 2019
Created on Tue Nov 19 17:38:58 2019
"""
"""
from
PyQt5.QtWidgets
import
QApplication
,
QMainWindow
,
QMenu
,
QVBoxLayout
,
QSizePolicy
,
QMessageBox
,
QWidget
,
QPushButton
,
QShortcut
,
QComboBox
,
QDialog
,
QDialogButtonBox
,
QInputDialog
,
QLineEdit
,
QFormLayout
,
QLabel
,
QListWidget
,
QAbstractItemView
from
PyQt5.QtWidgets
import
QApplication
,
QMainWindow
,
QMenu
,
QVBoxLayout
,
QSizePolicy
,
QMessageBox
,
QWidget
,
QPushButton
,
QShortcut
,
QComboBox
,
QDialog
,
QDialogButtonBox
,
QInputDialog
,
QLineEdit
,
QFormLayout
,
QLabel
,
QListWidget
,
QAbstractItemView
,
QCheckBox
from
PyQt5
import
QtGui
from
PyQt5
import
QtGui
#from PyQt5.QtGui import QIcon, QKeySequence
#from PyQt5.QtGui import QIcon, QKeySequence
from
PyQt5.QtCore
import
pyqtSignal
,
QObject
,
Qt
from
PyQt5.QtCore
import
pyqtSignal
,
QObject
,
Qt
...
@@ -43,9 +43,16 @@ class CustomDialog(QDialog):
...
@@ -43,9 +43,16 @@ class CustomDialog(QDialog):
self
.
entry_threshold
=
QLineEdit
()
self
.
entry_threshold
=
QLineEdit
()
self
.
entry_threshold
.
setValidator
(
QtGui
.
QDoubleValidator
())
self
.
entry_threshold
.
setValidator
(
QtGui
.
QDoubleValidator
())
self
.
entry_threshold
.
setText
(
'
0.5
'
)
self
.
entry_segmentation
=
QLineEdit
()
self
.
entry_segmentation
=
QLineEdit
()
self
.
entry_segmentation
.
setValidator
(
QtGui
.
QIntValidator
())
self
.
entry_segmentation
.
setValidator
(
QtGui
.
QIntValidator
())
self
.
entry_segmentation
.
setText
(
'
10
'
)
self
.
tracking_checkbox
=
QCheckBox
()
flo
=
QFormLayout
()
flo
=
QFormLayout
()
...
@@ -54,11 +61,13 @@ class CustomDialog(QDialog):
...
@@ -54,11 +61,13 @@ class CustomDialog(QDialog):
flo
.
addRow
(
'
Upper Boundary for time axis
'
,
self
.
entry2
)
flo
.
addRow
(
'
Upper Boundary for time axis
'
,
self
.
entry2
)
flo
.
addRow
(
'
Select Field
s
of fiew from the list
'
,
self
.
listfov
)
flo
.
addRow
(
'
Select Field
(s)
of fiew from the list
'
,
self
.
listfov
)
flo
.
addRow
(
'
Enter a threshold value
'
,
self
.
entry_threshold
)
flo
.
addRow
(
'
Enter a threshold value
'
,
self
.
entry_threshold
)
flo
.
addRow
(
'
Enter a segmentation value
'
,
self
.
entry_segmentation
)
flo
.
addRow
(
'
Enter a segmentation value
'
,
self
.
entry_segmentation
)
flo
.
addRow
(
'
Apply Cell Tracker
'
,
self
.
tracking_checkbox
)
QBtn
=
QDialogButtonBox
.
Ok
|
QDialogButtonBox
.
Cancel
QBtn
=
QDialogButtonBox
.
Ok
|
QDialogButtonBox
.
Cancel
self
.
buttonBox
=
QDialogButtonBox
(
QBtn
)
self
.
buttonBox
=
QDialogButtonBox
(
QBtn
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment