Skip to content

Commit a1313e0

Browse files
committed
Fix minor issues with ParameterConversion example
1 parent 0314ee6 commit a1313e0

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

docs/ops/doc/ParameterConversion.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,9 @@ Using this ``engine.convert`` Op, SciJava Ops can match our ``filter.convolve``
109109
110110
At runtime, the Op matcher will invoke the following steps:
111111

112-
* The ``Img<DoubleType> input`` is left alone, as it is already of the type expected by the Op.
112+
* The ``Img<DoubleType> in`` is left alone, as it is already of the type expected by the Op.
113113
* The ``double[][] kernel`` is converted to a ``RandomAccessibleInterval<DoubleType> kernel1`` using our ``engine.convert`` Op.
114-
* The Op convolves ``input1`` with ``kernel1``, returning an ``Img<DoubleType> output1``
115-
* The ``Img<DoubleType> input1`` is left alone and returned to the user, as it is already of the type expected by the user.
114+
* The Op convolves ``input`` with ``kernel1``, returning an ``Img<DoubleType> result``.
116115

117116

118117
Adding efficiency
@@ -223,7 +222,7 @@ Finally, consider our ``filter.convolve`` Op example, instead written as a ``Com
223222
* @param input the input data
224223
* @param kernel the kernel
225224
* @param output the result buffer
226-
* @implNote op names="filter.convolve"
225+
* @implNote op names="filter.convolve" type=Computer
227226
*/
228227
public static void convolveNaive(
229228
final RandomAccessibleInterval<DoubleType> input,

0 commit comments

Comments
 (0)