|
60 | 60 | */
|
61 | 61 | public class DifferenceOfGaussian
|
62 | 62 | {
|
| 63 | + /** |
| 64 | + * Compute the difference of Gaussian for the input. Input convolved with |
| 65 | + * Gaussian of sigmaSmaller is subtracted from input convolved with Gaussian |
| 66 | + * of sigmaLarger (where {@code sigmaLarger > sigmaSmaller}). |
| 67 | + * <p> |
| 68 | + * Creates an appropriate temporary image and calls |
| 69 | + * {@link #DoG(double[], double[], RandomAccessible, RandomAccessible, RandomAccessibleInterval, ExecutorService)} |
| 70 | + * . |
| 71 | + * </p> |
| 72 | + * This method differs from |
| 73 | + * {@link #DoG(double[], double[], RandomAccessible, RandomAccessibleInterval, ExecutorService)} |
| 74 | + * only in that its parameter order is tailored to an Op. The output comes |
| 75 | + * last, and the primary input (the input image) comes first. |
| 76 | + * |
| 77 | + * @implNote op name="filter.DoG", type=Computer |
| 78 | + * @param input |
| 79 | + * the input image extended to infinity (or at least covering the |
| 80 | + * same interval as the dog result image, plus borders for |
| 81 | + * convolution). |
| 82 | + * @param sigmaSmaller |
| 83 | + * stddev (in every dimension) of smaller Gaussian. |
| 84 | + * @param sigmaLarger |
| 85 | + * stddev (in every dimension) of larger Gaussian. |
| 86 | + * @param service |
| 87 | + * service providing threads for multi-threading |
| 88 | + * @param dog |
| 89 | + * the Difference-of-Gaussian result image. |
| 90 | + */ |
| 91 | + public static < I extends NumericType< I >, T extends NumericType< T > & NativeType< T > > void DoG( |
| 92 | + final RandomAccessible< I > input, |
| 93 | + final double[] sigmaSmaller, |
| 94 | + final double[] sigmaLarger, |
| 95 | + final ExecutorService service, |
| 96 | + final RandomAccessibleInterval< T > dog) |
| 97 | + { |
| 98 | + DoG( sigmaSmaller, sigmaLarger, input, dog, service ); |
| 99 | + } |
| 100 | + |
63 | 101 | /**
|
64 | 102 | * Compute the difference of Gaussian for the input. Input convolved with
|
65 | 103 | * Gaussian of sigmaSmaller is subtracted from input convolved with Gaussian
|
@@ -97,6 +135,44 @@ public static < I extends NumericType< I >, T extends NumericType< T > & NativeT
|
97 | 135 | DoG( sigmaSmaller, sigmaLarger, input, Views.translate( g1, translation ), dog, service );
|
98 | 136 | }
|
99 | 137 |
|
| 138 | + /** |
| 139 | + * Compute the difference of Gaussian for the input. Input convolved with |
| 140 | + * Gaussian of sigmaSmaller is subtracted from input convolved with Gaussian |
| 141 | + * of sigmaLarger (where sigmaLarger > sigmaSmaller). |
| 142 | + * </p> |
| 143 | + * This method differs from |
| 144 | + * {@link #DoG(double[], double[], RandomAccessible, RandomAccessible, RandomAccessibleInterval, ExecutorService)} |
| 145 | + * only in that its parameter order is tailored to an Op. The output comes |
| 146 | + * last, and the primary input (the input image) comes first. |
| 147 | + * |
| 148 | + * @implNote op name="filter.DoG", type=Computer |
| 149 | + * @param input |
| 150 | + * the input image extended to infinity (or at least covering the |
| 151 | + * same interval as the dog result image, plus borders for |
| 152 | + * convolution). |
| 153 | + * @param sigmaSmaller |
| 154 | + * stddev (in every dimension) of smaller Gaussian. |
| 155 | + * @param sigmaLarger |
| 156 | + * stddev (in every dimension) of larger Gaussian. |
| 157 | + * @param tmp |
| 158 | + * temporary image, must at least cover the same interval as the |
| 159 | + * dog result image. |
| 160 | + * @param service |
| 161 | + * how many threads to use for the computation. |
| 162 | + * @param dog |
| 163 | + * the Difference-of-Gaussian result image. |
| 164 | + */ |
| 165 | + public static < I extends NumericType< I >, T extends NumericType< T > & NativeType< T > > void DoG( |
| 166 | + final RandomAccessible< I > input, |
| 167 | + final double[] sigmaSmaller, |
| 168 | + final double[] sigmaLarger, |
| 169 | + final RandomAccessible< T > tmp, |
| 170 | + final ExecutorService service, |
| 171 | + final RandomAccessibleInterval< T > dog) |
| 172 | + { |
| 173 | + DoG(sigmaSmaller, sigmaLarger, input, tmp, dog, service); |
| 174 | + } |
| 175 | + |
100 | 176 | /**
|
101 | 177 | * Compute the difference of Gaussian for the input. Input convolved with
|
102 | 178 | * Gaussian of sigmaSmaller is subtracted from input convolved with Gaussian
|
|
0 commit comments