Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BigDataViewer_Core_Extension
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_Core_Extension
Commits
3bb0a98a
Commit
3bb0a98a
authored
10 years ago
by
Tobias Pietzsch
Browse files
Options
Downloads
Patches
Plain Diff
make BigDataViewer constructor public and allow access to some internals
parent
11e3dc53
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/java/bdv/BigDataViewer.java
+11
-1
11 additions, 1 deletion
core/src/main/java/bdv/BigDataViewer.java
with
11 additions
and
1 deletion
core/src/main/java/bdv/BigDataViewer.java
+
11
−
1
View file @
3bb0a98a
...
...
@@ -240,7 +240,7 @@ public class BigDataViewer
else
throw
new
IllegalArgumentException
(
"ImgLoader of type "
+
type
.
getClass
()
+
" not supported."
);
}
p
rotected
BigDataViewer
(
final
String
xmlFilename
,
final
String
windowTitle
,
final
ProgressWriter
progressWriter
)
throws
SpimDataException
p
ublic
BigDataViewer
(
final
String
xmlFilename
,
final
String
windowTitle
,
final
ProgressWriter
progressWriter
)
throws
SpimDataException
{
final
int
width
=
800
;
final
int
height
=
600
;
...
...
@@ -380,6 +380,16 @@ public class BigDataViewer
// ( ( Hdf5ImageLoader ) seq.imgLoader ).initCachedDimensionsFromHdf5( false );
}
public
ViewerPanel
getViewer
()
{
return
viewer
;
}
public
SetupAssignments
getSetupAssignments
()
{
return
setupAssignments
;
}
protected
boolean
tryLoadSettings
(
final
String
xmlFilename
)
{
proposedSettingsFile
=
null
;
...
...
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