Example #1
0
def main():
    two_path = 'pgm/two_objects.pgm'
    many_path = 'pgm/many_objects_1.pgm'
    # many_path = 'pgm/many_objects_2.pgm'

    # Load the image in grayscale
    gray_in = cv2.imread(two_path, 0)
    many_in = cv2.imread(many_path, 0)
 
    # Convert a gray-level image to a binary one
    binary_in = p1(gray_in, 120) 
    many_in = p1(many_in, 120)

    # Segment the binary image into several connected regions
    two_labels = p2(binary_in)
    many_labels = p2(many_in)

    # Display the colored the image
    # plt.imshow(two_labels)
    # plt.show()

    # Computes object attributes, and generate the objects database
    [database_two, overlays] = p3(two_labels)

    # Recognize objects from the database
    overlays_out = p4(many_labels, database_two)

    # Display the results
    plt.axis("off")
    plt.imshow(overlays_out)
    plt.show()
Example #2
0
 def test_p4_2_validPassports(self):
     result, validPassPorts = p4('validPassportsForPart2.txt')
     newValidPassPorts = [
         'pid:087499704 hgt:74in ecl:grn iyr:2012 eyr:2030 byr:1980 hcl:#623a2f',
         'eyr:2029 ecl:blu cid:129 byr:1989 iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm',
         'hcl:#888785 hgt:164cm byr:2001 iyr:2015 cid:88 pid:545766238 ecl:hzl eyr:2022',
         'iyr:2010 hgt:158cm hcl:#b6652a ecl:blu byr:1944 eyr:2021 pid:093154719'
     ]
     self.assertEqual(p4_2('validPassportsForPart2.txt', validPassPorts),
                      (4, newValidPassPorts))
Example #3
0
from p4 import *

tests = ( 
    (2, 2, 9009),
    (3, 2, 906609),
)
for a, b, r in tests:
    assert r == p4(a, b), (a, b, r)

for i in xrange(4, 10):
    p4(i)
Example #4
0
 def test_p4_example(self):
     validPassPorts = [
         'ecl:gry pid:860033327 eyr:2020 hcl:#fffffd byr:1937 iyr:2017 cid:147 hgt:183cm',
         'hcl:#ae17e1 iyr:2013 eyr:2024 ecl:brn pid:760753108 byr:1931 hgt:179cm'
     ]
     self.assertEqual(p4('example.txt'), (2, validPassPorts))
Example #5
0
 def test_p4_2_invalidPassports(self):
     result, validPassPorts = p4('invalidPassportsForPart2.txt')
     self.assertEqual(p4_2('invalidPassportsForPart2.txt', validPassPorts),
                      (0, []))