Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BigDataViewer_Fiji_Plugin
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
BioinformaticDataCompression
BigDataViewer_Fiji_Plugin
Commits
882f7be3
Commit
882f7be3
authored
5 years ago
by
Vojtech Moravec
Browse files
Options
Downloads
Patches
Plain Diff
Debug logging.
parent
b3b08b07
Branches
compression_experiment
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+4
-0
4 additions, 0 deletions
.gitignore
src/main/java/bdv/ij/BigDataBrowserPlugIn.java
+2
-1
2 additions, 1 deletion
src/main/java/bdv/ij/BigDataBrowserPlugIn.java
with
6 additions
and
1 deletion
.gitignore
+
4
−
0
View file @
882f7be3
...
...
@@ -9,3 +9,7 @@
.settings
/target
/samples
.idea/
classes/
src/main/resources/META-INF/MANIFEST.MF
bigdataviewer_fiji.iml
This diff is collapsed.
Click to expand it.
src/main/java/bdv/ij/BigDataBrowserPlugIn.java
+
2
−
1
View file @
882f7be3
...
...
@@ -41,7 +41,7 @@ import mpicbg.spim.data.SpimDataException;
* @author HongKee Moon <moon@mpi-cbg.de>
*/
@Plugin
(
type
=
Command
.
class
,
menuPath
=
"Plugins>BigDataViewer>Browse BigDataServer"
)
menuPath
=
"Plugins>BigDataViewer>Browse BigDataServer
(Debug)
"
)
public
class
BigDataBrowserPlugIn
implements
Command
{
private
final
Map
<
String
,
ImageIcon
>
imageMap
=
new
HashMap
<>();
...
...
@@ -158,6 +158,7 @@ public class BigDataBrowserPlugIn implements Command
{
final
String
filename
=
datasetUrlMap
.
get
(
key
);
final
String
title
=
new
File
(
filename
).
getName
();
IJ
.
showMessage
(
"Debug"
,
"Opening connection to 'fileName': "
+
filename
);
BigDataViewer
.
open
(
filename
,
title
,
new
ProgressWriterIJ
(),
ViewerOptions
.
options
()
);
}
catch
(
final
SpimDataException
e
)
...
...
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