Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Zellige-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
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
IdA Public
Zellige-core
Commits
7db3a23d
Commit
7db3a23d
authored
2 years ago
by
Céline TREBEAU
Browse files
Options
Downloads
Patches
Plain Diff
- code cleanup
parent
dc73e7b1
No related branches found
No related tags found
1 merge request
!40
Draft: Resolve "Multi-channel image handling"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/fr/pasteur/ida/zellige/gui/controller/SelectionController.java
+1
-21
1 addition, 21 deletions
...steur/ida/zellige/gui/controller/SelectionController.java
with
1 addition
and
21 deletions
src/main/java/fr/pasteur/ida/zellige/gui/controller/SelectionController.java
+
1
−
21
View file @
7db3a23d
...
@@ -41,24 +41,19 @@ import javafx.geometry.Pos;
...
@@ -41,24 +41,19 @@ import javafx.geometry.Pos;
import
javafx.scene.image.ImageView
;
import
javafx.scene.image.ImageView
;
import
javafx.scene.layout.FlowPane
;
import
javafx.scene.layout.FlowPane
;
import
net.imglib2.img.Img
;
import
net.imglib2.img.Img
;
import
net.imglib2.type.NativeType
;
import
net.imglib2.type.logic.BitType
;
import
net.imglib2.type.logic.BitType
;
import
net.imglib2.type.numeric.RealType
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.LoggerFactory
;
import
java.net.URL
;
import
java.net.URL
;
import
java.util.ResourceBundle
;
import
java.util.ResourceBundle
;
public
class
SelectionController
<
T
extends
RealType
<
T
>
&
NativeType
<
T
>
>
implements
Initializable
public
class
SelectionController
implements
Initializable
{
{
private
final
static
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
SelectionController
.
class
);
private
final
static
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
SelectionController
.
class
);
private
final
SimpleBooleanProperty
changedParameters
=
new
SimpleBooleanProperty
();
private
final
SimpleBooleanProperty
changedParameters
=
new
SimpleBooleanProperty
();
private
final
SimpleBooleanProperty
disableGUI
=
new
SimpleBooleanProperty
();
private
final
SimpleBooleanProperty
disableGUI
=
new
SimpleBooleanProperty
();
private
SelectionModel
selectionModel
;
private
SelectionModel
selectionModel
;
@FXML
@FXML
private
ParameterSliderInteger
amplitude
;
private
ParameterSliderInteger
amplitude
;
@FXML
@FXML
...
@@ -301,21 +296,6 @@ public class SelectionController< T extends RealType< T > & NativeType< T > > im
...
@@ -301,21 +296,6 @@ public class SelectionController< T extends RealType< T > & NativeType< T > > im
return
otsu
;
return
otsu
;
}
}
public
ParameterSliderInteger
getXyBlur
()
{
return
xyBlur
;
}
public
ParameterSliderInteger
getzBlur
()
{
return
zBlur
;
}
public
boolean
isChangedParameters
()
{
return
changedParameters
.
get
();
}
public
SimpleBooleanProperty
changedParametersProperty
()
public
SimpleBooleanProperty
changedParametersProperty
()
{
{
return
changedParameters
;
return
changedParameters
;
...
...
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