2929
3030package org .scijava .ops .image .coloc .pValue ;
3131
32- import java .util .List ;
3332import java .util .Random ;
3433import java .util .function .BiFunction ;
3534import java .util .function .Consumer ;
3938import org .scijava .concurrent .Parallelization ;
4039import org .scijava .function .Computers ;
4140import org .scijava .ops .spi .Nullable ;
42- import org .scijava .ops .spi .OpDependency ;
4341
4442import org .scijava .ops .image .coloc .ShuffledView ;
45- import net .imglib2 .Cursor ;
4643import net .imglib2 .Dimensions ;
47- import net .imglib2 .RandomAccess ;
4844import net .imglib2 .RandomAccessibleInterval ;
4945import net .imglib2 .img .Img ;
5046import net .imglib2 .type .numeric .RealType ;
6359 */
6460public class DefaultPValue <T extends RealType <T >, U extends RealType <U >>
6561 implements
66- Computers .Arity6 <RandomAccessibleInterval <T >, RandomAccessibleInterval <U >, BiFunction <RandomAccessibleInterval <T >, RandomAccessibleInterval <U >, Double >, Integer , Dimensions , Long , PValueResult >
62+ Computers .Arity6 <RandomAccessibleInterval <T >, RandomAccessibleInterval <U >, BiFunction <? super RandomAccessibleInterval <T >, ? super RandomAccessibleInterval <U >, Double >, Integer , Dimensions , Long , PValueResult >
6763{
6864
6965 /**
@@ -81,7 +77,7 @@ public class DefaultPValue<T extends RealType<T>, U extends RealType<U>>
8177 public void compute ( //
8278 final RandomAccessibleInterval <T > image1 , //
8379 final RandomAccessibleInterval <U > image2 , //
84- final BiFunction <RandomAccessibleInterval <T >, RandomAccessibleInterval <U >, Double > op , //
80+ final BiFunction <? super RandomAccessibleInterval <T >, ? super RandomAccessibleInterval <U >, Double > op , //
8581 @ Nullable Integer nrRandomizations , //
8682 @ Nullable Dimensions psfSize , //
8783 @ Nullable Long seed , //
0 commit comments