Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. board = imread('board.jpg')
  2. board = board(:,:,1);
  3.  
  4. template = imread('seven.jpg')
  5. template = template(:,:,1)
  6.  
  7. C = normxcorr2(template, board);
  8. figure; imshow(C);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement