Skip to content

Instantly share code, notes, and snippets.

View enriqueornelasjr's full-sized avatar

Enrique Ornelas enriqueornelasjr

View GitHub Profile
# Import the OpenCV Library
import cv2
# Import NumPy, a scientific library that allows for the arrays we will be needing
import numpy as np
# This variable will be the original image
frame = cv2.imread('grid.png')
# Blur the image with a 6x6 average pixel destination
@enriqueornelasjr
enriqueornelasjr / NoteFrequencies.py
Last active November 6, 2018 16:33
Frequencies of notes
C0 = 16.351
Db0 = 17.324
D0 = 18.354
Eb0 = 19.445
E0 = 20.601
F0 = 21.827
Gb0 = 23.124
G0 = 24.499
Ab0 = 25.956
A0 = 27.5
@enriqueornelasjr
enriqueornelasjr / Clean.js
Last active November 7, 2018 19:24
Cleans folder where this file is run by putting files into folders based on their extensions
/*
--------
Clean.js
--------
Gist that cleans folder where this file is run by
putting files into folders based on their extensions
Current folders are ignored
@enriqueornelasjr
enriqueornelasjr / Months.json
Created February 27, 2017 06:14
Month Names (With Abbreviations) in JSON
[
{
"abbreviation": "Jan",
"name": "January"
},
{
"abbreviation": "Feb",
"name": "February"
},
{