Skip to content

demonstrates a tricky way (but still not very optimized) to execute a recursive image filter with CUDA.

Notifications You must be signed in to change notification settings

thanassisKalv/cudaFilter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cudaFilter

demonstrates a tricky way (but still not very optimized) to execute a recursive image filter with CUDA.

In this algorithm result is taken through 1-D consecutive filtering of rows and columns. It is known that we can avoid the non-coalesced memory access by transposing the rows and make each CUDA thread process its row as a column (first part).

It is assumed that bf[], bb[] and B coefficients are prepared in the main()

About

demonstrates a tricky way (but still not very optimized) to execute a recursive image filter with CUDA.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published