Skip to content

Instantly share code, notes, and snippets.

View danmusetoiu's full-sized avatar
🎹
I may be slow to respond.

danmusetoiu

🎹
I may be slow to respond.
View GitHub Profile
@danmusetoiu
danmusetoiu / alegeri.ipynb
Last active November 15, 2019 12:32
primul tur, just play around
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@danmusetoiu
danmusetoiu / salutare, natiune!
Created June 28, 2019 07:36
salutare natiune
print('Salutare, natiune')
@danmusetoiu
danmusetoiu / Work_tot_in_progress.ipynb
Created October 19, 2018 16:26
Prelucrare imagini pentru dataset
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@danmusetoiu
danmusetoiu / vezi_pixeli
Last active May 27, 2018 10:56
image pixels visualization in python
#import modulele necesare
import matplotlib.pyplot as plt
%matplotlib inline
import numpy as np
from skimage.io import imread
from skimage.transform import resize
#incarc o imagine. Oroginal, este o fotografie color, insa incarcarea o fac in alb-negru (tonuri de gri)
image = imread('/Users/dan/Desktop/codrutza.jpg',as_grey=True)
image = resize(image,(56,56),mode='reflect')
print('Aceasta imagine este de tipul: ',type(image), 'si are dimensiunile:', image.shape)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.