Giter Club home page Giter Club logo

Comments (11)

mjurczyk avatar mjurczyk commented on May 22, 2024 3

I have not tried it myself, but https://github.com/oliver-moran/jimp seems to provide what you need.

According to the examples:

image
  .greyscale()
  .contrast(+1)

Although you may also try to detect whether the image is rather dark or rather bright, and invert its colors accordingly.

from tesseract.js.

shamsher-synerzip31 avatar shamsher-synerzip31 commented on May 22, 2024 2

@NikithShetty you can use the following code. It's just POC to understand how JIMP and tesseract works together.

var Tesseract = require('tesseract.js');
var Jimp = require("jimp");


Jimp.read("img.jpg").then(function (image) {
    image.greyscale()
        .contrast(+1)    
        .normalize()
        .write("img-opt.jpg");
})
.then(function() {
  Tesseract.recognize('img-opt.jpg')
    .progress(function(message){console.log(message)})
    .catch(function(err){console.error(err)})
    .then(function(result){console.log(result.text)})
})
.catch(function (err) {
    console.error(err);
});

from tesseract.js.

mjurczyk avatar mjurczyk commented on May 22, 2024 1

Why am I still getting notifications for this :')

@monikacapternal @aditya0salaria - you probably have to desaturate the image and increase the contrast for readability.

from tesseract.js.

mjurczyk avatar mjurczyk commented on May 22, 2024

Have you tried to detect the text after desaturation, adjustment of contrast plus, optional, inversion of colors?

a692cd96-9143-11e6-83de-282cc8416256

It should work just fine with just these small changes.

from tesseract.js.

shamsher31 avatar shamsher31 commented on May 22, 2024

Im writing service in nodejs which will take image as a input and will use tesseract.js to process it and get the text out of it. There will not be any interaction in between. I will appreciate if you point me to some libs that will help me to do what you mentioned.

from tesseract.js.

shamsher31 avatar shamsher31 commented on May 22, 2024

Thanks @mjurczyk that worked for me.

from tesseract.js.

NikithShetty avatar NikithShetty commented on May 22, 2024

@shamsher31 can u share how you implemented color inversion using jimp?

from tesseract.js.

NikithShetty avatar NikithShetty commented on May 22, 2024

Thanks @shamsher-synerzip31

from tesseract.js.

aditya0salaria avatar aditya0salaria commented on May 22, 2024

Hi Guys,

I need help regarding tesseract functionality. I am using below code, Output is coming but not getting clear output. Is there any way, we can get clear output. Below is the code:

Library used below:

<script src='https://cdn.rawgit.com/naptha/tesseract.js/1.0.10/dist/tesseract.js'></script>

function used below:
setTimeout(function(){
var myImage= document.getElementById('ImageId');
Tesseract.recognize(myImage).then(function(result){
$('#Output').val(result.text);
});
},1000);

I have attached few images as an example which i need to convert to text
75985eb8-8299-4139-80dd-ea3826b5d104
.
receipt

from tesseract.js.

monikacapternal avatar monikacapternal commented on May 22, 2024

bank transfer ocbc personal

from tesseract.js.

monikacapternal avatar monikacapternal commented on May 22, 2024

not getting text

from tesseract.js.

Related Issues (20)

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.