-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescription.py
27 lines (22 loc) · 1.13 KB
/
description.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
description = '''With this tool one can create classes (labels) for images (manually)
from database and then transform that images to vectors of features space
(using HoG - histogram of oriented gradients method).
This space will be divided at created class (using knn classifier).
In the end one can use this features space for classify some particular image.
'''
descCreateClasses = '''create classes for each image in database
for ex: {men, women}, {old, young}, {phlegmatic, choleric},
{extrovert, introvert} and so on.'''
descClassifyImages = '''choice class for each image in database by hand
(use classes, created at previous step)'''
descLoadImages = '''load images from database for preparing
(time and memory expensive)'''
descPrepImgs = '''prepare loaded images using HoG
(transform to features space)
(time expensive)'''
descSavePrepImgs = '''save features space to database'''
descLoadSpace = '''load features space from database'''
descTrain = '''train knn use loaded space or space after preparing '''
descNearest = '''find nearest class for you image in features space
see result in command shell
(wait for a minute when loaded)'''