Skip to content

Commit 5f65b44

Browse files
gselzerctrueden
authored andcommitted
Reference Op using "an Op"
This removes "an op" and "{@link Op}" from the codebase
1 parent 8c8afb0 commit 5f65b44

98 files changed

Lines changed: 108 additions & 108 deletions

File tree

Some content is hidden

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

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/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;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private void setBigInteger(T out, BigInteger bi) {
118118
}
119119

120120
public static <T extends RealType<T>> T minValue(T type) {
121-
// TODO: Consider making minValue an op.
121+
// TODO: Consider making minValue an Op.
122122
final T min = type.createVariable();
123123
if (type instanceof UnboundedIntegerType)
124124
min.setReal(0);
@@ -129,7 +129,7 @@ public static <T extends RealType<T>> T minValue(T type) {
129129
}
130130

131131
public static <T extends RealType<T>> T maxValue(T type) {
132-
// TODO: Consider making maxValue an op.
132+
// TODO: Consider making maxValue an Op.
133133
final T max = type.createVariable();
134134
if (max instanceof Unsigned128BitType) {
135135
final Unsigned128BitType t = (Unsigned128BitType) max;

0 commit comments

Comments
 (0)