Git Product home page Git Product logo

Comments (2)

skotz avatar skotz commented on June 1, 2024

I'm using the term "blob" to include any collection of pixels in the image that are connected to each other, excluding pixels within the bounding rectangle that aren't part of the shape.

So if this was your CAPTCHA:

image

You could crop out the S like this:

image

But it has pieces of other stuff in there. When you extract a "blob" of connected pixels, you get this instead:

image

It removes noise and makes it easier to process. You can output the debug image after coloring the blobs to see each blob in a different color. It helps you see how it's classifying blobs.

image

The pattern size is what the library will resize every character image to so that they're consistent. It's a lot easier to compare an image to a trained template when they're both the exact same size. So even if letters are 50x50 in your image, it's usually wise to pick something smaller for the trained samples for performance and accuracy.

Pixels per blob uses the character size before resizing and counts the number of pixels in the blob itself. This is useful if you have a CAPTCHA with a lot of noise and you just want to remove any small specs.

When some images are inverted and other are not, you can try to detect the background color as in this example.

from cbl-js.

ryan-nauman avatar ryan-nauman commented on June 1, 2024

Thanks that helps. Do you see a simple approach to solving the captchas I posted without using a custom solution/external image preprocessing?

from cbl-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.