lernerb / SoftwareDev

A repo for the cs4500 class here at Northeastern University
1 stars 0 forks source link

SPIMS

Semester Project Image Matching Software

CS4500 Software Development - Professor William Clinger

Course Website: http://www.ccs.neu.edu/course/cs4500wc/

Authors - Emails
Compiling

No additional compiling is required in order to run the sofware (python).

Installing

Add ./ to your path in order to run ./spims.

Running

The software can be invoked using the following formats as specified in the assignment:

Single pattern to single source image matching
./spims -p <file1> -s <file2>
Multiple pattern to single source image matching
./spims -pdir <dir1> -s <file2>
./spims --pdir <dir1> -s <file2>
Single pattern to multiple source image matching
./spims -p <file1> -sdir <dir2>
./spims -p <file1> --sdir <dir2>
Multiple pattern to multiple source image matching
./spims -pdir <dir1> -sdir <dir2>
./spims --pdir <dir1> --sdir <dir2>

where:

Additional notes

It was discussed with Prof. Clinger on Feb 12 that additional line returns at the end of the execution of the program do not matter.

Software Credits