Skip to content

Commit

Permalink
Merge pull request #28 from tpietzsch/feature-rai-getType
Browse files Browse the repository at this point in the history
Addition of getType() API
  • Loading branch information
axtimwalde authored Sep 3, 2024
2 parents 0a74d9a + 6582ecc commit 60115f7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>34.1.0</version>
<version>38.0.1</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -97,12 +97,13 @@
<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>

<imglib2.version>6.1.0</imglib2.version>
<imglib2-algorithm.version>0.13.1</imglib2-algorithm.version>
<imglib2-cache.version>1.0.0-beta-17</imglib2-cache.version>
<imglib2-realtransform.version>4.0.1</imglib2-realtransform.version>
<imglib2-roi.version>0.14.0</imglib2-roi.version>
<bigdataviewer-core.version>10.4.6</bigdataviewer-core.version>
<imglib2.version>7.1.0</imglib2.version>
<imglib2-realtransform.version>4.0.3</imglib2-realtransform.version>
<imglib2-roi.version>0.15.0</imglib2-roi.version>
<imglib2-cache.version>1.0.0-beta-18</imglib2-cache.version>
<imglib2-algorithm.version>0.15.3</imglib2-algorithm.version>
<bigdataviewer-core.version>10.6.0</bigdataviewer-core.version>
<bigdataviewer-vistools.version>1.0.0-beta-36</bigdataviewer-vistools.version>
</properties>

<repositories>
Expand Down Expand Up @@ -151,7 +152,7 @@
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>bigdataviewer-vistools</artifactId>
<artifactId>bigdataviewer-core</artifactId>
</dependency>

<dependency>
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/org/janelia/utility/OuterProductView.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ public RandomAccess< V > randomAccess( final Interval interval )
return randomAccess();
}

@Override
public V getType()
{
return v;
}

// implementing Point is inefficient, create custom RA
public class OuterProductAccess extends Point implements RandomAccess< V >
{
Expand Down

0 comments on commit 60115f7

Please sign in to comment.