-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.py
51 lines (40 loc) · 1.41 KB
/
model.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'''
Camera Classifier v0.1 Alpha
Copyright (c) NeuralNine
Instagram: @neuralnine
YouTube: NeuralNine
Website: www.neuralnine.com
'''
from sklearn.svm import LinearSVC
import numpy as np
import cv2 as cv
import PIL
class Model:
def __init__(self):
self.model = LinearSVC()
def train_model(self, counters):
img_list = np.array([])
class_list = np.array([])
for i in range(1, counters[0]):
img = cv.imread(f'1/frame{i}.jpg')[:, :, 0]
img = img.reshape(16800)
img_list = np.append(img_list, [img])
class_list = np.append(class_list, 1)
for i in range(1, counters[1]):
img = cv.imread(f'2/frame{i}.jpg')[:, :, 0]
img = img.reshape(16800)
img_list = np.append(img_list, [img])
class_list = np.append(class_list, 2)
img_list = img_list.reshape(counters[0] - 1 + counters[1] - 1, 16800)
self.model.fit(img_list, class_list)
print("Model successfully trained!")
def predict(self, frame):
frame = frame[1]
cv.imwrite("frame.jpg", cv.cvtColor(frame, cv.COLOR_RGB2GRAY))
img = PIL.Image.open("frame.jpg")
img.thumbnail((150, 150), PIL.Image.ANTIALIAS)
img.save("frame.jpg")
img = cv.imread('frame.jpg')[:, :, 0]
img = img.reshape(16800)
prediction = self.model.predict([img])
return prediction[0]