Created
December 9, 2014 05:44
-
-
Save RDharmaTeja/9c0a1bd759888ef42245 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [X,Y] = main(boxWidth,boxHeight,overLap) | |
global img1; | |
global img2; | |
img1=imread('image1.tif'); | |
img2=imread('image2.tif'); | |
[X,Y]=velocityField(img1,img2,boxWidth,boxHeight,overLap); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment