Skip to content

Commit a00c198

Browse files
authored
Merge pull request #53 from scijava/scijava/scijava-ops-engine/data-provenance-revisions-revisions
Revisions on the Revisions of the Data Provenance branch
2 parents fa2ffef + d2f2aba commit a00c198

File tree

131 files changed

+542
-490
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+542
-490
lines changed

imagej/imagej-ops2/src/main/java/net/imagej/ops2/deconvolve/NonCirculantNormalizationFactor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class NonCirculantNormalizationFactor<I extends RealType<I>, O extends Re
9494
@OpDependency(name = "filter.correlate")
9595
private Computers.Arity7<RandomAccessibleInterval<O>, RandomAccessibleInterval<K>, RandomAccessibleInterval<C>, RandomAccessibleInterval<C>, Boolean, Boolean, ExecutorService, RandomAccessibleInterval<O>> correlater;
9696

97-
// @OpDependency(name = "math.divide") TODO: match an op here?
97+
// @OpDependency(name = "math.divide") TODO: match an Op here?
9898
private BiConsumer<RandomAccessibleInterval<O>, RandomAccessibleInterval<O>> divide = (numerResult, denom) -> {
9999
final O tmp = Util.getTypeFromInterval(numerResult).createVariable();
100100
LoopBuilder.setImages(numerResult, denom).forEachPixel((n, d) -> {

imagej/imagej-ops2/src/main/java/net/imagej/ops2/deconvolve/RichardsonLucyCorrection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class RichardsonLucyCorrection<I extends RealType<I>, O extends RealType<
7373
@OpDependency(name = "copy.rai")
7474
private Function<RandomAccessibleInterval<O>, RandomAccessibleInterval<O>> copy;
7575

76-
// @OpDependency(name = "math.divide") TODO: match an op here?
76+
// @OpDependency(name = "math.divide") TODO: match an Op here?
7777
private BiConsumer<RandomAccessibleInterval<O>, RandomAccessibleInterval<I>> divide = (denomResult, numer) -> {
7878
final O tmp = Util.getTypeFromInterval(denomResult).createVariable();
7979
LoopBuilder.setImages(denomResult, numer).forEachPixel((d, n) -> {

imagej/imagej-ops2/src/main/java/net/imagej/ops2/eval/OpEvaluator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
import org.scijava.types.Nil;
4949

5050
/**
51-
* A Parsington {@link Evaluator} using available {@link Op}s.
51+
* A Parsington {@link Evaluator} using available Ops.
5252
*
5353
* @author Curtis Rueden
5454
*/

imagej/imagej-ops2/src/main/java/net/imagej/ops2/filter/tubeness/DefaultTubeness.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,17 @@
6565
* the large eigenvalue is negative, we return its absolute value and otherwise
6666
* return 0.
6767
* <ul>
68-
* <li>Source image is filtered first by a gaussian with 𝜎 that sets its scale.
69-
* <li>The the Hessian matrix is calculated for each pixel.
68+
* <li>Source image is filtered first by a gaussian with 𝜎 that sets its scale.</li>
69+
* <li>The the Hessian matrix is calculated for each pixel.</li>
7070
* <li>We yield the eigenvalues of the Hessian matrix. The output of the
71-
* tubeness filter is a combination of these eigenvalues:
71+
* tubeness filter is a combination of these eigenvalues:</li>
7272
* <ul>
7373
* <li>in 2D where <code>λ₂</code> is the largest eigenvalue:
7474
* <code>out = 𝜎 × 𝜎 × |λ₂|</code> if <code>λ₂</code> is negative, 0
75-
* otherwise.
75+
* otherwise.</li>
7676
* <li>in 3D where <code>λ₂</code> and <code>λ₃</code> are the largest
7777
* eigenvalues:, <code>out = 𝜎 × 𝜎 × sqrt( λ₂ * λ₃ )</code> if <code>λ₂</code>
78-
* and <code>λ₃</code> are negative, 0 otherwise.
78+
* and <code>λ₃</code> are negative, 0 otherwise.</li>
7979
* </ul>
8080
* </ul>
8181
* This results in enhancing filaments of roughly <code>𝜎 / sqrt(d)</code>

imagej/imagej-ops2/src/main/java/net/imagej/ops2/geom/CentroidII.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import org.scijava.ops.spi.Op;
4040

4141
/**
42-
* This {@link Op} computes the centroid of a {@link IterableRegion} (Label).
42+
* This Op computes the centroid of a {@link IterableRegion} (Label).
4343
*
4444
* @author Tim-Oliver Buchholz (University of Konstanz)
4545
* @implNote op names='geom.centroid', priority='1'

imagej/imagej-ops2/src/main/java/net/imagej/ops2/geom/CentroidLabelRegion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import org.scijava.ops.spi.Op;
4040

4141
/**
42-
* This {@link Op} computes the centroid of a {@link IterableRegion} (Label).
42+
* This Op computes the centroid of a {@link IterableRegion} (Label).
4343
*
4444
* @author Tim-Oliver Buchholz (University of Konstanz)
4545
* @implNote op names='geom.centroid', priority='2'

imagej/imagej-ops2/src/main/java/net/imagej/ops2/geom/DefaultCenterOfGravity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import org.scijava.ops.spi.Op;
4242

4343
/**
44-
* This {@link Op} computes the center of gravity of a {@link IterableRegion}
44+
* This Op computes the center of gravity of a {@link IterableRegion}
4545
* (Label).
4646
*
4747
* @author Daniel Seebacher (University of Konstanz)

imagej/imagej-ops2/src/main/java/net/imagej/ops2/geom/geom3d/DefaultInertiaTensor3D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import org.scijava.ops.spi.OpDependency;
4343

4444
/**
45-
* This {@link Op} computes the 2nd multi variate of a {@link IterableRegion}
45+
* This Op computes the 2nd multi variate of a {@link IterableRegion}
4646
* (Label).
4747
*
4848
* @author Tim-Oliver Buchholz (University of Konstanz)

imagej/imagej-ops2/src/main/java/net/imagej/ops2/geom/geom3d/DefaultInertiaTensor3DMesh.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import org.scijava.ops.spi.OpDependency;
4343

4444
/**
45-
* This {@link Op} computes the 2nd multi variate of a {@link Mesh} (Label).
45+
* This Op computes the 2nd multi variate of a {@link Mesh} (Label).
4646
*
4747
* @author Tim-Oliver Buchholz (University of Konstanz)
4848
*@implNote op names='geom.secondMoment'

imagej/imagej-ops2/src/main/java/net/imagej/ops2/image/invert/InvertIIInteger.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
// }
7979
//
8080
// public static <T extends RealType<T>> T minValue(T type) {
81-
// // TODO: Consider making minValue an op.
81+
// // TODO: Consider making minValue an Op.
8282
// final T min = type.createVariable();
8383
// if (type instanceof UnboundedIntegerType) min.setReal(0);
8484
// else min.setReal(min.getMinValue());
@@ -87,7 +87,7 @@
8787
// }
8888
//
8989
// public static <T extends RealType<T>> T maxValue(T type) {
90-
// // TODO: Consider making maxValue an op.
90+
// // TODO: Consider making maxValue an Op.
9191
// final T max = type.createVariable();
9292
// if (max instanceof Unsigned128BitType) {
9393
// final Unsigned128BitType t = (Unsigned128BitType) max;

0 commit comments

Comments
 (0)