It is necessary to write a program that can translate hand-drawn bitmap diagrams in vector representation.
- Translation is carried out in the process of drawing, i.e. algorithm not only the coordinates of the raster points are available, but also their time appearance.
- The resulting vector image can then be edited.
- In general, the program is a vector editor schemes with a special mode. In this mode, you can draw the shape with the mouse and click the "recognize" button. At the recruitment site points should appear a vector figure, which can now be edit as vector (resize, add inscription).
- Arrows / lines connecting figures. Simple heuristic formulas may be enough for this.
Azarnikov Ivan
Development of a graphical interface
Ogloblin Ivan
Working with tracing algorithms, writing a classifier. Wrote his own algorithm of recognition with ideas of interpolation angles and point structures
Selivanov Makar
Description of classes of shapes, writing a wrapper for python.
The window consists of a black working area and the main menu, on
which contains 6 buttons: save
, ʻedit, ʻeraser
,
color
, width
, clean
. Save
is for saving
thumbnail to the images directory in png format, ʻedit - to switch between drawing and editing modes. ʻEraser
- eraser, color
for choosing the color of the pen, width
- the width of the pen, clear
-
for complete cleaning of the working area.
- Download library from [official site] (https://www.boost.org/)
- Unzip wherever convenient
- Next, it will launch bootstrap.sh with this command
./ bootstrap.sh --with-libraries = python
- The project-config.jam file will appear, it will need to be changed a little: in the using python line, add the path to the includes (21 lines of the file)
- It is necessary to make a line:
using python: 3.6: "/usr/bin/python3.6": "/usr/include/python3.6";
__Every space is important here __. Instead of 3.6, write your version of the interpreter.
- If there is nothing in / usr / include / python *, then you need to install python3.6-dev
- Then we write
./ b2 install —prefix = "The path where we want to install"
--prefix can be omitted if you want to put it in the default place
Необходимо написать программу, которая умеет переводить нарисованные от руки растровые схемы в векторное представление.
- Перевод осуществляется в процессе рисования, т.е. алгоритму доступны не только координаты точек растра, но и времена их появления.
- Получившееся векторное изображение затем можно редактировать.
- В общем программа представляет из себя векторный редактор схем со специальным режимом. В этом режиме можно нарисовать фигуру мышкой и нажать кнопку “распознать”. На месте набора точек должна появится векторная фигура, которую теперь можно редактировать как векторную (менять размеры, добавлять надпись).
- Так же должны распознаваться стрелки/линии, соединяющие фигуры. Для этого может хватить простых эвристических формул.
Азарников Иван
Разработка графического интерфейса
Оглоблин Иван
Работа с алгоритмами трассировки, написание классификатора
Селиванов Макар
Описание классов фигур, написание обертки для питона.
Окно состоит из черного рабочего поля и главного меню, на
котором расположены 6 кнопок: save
, edit
, eraser
,
color
, width
, clean
. Save
предназначена для сохранения
эскиза в директорию images в формате png, edit
- для переключения
между режимами рисования и редактирования. Eraser
- ластик, color
предназначени для выбора цвета пера, width
- ширины пера, clear
-
для полного очищения рабочего поля.
- Скачать библиотеку с официального сайта
- Разархивировать, куда удобно
- Дальше запустит bootstrap.sh с такой командой
./bootstrap.sh --with-libraries=python
- Появиться файл project-config.jam, его надо будет чуть-чуть изменить: в строчке using python надо дописать путь до инклюдов (21 строчка файла)
- Надо сделать строчку:
using python : 3.6 : "/usr/bin/python3.6" : "/usr/include/python3.6" ;
Здесь важен каждый пробел. Вместо 3.6 пишите свою версию интерпретатора.
- Если в /usr/include/python* ничего нет, то нужно установить python3.6-dev
- Дальше пишем
./b2 install —prefix="Путь, куда хотим поставить"
--prefix можно не писать, если хотите поставить в место по умолчанию