Segments and rectangle recognition

Discussion about writing code for Inkscape.
qpad
Posts: 3
Joined: Fri Nov 16, 2012 7:55 am

Segments and rectangle recognition

Postby qpad » Fri Nov 16, 2012 8:39 am

Hello everyone,

I have coded a little python extension which aims to regularize hand drawn paths by recognizing basic shapes such as segments and rectangles.
See it in action here :
Image

It is currently far from being polished. Not even yet finished, for example it doesn't replace nicely the paths but just add new objects with fixed styles.
It could also be improved by allowing fit of circle, arcs, or even ellipses.
If there's interest in it I'll continue to share it.

I'm attaching it in a zip files.
It should hopefully work as is if it can find its only dependency : numpy.
Attachments
segmentrec.zip
(10.09 KiB) Downloaded 259 times

qpad
Posts: 3
Joined: Fri Nov 16, 2012 7:55 am

Re: Segments and rectangle recognition

Postby qpad » Mon Nov 19, 2012 1:40 am

Hi !

My positioning of rotated rectangle in the above script is wrong.
It seems I get the correct rotation matrix, but I can't understand how to set 'x' and 'y' attributes.
Their meaning is obvious for non rotated rectangles (it is simply rect_center_x-width/2 and rect_center_y-height/2), but what is it when there is a rotation ?
Is it defined by SVG ?

Thanks for any help !

qpad
Posts: 3
Joined: Fri Nov 16, 2012 7:55 am

Re: Segments and rectangle recognition

Postby qpad » Thu Nov 22, 2012 9:09 pm

Hello,

Continuing my own little thread...

In case someone has a similar problem, I found a solution to my above question : just use the rotate(angle,center_x,center_y) SVG transform.
Inkscape interprets it perfectly.

I attach a revised version of this extension. Less bugs, better details...
Attachments
segmentrec.zip
(10.41 KiB) Downloaded 257 times

User avatar
brynn
Posts: 10309
Joined: Wed Sep 26, 2007 4:34 pm
Location: western USA
Contact:

Re: Segments and rectangle recognition

Postby brynn » Fri Nov 23, 2012 11:18 am

Image
Welcome to InkscapeForum!

And thanks for your work to make Inkscape better. Once you have the extension finished, you could post it in a new topic in Inkscape Resources subforum, if you like. :D


Return to “Programming”