Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Segmentation #8

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6730682
Changed all filenames. Erased files edge.h and figure.h
gikraychik Mar 3, 2013
c379ce1
Initial commit of newfigure.cpp
gikraychik Mar 5, 2013
479010f
newfigure.cpp compiles, component.cpp and component.h were changed
gikraychik Mar 5, 2013
b85d03c
newfigure.cpp is split into different files
gikraychik Mar 6, 2013
582dc8d
eItems.h is split in many files: each file for each class
gikraychik Mar 10, 2013
efb290b
Testing started. Changed main.cpp + some other files
gikraychik Mar 16, 2013
be44353
Changed graph.cpp: cSegmentation overwritten; class Graph is tested
gikraychik Mar 17, 2013
19450d9
Changed component.cpp + component.h; added some methods to Segmentato…
gikraychik Mar 17, 2013
06efdd0
Starting solving getOuterShell
gikraychik Apr 9, 2013
4823fb9
New version of getOuterShell (developing). Some files are safe at ano…
gikraychik Apr 21, 2013
ce214d4
Changed DiagramRecognizer.pro file
Apr 22, 2013
b772de7
Added to static functions to Field; not tested
Apr 22, 2013
a0a90bd
pointInContur tested
Apr 23, 2013
1f91ab8
Testing graph
Apr 23, 2013
0b85677
Graph.cpp is tested and works now
Apr 25, 2013
ade7f15
New idea in getOuterShell: no cycles
Apr 25, 2013
ab5b210
getOuterShell is written and tested
Apr 26, 2013
1dd33bb
getOuterShell is done. Works
Apr 27, 2013
2dda89a
In getOuterShell bugs fixed
gikraychik Apr 27, 2013
726660d
Some changes made. Continue writing main method
gikraychik Apr 27, 2013
9feaad9
Before testing makeESegmentation
gikraychik Apr 27, 2013
60fe9f7
Writing getInnerShell
gikraychik Apr 28, 2013
98e162f
Added some methods to graph. Written getInnerShell and made some tests
gikraychik Apr 28, 2013
2ddf8f2
getInnerShell written and tested.
gikraychik Apr 28, 2013
d786319
Written and tested segmentateSection; in graph.h added constructor wi…
gikraychik Apr 28, 2013
186f2f0
Changed some things in eFigure, eLink, etc. makeESegmentation is not …
gikraychik Apr 28, 2013
fa1e6b6
Added destructors. getType written but seems not to be working
gikraychik Apr 30, 2013
642b7af
Written int Recognizer::getType(). Tested
gikraychik May 1, 2013
86d5edd
Fixed bug in getOuterShell
gikraychik May 1, 2013
ce26b73
main method works on some tests
gikraychik May 1, 2013
8e16e98
Full structure of the program is finished. Continue testing main method
gikraychik May 1, 2013
5649c5d
Everything works! This is version v1.0. Possible memory leak. Some th…
gikraychik Jun 1, 2013
ee243ab
A commit before finishing project up
gikraychik Jun 2, 2013
f000602
Field constructed into the main project
gikraychik Jun 2, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added DiagramRecognizer/DiagramRecognizer
Binary file not shown.
30 changes: 24 additions & 6 deletions DiagramRecognizer/DiagramRecognizer.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ SOURCES += main.cpp\
simpleFormsInitializer.cpp \
recognizers/mixedGesturesManager.cpp \
recognizers/nearestPosGridGesturesManager.cpp \
recognizers/rectangleGesturesManager.cpp
recognizers/rectangleGesturesManager.cpp \
newfigure.cpp \
segmentator.cpp \
connectedComponent.cpp \
graph.cpp \
field.cpp \
eFigure.cpp \
eLink.cpp \
section.cpp \
figure.cpp \
link.cpp

HEADERS += \
geometricForms.h \
Expand All @@ -28,17 +38,25 @@ HEADERS += \
recognizers/curveKeyBuilder.h \
output.h \
component.h \
figure.h \
edge.h \
diagramRecognizer.h \
formSegmentator.h \
simpleFormsInitializer.h \
recognizers/mixedGesturesManager.h \
recognizers/nearestPosGridGesturesmanager.h \
recognizers/rectangleGesturesManager.h
recognizers/nearestPosGridGesturesManager.h \
recognizers/rectangleGesturesManager.h \
segmentator.h \
connectedComponent.h \
graph.h \
field.h \
eLink.h \
eFigure.h \
section.h \
figure.h \
link.h

FORMS +=

OTHER_FILES += \
readme.txt \
Conception.jpg
Conception.jpg \
test1.txt
255 changes: 255 additions & 0 deletions DiagramRecognizer/DiagramRecognizer.pro.user

Large diffs are not rendered by default.

242 changes: 242 additions & 0 deletions DiagramRecognizer/DiagramRecognizer.pro.user.2.6pre1

Large diffs are not rendered by default.

Loading