Skip to content

Commit

Permalink
support till image size 1472
Browse files Browse the repository at this point in the history
  • Loading branch information
Anurag Ranjan committed Feb 9, 2017
1 parent ca347df commit fbbb670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spynet.lua
Original file line number Diff line number Diff line change
@@ -218,11 +218,11 @@ local function setup(width, height, opt)
elseif len <= 512 then
computeFlow = computeInitFlowL5
level = 5
elseif len <= 1024 then
elseif len <= 1472 then
computeFlow = computeInitFlowL6
level = 6
else
error("Only image size <= 1024 supported. Next release will have full support.")
error("Only image size <= 1472 supported. Next release will have full support.")
end

if opt=="sintelFinal" then

0 comments on commit fbbb670

Please sign in to comment.