summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
38a2bf6)
If the central pixel is an outlier, the denoiser is supposed to predict its
value from the surrounding pixels. However, in some cases the confidence
interval test would reject every single surrounding pixel, which leaves the
model fitting with no data to work with.
float q_std_dev = sqrtf(filter_get_pixel_variance(variance_pass + q_offset, pass_stride));
/* If the pixel was flagged as an outlier during prefiltering, skip it.
float q_std_dev = sqrtf(filter_get_pixel_variance(variance_pass + q_offset, pass_stride));
/* If the pixel was flagged as an outlier during prefiltering, skip it.
- * Otherwise, perform the regular confidence interval test. */
- if(ccl_get_feature(buffer + q_offset, 0) < 0.0f ||
- average(fabs(p_color - q_color)) > 2.0f*(p_std_dev + q_std_dev + 1e-3f)) {
+ * Otherwise, perform the regular confidence interval test unless
+ * the center pixel is an outlier (in that case, using the confidence
+ * interval test could result in no pixels being used at all). */
+ bool p_outlier = (ccl_get_feature(buffer + p_offset, 0) < 0.0f);
+ bool q_outlier = (ccl_get_feature(buffer + q_offset, 0) < 0.0f);
+ bool outside_of_interval = (average(fabs(p_color - q_color)) > 2.0f*(p_std_dev + q_std_dev + 1e-3f));
+
+ if(q_outlier || (!p_outlier && outside_of_interval)) {