Stroke Width Transform (SWT) implementation (Java, C#...) [closed]
Asked Answered
C

2

16

I recently discovered the stroke width transform, as documented in the following research paper:

The algorithm is intended for detecting and extracting text from natural scenes.

However, I could not find any implementation, and from the paper I find it hard to determine all the details regarding the algorithm so I can implement it in practice. Does anyone know if this algorithm is implemented and used in practice in a system? Is there a C# or Java implementation of it?

Cutout answered 29/1, 2011 at 13:32 Comment(2)
Matlab implementation using C++ mex file can be found in this answer.Cosmetician
The link to the paper is broken. Can you include a full citation, including the title of the paper and the authors of the paper and where it was published, so we can find it again in the future? Now there is no clear way to identify which paper you are talking about.Blithering
P
27

My friend Andrew and I implemented Stoke Width Transform (SWT) on a mobile phone during a class project at Cornell. Maybe you can get hint from the report.

The report: http://www.cs.cornell.edu/courses/cs4670/2010fa/projects/final/results/group_of_arp86_sk2357/Writeup.pdf

Our code: https://sites.google.com/site/roboticssaurav/strokewidthnokia

Updated code: https://github.com/aperrau/DetectText

Pomeranian answered 8/4, 2011 at 18:44 Comment(3)
Code and other related work are available here : sites.google.com/site/roboticssaurav/strokewidthnokia . Regards, Saurav KumarPomeranian
The intent of this site is to be as content-independent as it can be. Please don't post answers consisting only in a link. And a link to your own blog is almost always considered spam if it is the only thing in the answerLophophore
@above: the report explains the implementation pretty well, including shortfalls in the Epshtein paper. For our own program, where SWT was needed, we used the distance transform to get the stroke thickness.Winifredwinikka
R
7

Here is code that does what you asked for: http://libccv.org/doc/doc-swt/

Other projects that are relevant:

Reseda answered 11/7, 2012 at 6:19 Comment(3)
I think it is crossplatform, you just need to compile it in windows :)Reseda
Nah, tried it. It uses many C99+ features (not yet supported in Visual Studio 2010 SP1), plus includes UNIX only headers.Pouter
@Pouter you can get even more google.com/search?q=text+detection+in+images funkybee.narod.ru sourceforge.net/projects/tirgReseda

© 2022 - 2024 — McMap. All rights reserved.