Guest User

Untitled

a guest
May 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. double **kernel = gaussian_kernel();
  2.  
  3. for (auto& row : kernel) {
  4. for (auto& col : row)
  5. cout << col <<',';
  6. cout << 'n';
  7. }
Add Comment
Please, Sign In to add comment