Detect text on image using tess4j library on linux

Tesseract OCR library is the best way to detect text on image. Let’s start with Java spring boot project. – Step 1: Download template spring boot project on: https://github.com/habogay/spring-boot-gcp – Step 2: Install tesseract otc: sudo apt-get install tesseract-ocr – Step 3: create environment in tool (I use eclipse): TESSDATA_PREFIX=/usr/share/tesseract-ocr/tessdata/ – Step 4: Use Tesseract: String…

Read More

Install, Use and Demo the project for Spring Boot Docker using Google Cloud Build service

* Introduction Docker Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. By taking advantage of Docker’s methodologies for shipping, testing, and…

Read More

[How to] Install resin webserver on centos

Resin is very strong webserver/servlet container  . It really fast and strong ,  it may be keep ~10k  concurrent connection  . This tutorial will help you install Resin as service on Centos 1. Install jdk (best is  jdk7 , skip this step if you already have JDK [5,6,7]) http://download.oracle.com/otn-pub/java/jdk/7u2-b13/jdk-7u2-linux-x64.rpm     wget http://download.oracle.com/otn-pub/java/jdk/7u2-b13/jdk-7u2-linux-x64.rpm     rpm -i…

Read More