Created
May 9, 2019 12:39
-
-
Save ahmedfgad/7a5c4fabe661047f7e06f07afb89e96d to your computer and use it in GitHub Desktop.
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 numpy | |
import PIL.Image | |
def sigmoid(inpt): | |
return 1.0/(1.0+numpy.exp(-1*inpt)) | |
def relu(inpt): | |
result = inpt | |
result[inpt<0] = 0 | |
return result | |
def predict_output(weights_mat_path, data_inputs, activation="relu"): | |
weights_mat = numpy.load(weights_mat_path) | |
r1 = data_inputs | |
for curr_weights in weights_mat: | |
r1 = numpy.matmul(a=r1, b=curr_weights) | |
if activation == "relu": | |
r1 = relu(r1) | |
elif activation == "sigmoid": | |
r1 = sigmoid(r1) | |
r1 = r1[0, :] | |
predicted_label = numpy.where(r1 == numpy.max(r1))[0][0] | |
return predicted_label | |
def extract_features(img_path): | |
im = PIL.Image.open(img_path).convert("HSV") | |
fruit_data_hsv = numpy.asarray(im, dtype=numpy.uint8) | |
indices = numpy.load(file="indices.npy") | |
hist = numpy.histogram(a=fruit_data_hsv[:, :, 0], bins=360) | |
im_features = hist[0][indices] | |
img_features = numpy.zeros(shape=(1, im_features.size)) | |
img_features[0, :] = im_features[:im_features.size] | |
return img_features |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment