blob: 692f22d47f537f2bed6660caaafb0087fd6d2e60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import argparse
import os
from ..net import Mode
from .flownet_c import FlowNetC
FLAGS = None
def main():
# Create a new network
net = FlowNetC(mode=Mode.TEST)
# Train on the data
net.test(
checkpoint='./checkpoints/FlowNetC/flownet-C.ckpt-0',
input_a_path=FLAGS.input_a,
input_b_path=FLAGS.input_b,
out_path=FLAGS.out,
)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument(
'--input_a',
type=str,
required=True,
help='Path to first image'
)
parser.add_argument(
'--input_b',
type=str,
required=True,
help='Path to second image'
)
parser.add_argument(
'--out',
type=str,
required=True,
help='Path to output flow result'
)
FLAGS = parser.parse_args()
# Verify arguments are valid
if not os.path.exists(FLAGS.input_a):
raise ValueError('image_a path must exist')
if not os.path.exists(FLAGS.input_b):
raise ValueError('image_b path must exist')
if not os.path.isdir(FLAGS.out):
raise ValueError('out directory must exist')
main()
|