Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
print('Salutare, natiune') |
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.
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
#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.