Skip to content

Instantly share code, notes, and snippets.

View larien's full-sized avatar
💙
Creating things I'm proud of

Lauren Ferreira larien

💙
Creating things I'm proud of
View GitHub Profile
# !/bin/bash
echo "Insira dois números: "
read a
read b
echo "Escolha a operação:"
echo "1. +"
echo "2. -"
echo "3. *"
@larien
larien / korra-lin.gif
Last active July 11, 2020 19:54
korra-lin.gif
korra-lin.gif
@larien
larien / logo.svg
Created March 5, 2020 16:49
larien logo
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@larien
larien / baby.gif
Last active April 11, 2019 12:45
baby
baby.gif
@larien
larien / it.gif
Last active April 11, 2019 12:44
it
it.gif
@larien
larien / with.gif
Last active April 11, 2019 12:43
with
with.gif
@larien
larien / deal.gif
Last active April 11, 2019 12:42
deal
deal.gif
@larien
larien / gotta.gif
Last active April 11, 2019 12:41
gotta
gotta.gif
@larien
larien / you.gif
Last active April 11, 2019 12:40
you
you.gif
@larien
larien / aula03-01-show-image.py
Created March 7, 2019 23:35
Processamento de Imagens - 07-03 (aula 3)
import cv2
img = cv2.imread("data/lena.jpg")
cv2.imshow('Img',img)
print('Shape: ', img.shape)
print('Size: ' , img.size)
print('Type: ' , img.dtype)