edge detection

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

edge detection

Ibai
Dear all,

 

I’m working on a computer vision project using imageJ and I looking for a
free OCR library.

I haven’t found anything in the internet yet so I will appreciate any reply.


 

Thank you very much, Ibai.

 

___________________________________________________

Ibai Iturricha Martinez

Grupo PAS (Procesado Avanzado de Señal)

Facultad de Ingenieria –ESIDE

Universidad de Deusto Avda. de las Universidades, 24

48007 Bilbao (Bizkaia)

Tel.: 94-4139000 - Ext.: 2692

Fax: +34 944 13 91 01

e-mail(a):  <mailto:[hidden email]>
[hidden email]

 <http://www.pas.deusto.es/> http://www.pas.deusto.es/

 
Reply | Threaded
Open this post in threaded view
|

Re: edge detection

Sami Badawi-2
Hi Ibai,

ShapeLogic is a plugin for declarative / rule based programming under
ImageJ.  As a proof of concept it has a rudimentary OCR example,
showing that you can define letters with simple rules.  It will read
the letters in the sequence of a scan line so they will not come in
the right order.  ShapeLogic might serve as a good starting point if
you are looking to program your own OCR system.  ShapeLogic is under
the very unconstrained MIT license.

Here is the set of rules that is defining the letter C:

rule("C", HOLE_COUNT, "==", 0., letterFilter);
rule("C", T_JUNCTION_POINT_COUNT, "==",0., letterFilter);
rule("C", END_POINT_BOTTOM_POINT_COUNT, "==", 1., letterFilter);
rule("C", MULTI_LINE_COUNT, "==", 1., letterFilter);
rule("C", VERTICAL_LINE_COUNT, "==", 0., letterFilter);
rule("C", END_POINT_COUNT, "==", 2., letterFilter);
rule("C", INFLECTION_POINT_COUNT, "==", 0., letterFilter);
rule("C", CURVE_ARCH_COUNT, ">",1., letterFilter);
rule("C", HARD_CORNER_COUNT, "==", 0., letterFilter);
rule("C", SOFT_POINT_COUNT, ">", 0., letterFilter);

-Sami Badawi
http://www.shapelogic.org

On Mon, Sep 22, 2008 at 5:36 AM, Ibai <[hidden email]> wrote:

> Dear all,
>
>
>
> I'm working on a computer vision project using imageJ and I looking for a
> free OCR library.
>
> I haven't found anything in the internet yet so I will appreciate any reply.
>
>
>
>
> Thank you very much, Ibai.
>
>
>
> ___________________________________________________
>
> Ibai Iturricha Martinez
>
> Grupo PAS (Procesado Avanzado de Señal)
>
> Facultad de Ingenieria –ESIDE
>
> Universidad de Deusto Avda. de las Universidades, 24
>
> 48007 Bilbao (Bizkaia)
>
> Tel.: 94-4139000 - Ext.: 2692
>
> Fax: +34 944 13 91 01
>
> e-mail(a):  <mailto:[hidden email]>
> [hidden email]
>
>  <http://www.pas.deusto.es/> http://www.pas.deusto.es/
>
>
>