Giter VIP home page Giter VIP logo

Comments (10)

skotz avatar skotz commented on August 26, 2024

So the original CAPTCHA image is just a single letter with no distortion? What problems are you running into?

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

my problem is the image show o and not D when preprocess

from cbl-js.

skotz avatar skotz commented on August 26, 2024

I'd need to see more of your code and more examples images. Also it looks like you made some modifications since the opaque method doesn't exist in the base library.

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

jj
r
j

here more image same problem, maybe some wrong in the config the preproccess

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

you may test this images??

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

the code is very simple,
function breakCaptcha(imgId) {
return new Promise(resolve => cbl.solve(imgId).done(resolve));
}

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

doriginal

sorry this the original image

from cbl-js.

skotz avatar skotz commented on August 26, 2024

Did you train a model? The solve method won't do anything unless you've loaded a model. And I'm not sure what the opaque method in your code does, but it's probably unnecessary.

I only see small sections of your code, so I'm not sure where you problem might be. Here's an example of generally what you should be doing. You'll need to train on at least one example of every possible letter, both lower and upper case.

<div class="main">
    <div id="debugPreprocessed"></div>
    <div id="debugSegmented"></div>
    <div id="solution"></div>
    <div id="visualizeModel"></div>
</div>
<script>
    var cbl = new CBL({
        preprocess: function(img) {
            img.debugImage("debugPreprocessed");
            img.binarize(100);
            img.debugImage("debugPreprocessed");
            img.colorRegions(50, true);
            img.debugImage("debugPreprocessed");
        },
        character_set: "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
        pattern_width: 32,
        pattern_height: 32,
        pattern_maintain_ratio: true,
        allow_console_log: true,
        blob_console_debug: true,
        blob_debug: "debugSegmented"
    });

    cbl.train("D.png");

    var saveModel = function() {
        cbl.condenseModel();
        cbl.sortModel();
        cbl.visualizeModel("visualizeModel");
        cbl.saveModel();
    }
</script>

from cbl-js.

skotz avatar skotz commented on August 26, 2024

Also, make sure you have allow_console_log enabled to provide helpful debugging information to the console.

from cbl-js.

serviciosecwifi avatar serviciosecwifi commented on August 26, 2024

traincbl

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.