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?

2
  • Matlab implementation using C++ mex file can be found in this answer. Commented Nov 14, 2013 at 7:08
  • 2
    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. Commented Dec 9, 2013 at 0:38

2 Answers 2

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

Sign up to request clarification or add additional context in comments.

3 Comments

Code and other related work are available here : sites.google.com/site/roboticssaurav/strokewidthnokia . Regards, Saurav Kumar
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 answer
@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.
7

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

Other projects that are relevant:

3 Comments

I think it is crossplatform, you just need to compile it in windows :)
Nah, tried it. It uses many C99+ features (not yet supported in Visual Studio 2010 SP1), plus includes UNIX only headers.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.