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

后端 未结 5 2056
遥遥无期
遥遥无期 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:12

    Fast Median Search - An ANSI C implementation (PDF) is something for C, it's a paper with the title "Fast median search: an ANSI C implementation". The author claims it's O(log(n)), he also provides some code, maybe it'll help you. It's not better than your suggested code, but maybe a look worth.

提交回复
热议问题