Super efficient median filter for GPU computing
Threads Organization on The Blocks
- T_total = samples * N // T_total: total number of threads
- bdk = nthread/N
- grd = samples/bdk + 1
This median filter is based on the paper link. In the paper, Mr.Placido only implemented the median filter for odd number and this median filter is efficient for both even and odd situation