Skip to content

Instantly share code, notes, and snippets.

View Uriegas's full-sized avatar

Eduardo Uriegas Uriegas

  • UPV
  • Cd. Victoria, Tamps.
View GitHub Profile
@Uriegas
Uriegas / HarrisCornerDetection.py
Created April 8, 2022 01:21
Harris Corner detection using OpenCV
import numpy as np
import cv2
import glob
# Kernel parameters
sigma = 1.4
k_size = (3, 3)
# Corners parameters
r = 1
@Uriegas
Uriegas / Traveler_Assistance.sql
Created August 15, 2021 23:18
Final PL/SQL Semester 2 Project: Traveler Assistance
-- Required tables:
SELECT * FROM COUNTRIES;
SELECT * FROM REGIONS;
SELECT * FROM CURRENCIES;
SELECT * FROM SPOKEN_LANGUAGES;
SELECT * FROM LANGUAGES;
--------------PACKAGE 1: TRAVELER ADMIN PACKAGE--------------
CREATE OR REPLACE PACKAGE traveler_assistance_package AS
TYPE country_type IS RECORD(
@Uriegas
Uriegas / GradDesc.py
Created March 11, 2021 02:56
Gradient Descendant Algorithm Multi-variable Python
from sympy import *
x = Symbol('x')
y = Symbol('y')
z = Symbol('z')
f = 4*(x**2) + 30*x + 4*(y**2) - 40*y + 2375
# First partial derivative with respect to x
fpx = f.diff(x)