Skip to content

Commit

Permalink
new feature - new version
Browse files Browse the repository at this point in the history
  • Loading branch information
David Siecinski committed May 23, 2016
1 parent 97f515e commit 429c42c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import diamondSearch

__name__='MotionVectorEstimator'
__version__='1.0.0'
__version__='1.1.0'

def raw_input_with_default(text,default):
input = raw_input(text+'['+default +']'+ chr(8)*4)
Expand Down Expand Up @@ -56,7 +56,7 @@ def psnr(orignal_picture,compressed_picture):
print motion_estimation
elif "diamond" in feed_in.lower() :
ds = diamondSearch.DiamondSearch(current_picture, referenced_picture, n, p)
compressedImage = ds.createCompressedImage()
compressedImage = ds.createCompressedImage()
print motion_estimation
elif "log" in feed_in.lower() :
log = logsearch.LogSearch(current_picture=current_picture,referenced_picture=referenced_picture,n=n,p=p )
Expand Down

0 comments on commit 429c42c

Please sign in to comment.