2022-05-25 20:21:27 +02:00
|
|
|
import os
|
2022-06-08 09:56:20 +02:00
|
|
|
import random
|
|
|
|
|
2022-05-25 20:21:27 +02:00
|
|
|
import cv2
|
|
|
|
import matplotlib.pyplot as plt
|
2022-06-08 09:56:20 +02:00
|
|
|
import numpy as np
|
2022-05-25 20:21:27 +02:00
|
|
|
import tensorflow as tf
|
2022-05-30 17:56:30 +02:00
|
|
|
|
2022-05-26 16:05:08 +02:00
|
|
|
mnist = tf.keras.datasets.mnist
|
|
|
|
(x_train, y_train), (x_test, y_test) = mnist.load_data()
|
|
|
|
|
|
|
|
x_train = tf.keras.utils.normalize(x_train, axis=1)
|
|
|
|
x_test = tf.keras.utils.normalize(x_test, axis=1)
|
|
|
|
|
|
|
|
model = tf.keras.models.Sequential()
|
2022-06-08 09:56:20 +02:00
|
|
|
model.add(tf.keras.layers.Flatten(input_shape=(28, 28)))
|
2022-05-26 16:05:08 +02:00
|
|
|
model.add(tf.keras.layers.Dense(128, activation='relu'))
|
|
|
|
model.add(tf.keras.layers.Dense(128, activation='relu'))
|
|
|
|
model.add(tf.keras.layers.Dense(10, activation='softmax'))
|
|
|
|
|
2022-06-08 09:56:20 +02:00
|
|
|
model.compile(optimizer='adam', loss='sparse_categorical_crossentropy', metrics=['accuracy'])
|
2022-05-26 16:05:08 +02:00
|
|
|
|
2022-06-08 09:56:20 +02:00
|
|
|
model.fit(x_train, y_train, epochs=3)
|
2022-05-26 16:05:08 +02:00
|
|
|
model.save('handwritten.model')
|
|
|
|
|
|
|
|
model = tf.keras.models.load_model('handwritten.model')
|
2022-06-08 09:56:20 +02:00
|
|
|
numery_paczek = []
|
|
|
|
|
2022-06-01 23:03:34 +02:00
|
|
|
|
|
|
|
def liczby():
|
2022-06-08 09:56:20 +02:00
|
|
|
digits = []
|
2022-06-01 23:03:34 +02:00
|
|
|
for i in range(0, 3):
|
|
|
|
image_number = random.randint(1, 19)
|
|
|
|
img = cv2.imread(f"digits/digit{image_number}.png")[:, :, 0]
|
|
|
|
img = np.invert(np.array([img]))
|
|
|
|
prediction = model.predict(img)
|
|
|
|
print(f"This digit is probably a {np.argmax(prediction)}")
|
|
|
|
digits.append(np.argmax(prediction))
|
|
|
|
plt.imshow(img[0], cmap=plt.cm.binary)
|
|
|
|
plt.show()
|
|
|
|
liczba = int(str(digits[0]) + str(digits[1]) + str(digits[2]))
|
|
|
|
if liczba in numery_paczek or liczba < 100:
|
|
|
|
liczby()
|
|
|
|
else:
|
|
|
|
numery_paczek.append(liczba)
|
|
|
|
return numery_paczek[-1]
|
|
|
|
|
2022-06-08 09:56:20 +02:00
|
|
|
|
2022-06-01 23:03:34 +02:00
|
|
|
def recognition():
|
2022-05-26 16:05:08 +02:00
|
|
|
try:
|
2022-06-08 09:56:20 +02:00
|
|
|
liczba = liczby()
|
2022-05-26 16:05:08 +02:00
|
|
|
except:
|
|
|
|
print("Error!")
|
2022-06-01 23:03:34 +02:00
|
|
|
ostatnia = liczba % 10
|
2022-05-25 20:21:27 +02:00
|
|
|
loss, accuracy = model.evaluate(x_test, y_test)
|
|
|
|
print(loss)
|
|
|
|
print(accuracy)
|
2022-05-30 17:56:30 +02:00
|
|
|
print(numery_paczek)
|
2022-06-01 17:08:33 +02:00
|
|
|
return ostatnia
|