summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-25 19:04:39 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-25 19:04:39 +0200
commit10886e6e103f11690ba64fa902c505eda6fae479 (patch)
treedbcbddef0ec0f2e46d3298bced245918b02c440f
parentd3efa7ea08cfdecd48f219ba9cb3b989c6f40325 (diff)
process sequences
-rw-r--r--run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 7e0fa46..cd19277 100644
--- a/run.py
+++ b/run.py
@@ -131,7 +131,7 @@ def dilate_frames(moduleNetwork, tensorOutput, frames, dilate):
firstFrame = nextFrame
nextFrame = frames[i]
new_frames += [firstFrame]
- new_frames += process_tree(module, firstFrame, nextFrame, tensorOutput, dilate, 1)
+ new_frames += process_tree(moduleNetwork, firstFrame, nextFrame, tensorOutput, dilate, 1)
new_frames += nextFrame
return new_frames