-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_images.sh
34 lines (28 loc) · 1.24 KB
/
run_images.sh
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
#!/bin/bash
javac *.java
alias program='java MediaQuery'
echo "Running Search Image Tests\n" > results.txt
echo "-----------------------\n\n" >> results.txt
echo "Running Starbucks Logo Level 0" >> results.txt
program ../Images/starbucks_source_img.v576.rgb ../Images/starbucks_lev0.v576.rgb
read VALUE
echo "-----------------------\n\n" >> results.txt
echo "Running Starbucks Logo Level 1" >> results.txt
program ../Images/starbucks_source_img.v576.rgb ../Images/starbucks_lev1-1.v576.rgb
read VALUE
echo "-----------------------\n\n" >> results.txt
echo "Running Starbucks Logo Level 2" >> results.txt
program ../Images/starbucks_source_img.v576.rgb ../Images/starbucks_lev2-1.v576.rgb
read VALUE
echo "-----------------------\n\n" >> results.txt
echo "Running Oranges Logo Level 0" >> results.txt
program ../Images/orange_source_img.v576.rgb ../Images/orange_lev0.v576.rgb
read VALUE
echo "-----------------------\n\n" >> results.txt
echo "Running Oranges Logo Level 1" >> results.txt
program ../Images/orange_source_img.v576.rgb ../Images/orange_lev1-1.v576.rgb
read VALUE
echo "-----------------------\n\n" >> results.txt
echo "Running Oranges Logo Level 2" >> results.txt
program ../Images/orange_source_img.v576.rgb ../Images/orange_lev2-1.v576.rgb
read VALUE