You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -136,41 +137,6 @@ public static void FastNlMeansDenoisingMulti(
136
137
GC.KeepAlive(srcImgs);
137
138
}
138
139
139
-
/// <summary>
140
-
/// Modification of fastNlMeansDenoising function for images sequence where consequtive images have been captured
141
-
/// in small period of time. For example video. This version of the function is for grayscale images or for manual manipulation with colorspaces.
142
-
/// </summary>
143
-
/// <param name="srcImgs">Input 8-bit 1-channel, 2-channel or 3-channel images sequence. All images should have the same type and size.</param>
144
-
/// <param name="dst"> Output image with the same size and type as srcImgs images.</param>
145
-
/// <param name="imgToDenoiseIndex">Target image to denoise index in srcImgs sequence</param>
146
-
/// <param name="temporalWindowSize">Number of surrounding images to use for target image denoising.
147
-
/// Should be odd. Images from imgToDenoiseIndex - temporalWindowSize / 2 to imgToDenoiseIndex - temporalWindowSize / 2
148
-
/// from srcImgs will be used to denoise srcImgs[imgToDenoiseIndex] image.</param>
149
-
/// <param name="h">Parameter regulating filter strength for luminance component. Bigger h value perfectly removes noise but also removes image details,
150
-
/// smaller h value preserves details but also preserves some noise</param>
151
-
/// <param name="templateWindowSize">Size in pixels of the template patch that is used to compute weights. Should be odd. Recommended value 7 pixels</param>
152
-
/// <param name="searchWindowSize">Size in pixels of the window that is used to compute weighted average for given pixel.
153
-
/// Should be odd. Affect performance linearly: greater searchWindowsSize - greater denoising time. Recommended value 21 pixels</param>
@@ -207,40 +173,6 @@ public static void FastNlMeansDenoisingColoredMulti(
207
173
GC.KeepAlive(srcImgs);
208
174
}
209
175
210
-
/// <summary>
211
-
/// Modification of fastNlMeansDenoisingMulti function for colored images sequences
212
-
/// </summary>
213
-
/// <param name="srcImgs">Input 8-bit 3-channel images sequence. All images should have the same type and size.</param>
214
-
/// <param name="dst">Output image with the same size and type as srcImgs images.</param>
215
-
/// <param name="imgToDenoiseIndex">Target image to denoise index in srcImgs sequence</param>
216
-
/// <param name="temporalWindowSize">Number of surrounding images to use for target image denoising. Should be odd.
217
-
/// Images from imgToDenoiseIndex - temporalWindowSize / 2 to imgToDenoiseIndex - temporalWindowSize / 2 from srcImgs
218
-
/// will be used to denoise srcImgs[imgToDenoiseIndex] image.</param>
219
-
/// <param name="h">Parameter regulating filter strength for luminance component. Bigger h value perfectly removes noise
220
-
/// but also removes image details, smaller h value preserves details but also preserves some noise.</param>
221
-
/// <param name="hColor"> The same as h but for color components.</param>
222
-
/// <param name="templateWindowSize">Size in pixels of the template patch that is used to compute weights. Should be odd. Recommended value 7 pixels</param>
223
-
/// <param name="searchWindowSize">Size in pixels of the window that is used to compute weighted average for given pixel.
224
-
/// Should be odd. Affect performance linearly: greater searchWindowsSize - greater denoising time. Recommended value 21 pixels</param>
0 commit comments