Skip to content

Commit

Permalink
fix javadoc <
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Dec 18, 2024
1 parent eeff447 commit 80b305b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/clesperanto/kernels/Tier1.java
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ public static ArrayJ greaterOrEqualConstant(DeviceJ device, ArrayJ input, ArrayJ
* @param small_eigenvalue ({@link ArrayJ}) - Output result image. (default: None)
* @param middle_eigenvalue ({@link ArrayJ}) - Output result image, null if input is 2D. (default: None)
* @param large_eigenvalue ({@link ArrayJ}) - Output result image. (default: None)
* @return ArrayList<{@link ArrayJ}>
* @return ArrayList&amp;lt;{@link ArrayJ}&amp;gt;
* @throws NullPointerException if any of the device or input parameters are null.
*/
public static ArrayList<ArrayJ> hessianEigenvalues(DeviceJ device, ArrayJ input, ArrayJ small_eigenvalue, ArrayJ middle_eigenvalue, ArrayJ large_eigenvalue) {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/net/clesperanto/kernels/Tier3.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Tier3 {
* The positions are returned in an array of 6 values as follows: minX, minY, minZ, maxX, maxY, maxZ.
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - Input binary image
* @return ArrayList<Float>
* @return ArrayList&amp;lt;Float&amp;gt;
* @see <a href="https://clij.github.io/clij2-docs/reference_boundingBox">reference_boundingBox</a>
* @throws NullPointerException if any of the device or input parameters are null.
*/
Expand All @@ -37,7 +37,7 @@ public static ArrayList<Float> boundingBox(DeviceJ device, ArrayJ input) {
* It writes the result in the results table in the columns MassX, MassY and MassZ.
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - Input image
* @return ArrayList<Float>
* @return ArrayList&amp;lt;Float&amp;gt;
* @see <a href="https://clij.github.io/clij2-docs/reference_centerOfMass">reference_centerOfMass</a>
* @throws NullPointerException if any of the device or input parameters are null.
*/
Expand Down Expand Up @@ -265,7 +265,7 @@ public static ArrayJ labelledSpotsToPointlist(DeviceJ device, ArrayJ label, Arra
* Determines the position of the maximum of all pixels in a given image.
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - The image of which the position of the maximum of all pixels will be determined.
* @return ArrayList<Float>
* @return ArrayList&amp;lt;Float&amp;gt;
* @throws NullPointerException if any of the device or input parameters are null.
*/
public static ArrayList<Float> maximumPosition(DeviceJ device, ArrayJ input) {
Expand All @@ -292,7 +292,7 @@ public static float meanOfAllPixels(DeviceJ device, ArrayJ input) {
* Determines the position of the minimum of all pixels in a given image.
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - The image of which the position of the minimum of all pixels will be determined.
* @return ArrayList<Float>
* @return ArrayList&amp;lt;Float&amp;gt;
* @throws NullPointerException if any of the device or input parameters are null.
*/
public static ArrayList<Float> minimumPosition(DeviceJ device, ArrayJ input) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/clesperanto/kernels/Tier4.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Tier4 {
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - Label image
* @param label_id (int) - Identifier of label
* @return ArrayList<Float>
* @return ArrayList&amp;lt;Float&amp;gt;
* @see <a href="https://clij.github.io/clij2-docs/reference_boundingBox">reference_boundingBox</a>
* @throws NullPointerException if any of the device or input parameters are null.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/clesperanto/kernels/Tier7.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Tier7 {
* @param device ({@link DeviceJ}) - Device to perform the operation on.
* @param input ({@link ArrayJ}) - Input image to be transformed.
* @param output ({@link ArrayJ}) - Output image. (default: None)
* @param transform_matrix (ArrayList<Float>) - Affine transformation matrix (3x3 or 4x4). (default: None)
* @param transform_matrix (ArrayList&amp;lt;Float&amp;gt;) - Affine transformation matrix (3x3 or 4x4). (default: None)
* @param interpolate (boolean) - If true, bi/trilinear interpolation will be applied, if hardware allows. (default: False)
* @param resize (boolean) - Automatically determines the size of the output depending on the rotation angles. (default: False)
* @return {@link ArrayJ}
Expand Down

0 comments on commit 80b305b

Please sign in to comment.