mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_bm3d: improve threshold scaling with different block_size and depth
This commit is contained in:
parent
eae292919b
commit
6c2f866309
@ -443,7 +443,7 @@ static void basic_block_filtering(BM3DContext *s, const uint8_t *src, int src_li
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
threshold[0] = s->hard_threshold * s->sigma;
|
threshold[0] = s->hard_threshold * s->sigma * M_SQRT2 * block_size * block_size * (1 << (s->depth - 8)) / 255.f;
|
||||||
threshold[1] = threshold[0] * sqrtf(2.f);
|
threshold[1] = threshold[0] * sqrtf(2.f);
|
||||||
threshold[2] = threshold[0] * 2.f;
|
threshold[2] = threshold[0] * 2.f;
|
||||||
threshold[3] = threshold[0] * sqrtf(8.f);
|
threshold[3] = threshold[0] * sqrtf(8.f);
|
||||||
|
Loading…
Reference in New Issue
Block a user