Fast Median Filter in C / C++ for `UINT16` 2D Array

后端 未结 5 1848
遥遥无期
遥遥无期 2020-12-31 23:50

Does anyone know a fast median filter algorithm for 16-bit (unsigned short) arrays in c++?

http://nomis80.org/ctmf.html

This one seems quite promising, but i

5条回答
  •  有刺的猬
    2021-01-01 00:29

    This article describes a method for median filtering of images that runs in O(log r) time per pixel, where r is the filter radius, and works for any data type (be it 8 bit integers or doubles):

    Fast Median and Bilateral Filtering

提交回复
热议问题