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
| var gulp = require('gulp'); | |
| var tsc = require('gulp-tsc'); | |
| var tslint = require('gulp-tslint'); | |
| var shell = require('gulp-shell'); | |
| var runseq = require('run-sequence'); | |
| var tsd = require('gulp-tsd'); | |
| var paths = { | |
| tscripts : { src : ['app/src/**/*.ts'], | |
| dest : 'build' } |
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
| #coding: utf-8 | |
| #GaborFilter | |
| import numpy as np | |
| import cv2 | |
| import sys | |
| if __name__ == '__main__': | |
| if len(sys.argv) != 6: | |
| print "python gabor.py InputFileName KernelSize Theta Sigma Lambda" | |
| sys.exit() |
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
| #coding: utf-8 | |
| import cv2 | |
| import cv2.cv as cv | |
| import numpy as np | |
| import sys | |
| from PyQt5.QtCore import * | |
| from PyQt5.QtGui import * | |
| from PyQt5.QtWidgets import * |