This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias firealarm=$'git checkout main && git commit -a -m \'[draft] fire alarm\' && git push --force --set-upstream origin main' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' COMPSCI 373 (2021) - University of Auckland | |
| ASSIGNMENT ONE - QR Code Detection | |
| Simon Shan 441147157 | |
| [!] * * * PLEASE NOTE * * * [!] | |
| In this code, sobel and mean kernel operations may look weird. | |
| They are optimised for speed. | |
| For example, instead of [1 0 -1] * [a b c] = [1*a, 0*b, -1*c], | |
| it is simply a - c in my representation | |
| ''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function [medianImage , maxImage] = SixLiner(dirName , fileType) | |
| % SixLiner: does the matlab project in six lines of code | |
| % | |
| % inputs : dirName = directory of the images | |
| % fileType = file extension type of the images | |
| % outputs :medianImage = image background | |
| % maxImage = images combined on background | |
| % | |
| % by simon shan |