Commit 77aada05 authored by Adam Paquette's avatar Adam Paquette
Browse files

Small update to image_match

parent 72263db8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ def read_yaml(inputfile):
    """
    try:
        with open(inputfile, 'r') as f:
            doc = yaml.load(f)
            ydict = yaml.load(f)

    except:
        raise IOError('Unable to load YAML file.')
+1 −1
Original line number Diff line number Diff line
@@ -59,6 +59,6 @@ def match_images(args, config_dict):
    to_isis(config['match_image']['outputfile_path'] + args.output_file + '.net', cnet, mode='wb', targetname='Moon')

if __name__ == '__main__':
    config = read_config('/home/acpaquette/test.yml')
    config = read_config('/home/acpaquette/image_match_config.yml')
    command_line_args = parse_arguments()
    match_images(command_line_args, config)
 No newline at end of file