Advertisement
hamaXD

Signal&Image1_62 after midterm #3 : detectHarrisFeatures

Oct 10th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.17 KB | None | 0 0
  1. v = VideoReader('blue.mp4');
  2. I1 = read(v,1);
  3. I2 = read(v,10);
  4. I = checkerboard;
  5. corners = detectHarrisFeatures(I);
  6. imshow(I); hold on;
  7. plot(corners.selectStrongest(50));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement