Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 401 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 401 Bytes

Calculate Sobel with CUDA

  • number of thread per block: 256
  • dims of grid: (width/ 256 + 1, height)
  • every thread is responsible for calculating a pixel
Before After
Before After