Blame view

cudafunc.cu 174 Bytes
b71cc8bb   Tianshu Cheng   mPb using 3 channels
1
2
3
4
5
6
  #include <stim/cuda/gaussian_blur.cuh>
  
  void blur(float* image, float sigma, unsigned int x, unsigned int y){
  
  	stim::cuda::cpu_gaussian_blur_2d<float>(image, sigma, x, y);
  }