Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Zellige-core
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Merge requests
!29
Bug fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Bug fix
imagej-handling
into
dev
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
Céline TREBEAU
requested to merge
imagej-handling
into
dev
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
4
Expand
use of Fiji via context
Enable classification slider when no input
removal of dots in parameter file
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
13d3bb0f
1 commit,
2 years ago
4 files
+
16
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/main/java/fr/pasteur/ida/zellige/command/Zellige.java
+
5
−
24
Options
@@ -30,37 +30,18 @@ package fr.pasteur.ida.zellige.command;
import
fr.pasteur.ida.zellige.gui.MainAppFrame
;
import
net.imagej.DatasetService
;
import
net.imagej.ImageJ
;
import
net.imagej.display.ImageDisplayService
;
import
org.scijava.command.Command
;
import
org.scijava.log.LogService
;
import
org.scijava.plugin.Parameter
;
import
org.scijava.command.ContextCommand
;
import
org.scijava.plugin.Plugin
;
import
java.io.File
;
import
java.io.IOException
;
import
java.nio.file.FileSystems
;
@Plugin
(
type
=
Command
.
class
,
menuPath
=
"Plugins>Zellige>"
)
public
class
Zellige
implem
en
t
s
Command
@Plugin
(
type
=
Zellige
.
class
,
menuPath
=
"Plugins>Zellige>"
)
public
class
Zellige
ext
en
d
s
Context
Command
{
@Parameter
private
ImageJ
ij
;
@Parameter
private
LogService
logService
;
@Parameter
private
ImageDisplayService
imageDisplayService
;
@Parameter
private
ImageDisplayService
image
;
@Parameter
DatasetService
datasetService
;
public
static
void
main
(
String
[]
args
)
throws
IOException
{
@@ -94,8 +75,8 @@ public class Zellige implements Command
{
// Launch JavaFX interface
MainAppFrame
app
=
new
MainAppFrame
(
ij
,
image
,
logService
);
app
.
setTitle
(
"Zellige
V
1.0.1"
);
MainAppFrame
app
=
new
MainAppFrame
(
context
()
);
app
.
setTitle
(
"Zellige
v
1.0.1"
);
app
.
init
();
}