Coder Social home page Coder Social logo

chungkwong / mathocr-myscript Goto Github PK

View Code? Open in Web Editor NEW
34.0 5.0 7.0 225 KB

Offline handwritten mathematical expression regnition via stroke extraction and MyScript

Java 99.60% sed 0.09% HTML 0.31%
mathematical-expressions handwriting-recognition optical-character-recognition

mathocr-myscript's Introduction

Offline handwritten mathematical expression recognition via stroke extraction

The repository provides a proof-of-concept stroke extractor that can extract strokes from clean bitmap images. The stroke extractor can be used to recognize offline handwritten mathematical expression if an online recognizer is given. For example, when combined with MyScript, the resulting offline recognition system was ranked #3 in the offline task in CROHME 2019.

Accuracy

Dataset Correct Up to 1 error Up to 2 errors Structural correct
CROHME 2014 58.22% 71.60% 75.15% 77.38%
CROHME 2016 65.65% 77.68% 82.56% 85.00%
CROHME 2019 65.22% 78.48% 83.07% 84.90%

Although good accuracy is achieved on datasets of CROHME, the program may produce poor results on real world images. For example, the procedure does not work well on the following images:

  • Images containing other objects. An image should contain exactly one formula and nothing else. Ordinary text and grid lines are not allowed.
  • Images with low contrast. The strokes may not be distinguished from background properly.
  • Images with low resolution. The stroke extractor may not segment touching symbols correctly.
  • Printed mathematical expressions. Serifs can distract the stroke extractor.

Usage

In order to use the MyScript Cloud recognition engine, you need to create a account and create an application.

Graphical interface

  1. Run the JAR by double clicking or a command like java -jar mathocr-myscript.jar
  2. Choose Image file from the menu Recognize
  3. Choose the image file
  4. Click the button Recognize under stroke preview

API

First add the jar file to classpath. If you are using Maven, add the following to you pom.xml:

<dependency>
	<groupId>com.github.chungkwong</groupId>
	<artifactId>mathocr-myscript</artifactId>
	<version>1.1</version>
</dependency>

Then you can recognize images of mathematical expression by using code like:

String applicationKey="your application key for MyScript";
String hmacKey="hmac key of your Myscript account";
String grammarId="an uploaded grammar of your Myscript account";
int dpi=96;
MyscriptRecognizer myscriptRecognizer=new MyscriptRecognizer(applicationKey,hmacKey,grammarId,dpi);
Extractor extractor=new Extractor(myscriptRecognizer);

File file=new File("Path to file to be recognized");
EncodedExpression expression=extractor.recognize(ImageIO.read(file));
String latexCode=expression.getCodes(new LatexFormat());

Citation

The idea used is explained in the article Stroke extraction for offline handwritten mathematical expression recognition , which is available at arXiv. You can cite the article using the following BibTex code:

@misc{1905.06749,
Author = {Chungkwong Chan},
Title = {Stroke extraction for offline handwritten mathematical expression recognition},
Year = {2019},
Eprint = {arXiv:1905.06749},
}

基于笔划提取的脱机手写数学公式识别

本项目提供一个可从清晰的图片中还原笔划信息的程序原型。与联机手写数学公式识别结合的话, 可以打造出脱机数学公式识别系统。例如与MyScript结合时 在CROHME 2019的脱机任务中位列第3名

准确度

数据集 正确 至多一处错误 至多两处错误 结构正确
CROHME 2014 58.22% 71.60% 75.15% 77.38%
CROHME 2016 65.65% 77.68% 82.56% 85.00%
CROHME 2019 65.22% 78.48% 83.07% 84.90%

虽然在CROHME数据集上取得了良好的表现,本程序对现实世界中的图片表现仍然可能未如理想。 例如对以下类型的图片可能给出差劲的结果:

  • 含有其它对象的图片。图片中只应含有一条公式而没有其它东西,不能有普通文本或网格之类。
  • 低对比度图片。这时笔划难以从背景区分出来。
  • 低清晰度图片。这时粘连在一起的符号难以分割。
  • 印刷体数学公式。衬线会干扰笔划提取。

用法

如果使用MyScript Cloud作为联机手写数学公式识别器,请注册一个帐号并创建一个应用。

图形用户界面

  1. 通过双击或命令如java -jar mathocr-myscript.jar运行JAR文件
  2. 在菜单识别中选择图片文件
  3. 选择图像文件
  4. 点击笔划预览下的识别按钮(首次使用时需要输入你的MyScript Cloud应用标识和密钥)

API

首先把JAR文件加到类路径。如果你使用Maven,把以下依赖加到pom.xmldependencies下即可(其它构建系统类似):

<dependency>
	<groupId>com.github.chungkwong</groupId>
	<artifactId>mathocr-myscript</artifactId>
	<version>1.1</version>
</dependency>

然后你可以使用以下样子的代码识别脱机手写数学公式:

String applicationKey="your application key for MyScript";
String hmacKey="hmac key of your Myscript account";
String grammarId="an uploaded grammar of your Myscript account";
int dpi=96;
MyscriptRecognizer myscriptRecognizer=new MyscriptRecognizer(applicationKey,hmacKey,grammarId,dpi);
Extractor extractor=new Extractor(myscriptRecognizer);

File file=new File("Path to file to be recognized");
EncodedExpression expression=extractor.recognize(ImageIO.read(file));
String latexCode=expression.getCodes(new LatexFormat());

引用

本项目的描述参见文档 通过笔划提取识别脱机手写数学公式,它可从 arXiv下载。你可以使用以下BibTex代码引用该文:

@misc{1905.06749,
Author = {Chungkwong Chan},
Title = {Stroke extraction for offline handwritten mathematical expression recognition},
Year = {2019},
Eprint = {arXiv:1905.06749},
}

mathocr-myscript's People

Contributors

chungkwong avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

mathocr-myscript's Issues

# Ask about how to evaluate this measure

image
I want to ask about "up to 1 error" measure. You compute it by counting number of expressions that have 1 error or by other anyway. You share about it, please. Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.