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
d3250a3c
Unverified
Commit
d3250a3c
authored
4 years ago
by
lpbsscientist
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
modified layout of buttons
parent
38d96ec4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
init/InitButtons.py
+10
-1
10 additions, 1 deletion
init/InitButtons.py
init/InitLayout.py
+36
-18
36 additions, 18 deletions
init/InitLayout.py
with
46 additions
and
19 deletions
init/InitButtons.py
+
10
−
1
View file @
d3250a3c
...
@@ -17,8 +17,17 @@ def Init(parent):
...
@@ -17,8 +17,17 @@ def Init(parent):
# connected to the button, this button stays active (or Checked)
# connected to the button, this button stays active (or Checked)
# hide / show cnn buttons
parent
.
button_hide_show
.
setCheckable
(
True
)
parent
.
button_hide_show
.
setMaximumWidth
(
150
)
parent
.
button_hide_show
.
clicked
.
connect
(
parent
.
ShowHideCNNbuttons
)
# parent.button_hide_show.setShortcut("R")
# parent.button_hide_show.setToolTip("Use R Key for shortcut")
parent
.
button_hide_show
.
setStatusTip
(
'
Press to hide and show neural network buttons
'
)
#
ADD REGION
#
ADD REGION
parent
.
button_add_region
.
setCheckable
(
True
)
parent
.
button_add_region
.
setCheckable
(
True
)
parent
.
button_add_region
.
setMaximumWidth
(
150
)
parent
.
button_add_region
.
setMaximumWidth
(
150
)
parent
.
button_add_region
.
clicked
.
connect
(
parent
.
clickmethod
)
parent
.
button_add_region
.
clicked
.
connect
(
parent
.
clickmethod
)
...
...
This diff is collapsed.
Click to expand it.
init/InitLayout.py
+
36
−
18
View file @
d3250a3c
...
@@ -61,10 +61,22 @@ def Init(parent):
...
@@ -61,10 +61,22 @@ def Init(parent):
# makes a horizontal layout for the buttons used to navigate through
# makes a horizontal layout for the buttons used to navigate through
# the time axis.
# the time axis.
hboxtimeframes
=
QtWidgets
.
QHBoxLayout
()
hboxtimeframes
=
QtWidgets
.
QHBoxLayout
()
hboxtimeframes
.
addWidget
(
parent
.
button_fov
)
hboxtimeframes
.
addWidget
(
parent
.
button_channel
)
hboxtimeframes
.
addStretch
()
hboxtimeframes
.
addWidget
(
parent
.
button_previousframe
)
hboxtimeframes
.
addWidget
(
parent
.
button_previousframe
)
hboxtimeframes
.
addWidget
(
parent
.
button_timeindex
)
hboxtimeframes
.
addWidget
(
parent
.
button_timeindex
)
hboxtimeframes
.
addWidget
(
parent
.
button_nextframe
)
hboxtimeframes
.
addWidget
(
parent
.
button_nextframe
)
layout
.
addWidget
(
parent
.
m
)
hboxtimeframes
.
addStretch
()
# add the frames of the pictures in the layout.
hlayout
=
QtWidgets
.
QHBoxLayout
()
hlayout
.
addWidget
(
parent
.
m
)
hlayout
.
setContentsMargins
(
0
,
0
,
0
,
0
)
layout
.
addLayout
(
hlayout
)
layout
.
addLayout
(
hboxtimeframes
)
layout
.
addLayout
(
hboxtimeframes
)
...
@@ -73,42 +85,48 @@ def Init(parent):
...
@@ -73,42 +85,48 @@ def Init(parent):
hboxcorrectionsbuttons
=
QtWidgets
.
QHBoxLayout
()
hboxcorrectionsbuttons
=
QtWidgets
.
QHBoxLayout
()
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_add_region
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_add_region
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_newcell
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_newcell
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_drawmouse
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_drawmouse
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_eraser
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_eraser
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_savemask
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_savemask
)
hboxcorrectionsbuttons
.
addStretch
(
1
)
hboxcorrectionsbuttons
.
addStretch
(
1
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_showval
)
hboxcorrectionsbuttons
.
addWidget
(
parent
.
button_hidemask
)
layout
.
addLayout
(
hboxcorrectionsbuttons
)
layout
.
addLayout
(
hboxcorrectionsbuttons
)
# layout.addStretch(0.7)
# LAYOUT FOR EDITING CELL VALUES, SHOW CELL VALUES AND HIDE MASK, CNN BUTTONS
hboxcellval
=
QtWidgets
.
QHBoxLayout
()
hboxcellval
=
QtWidgets
.
QHBoxLayout
()
hboxcellval
.
addWidget
(
parent
.
button_exval
)
hboxcellval
.
addWidget
(
parent
.
button_exval
)
hboxcellval
.
addWidget
(
parent
.
button_changecellvalue
)
hboxcellval
.
addWidget
(
parent
.
button_changecellvalue
)
hboxcellval
.
addStretch
(
1
)
hboxcellval
.
addStretch
(
1
)
hboxcellval
.
addWidget
(
parent
.
button_cnn
)
hboxcellval
.
addWidget
(
parent
.
button_cellcorespondance
)
hboxcellval
.
addWidget
(
parent
.
button_extractfluorescence
)
layout
.
addLayout
(
hboxcellval
)
layout
.
addLayout
(
hboxcellval
)
hboxlistbuttons
=
QtWidgets
.
QHBoxLayout
()
hboxlistbuttons
.
addWidget
(
parent
.
button_fov
)
hboxlistbuttons
.
addWidget
(
parent
.
button_channel
)
hboxlistbuttons
.
addStretch
(
1
)
layout
.
addLayout
(
hboxlistbuttons
)
layout
.
addWidget
(
parent
.
button_extractfluorescence
)
# #
LAYOUT FOR LAUNCH NN, TRACK CELLS AND EXTRACT FLUORESCENCE
hboxcheckbox
=
QtWidgets
.
QHBoxLayout
()
# hboxcnnbuttons = QtWidgets.QHBoxLayout()
hboxcheckbox
.
addWidget
(
parent
.
button_showval
)
# hboxcnnbuttons.addStretch(1)
hboxcheckbox
.
addWidget
(
parent
.
button_hidemask
)
hboxcheckbox
.
addStretch
(
1
)
layout
.
addLayout
(
hboxcheckbox
)
# layout.addLayout(hboxcnnbuttons)
layout
.
addWidget
(
parent
.
button_cnn
)
layout
.
addLayout
(
hbox_threshold
)
layout
.
addLayout
(
hbox_segment
)
# BUTTONS TO SHOW THE THRESHOLD AND SEGMENTATION ARE HIDDEN HERE!
layout
.
addWidget
(
parent
.
button_cellcorespondance
)
# UNCOMMENT THEM TO MAKE THEM APPEAR ON THE GUI.
# layout.addLayout(hbox_threshold)
# layout.addLayout(hbox_segment)
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