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
6f541e73
Commit
6f541e73
authored
10 years ago
by
Tobias Pietzsch
Browse files
Options
Downloads
Patches
Plain Diff
remove unused member variable
parent
eadae0ed
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
src/main/java/bdv/viewer/render/AccumulateProjector.java
+0
-8
0 additions, 8 deletions
src/main/java/bdv/viewer/render/AccumulateProjector.java
src/main/java/bdv/viewer/render/AccumulateProjectorARGB.java
+1
-1
1 addition, 1 deletion
src/main/java/bdv/viewer/render/AccumulateProjectorARGB.java
with
1 addition
and
9 deletions
src/main/java/bdv/viewer/render/AccumulateProjector.java
+
0
−
8
View file @
6f541e73
...
...
@@ -10,7 +10,6 @@ import net.imglib2.Cursor;
import
net.imglib2.IterableInterval
;
import
net.imglib2.RandomAccessible
;
import
net.imglib2.RandomAccessibleInterval
;
import
net.imglib2.converter.Converter
;
import
net.imglib2.ui.InterruptibleProjector
;
import
net.imglib2.ui.util.StopWatch
;
import
net.imglib2.view.Views
;
...
...
@@ -21,11 +20,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
protected
final
ArrayList
<
IterableInterval
<
A
>
>
sources
;
/**
* A converter from the source pixel type to the target pixel type.
*/
protected
final
Converter
<
?
super
A
,
B
>
converter
;
/**
* The target interval. Pixels of the target interval should be set by
* {@link InterruptibleProjector#map()}
...
...
@@ -57,7 +51,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
public
AccumulateProjector
(
final
ArrayList
<
VolatileProjector
>
sourceProjectors
,
final
ArrayList
<
?
extends
RandomAccessible
<
A
>
>
sources
,
final
Converter
<
?
super
A
,
B
>
converter
,
final
RandomAccessibleInterval
<
B
>
target
,
final
int
numThreads
,
final
ExecutorService
executorService
)
...
...
@@ -66,7 +59,6 @@ public abstract class AccumulateProjector< A, B > implements VolatileProjector
this
.
sources
=
new
ArrayList
<
IterableInterval
<
A
>
>();
for
(
final
RandomAccessible
<
A
>
source
:
sources
)
this
.
sources
.
add
(
Views
.
flatIterable
(
Views
.
interval
(
source
,
target
)
)
);
this
.
converter
=
converter
;
this
.
target
=
target
;
this
.
iterableTarget
=
Views
.
flatIterable
(
target
);
this
.
numThreads
=
numThreads
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/bdv/viewer/render/AccumulateProjectorARGB.java
+
1
−
1
View file @
6f541e73
...
...
@@ -31,7 +31,7 @@ public class AccumulateProjectorARGB extends AccumulateProjector< ARGBType, ARGB
final
int
numThreads
,
final
ExecutorService
executorService
)
{
super
(
sourceProjectors
,
sources
,
null
,
target
,
numThreads
,
executorService
);
super
(
sourceProjectors
,
sources
,
target
,
numThreads
,
executorService
);
}
@Override
...
...
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