public abstract class MathOperations
extends java.lang.Object
| Constructor and Description |
|---|
MathOperations() |
| Modifier and Type | Method and Description |
|---|---|
static void |
add(ImageDescriptor A,
ImageDescriptor B,
ImageDescriptor C)
Add the image A and B and copy the result in C.
|
static void |
getDistanceMap(ImageDescriptor src,
ImageDescriptor dst)
Compute the distance map of an image.
|
static void |
getImageIntegral(ImageDescriptor src,
ImageDescriptor dst) |
static java.util.List<icy.type.point.Point4D> |
getLocalMaxima(ImageDescriptor src,
double threshold)
Find the local maxima of an image.
|
static void |
multiply(double A,
ImageDescriptor B,
ImageDescriptor C) |
static void |
multiply(ImageDescriptor A,
double B,
ImageDescriptor C) |
static void |
multiply(ImageDescriptor A,
ImageDescriptor B,
ImageDescriptor C) |
static void |
sqrt(ImageDescriptor A,
ImageDescriptor B) |
public static void add(ImageDescriptor A, ImageDescriptor B, ImageDescriptor C) throws java.lang.Exception
java.lang.Exception - A, B and C must have the same size.public static void multiply(ImageDescriptor A, double B, ImageDescriptor C) throws java.lang.Exception
java.lang.Exceptionpublic static void multiply(double A,
ImageDescriptor B,
ImageDescriptor C)
throws java.lang.Exception
java.lang.Exceptionpublic static void multiply(ImageDescriptor A, ImageDescriptor B, ImageDescriptor C) throws java.lang.Exception
java.lang.Exceptionpublic static void sqrt(ImageDescriptor A, ImageDescriptor B) throws java.lang.Exception
java.lang.Exceptionpublic static java.util.List<icy.type.point.Point4D> getLocalMaxima(ImageDescriptor src, double threshold)
src - The input imagethreshold - The minimal value of a maximumpublic static void getDistanceMap(ImageDescriptor src, ImageDescriptor dst) throws java.lang.Exception
src - The input imagedst - The result imagejava.lang.Exception - src and dst must have the same size.public static void getImageIntegral(ImageDescriptor src, ImageDescriptor dst) throws java.lang.Exception
java.lang.Exception