Skip to content

Commit

Permalink
publishing the code
Browse files Browse the repository at this point in the history
  • Loading branch information
guoqi1123 committed May 9, 2018
1 parent a569808 commit c8e6ff3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Focal Track
This repository accompanies Guo et al. [1], with the code of the focal track algorithm. For more information of the paper, please go to the project website http://vision.seas.harvard.edu/focaltrack/.

The file focaltrack.py contains the implementation of focaltrack algorithm. For details of end-to-end training, please refer to ./extra.

For questions, please email [email protected].
4 changes: 2 additions & 2 deletions focaltrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ def multithreading_test():
# initialize the pulsecam processor
# cfg_file = "./opt_results/pyConfLensFlowNetFast/"+\
# "1x1t-text34-setup5-py4-w3r-whole.pickle"
cfg_file = "./opt_results/pyConfLensFlowNetFast_ext/"+\
cfg_file = "./extra/params/"+\
"1x1t-text34-py4-setup5-one-sequential-regularize-nothreshold.pickle"
with open(cfg_file,'rb') as f:
cfg_data = pickle.load(f)
Expand All @@ -2457,7 +2457,7 @@ def multithreading_test():
cfg[i]['b0'] = 1e-4
cfg[i]['b1'] = -1.9

cfg_file = "./opt_results/pyConfLensFlowNetFast_iccv5/"+\
cfg_file = "./extra/params/"+\
"final.pickle"
with open(cfg_file,'rb') as f:
cfgf_data = pickle.load(f)
Expand Down

0 comments on commit c8e6ff3

Please sign in to comment.