cbl-js icon indicating copy to clipboard operation
cbl-js copied to clipboard

Help solving this captcha

Open giordanolucas opened this issue 1 year ago • 1 comments

image

I've been iterating a lot over these captchas but I don't seem to get to a solution.

This is the config for these results

        preprocess: function(img) {
            img.debugImage("debugPreprocessed");
            img.cropRelative(33, 1, 33, 1);
            img.debugImage("debugPreprocessed");
            img.binarize(35);
            img.debugImage("debugPreprocessed");
            img.removeHorizontalLine(2);
            img.debugImage("debugPreprocessed");
            img.binarize(255);
            img.debugImage("debugPreprocessed");
            img.colorRegions(50, true, 0);
            img.debugImage("debugPreprocessed");
        },
        character_set: "0123456789abcdefghijklmnopqrstuvwxyz",
        exact_characters: 6,
        blob_min_pixels: 50,
        blob_max_pixels: 10000,
        pattern_width: 30,
        pattern_height: 30,
        perceptive_colorspace: true,
        allow_console_log: true,
        blob_console_debug: true,
        blob_debug: "debugSegmented"
    });

(exact characters is 6 because the captchas will contain 6 characters on most cases)

Any ides on what to change here?

I think I might need to move to a ML solution 😞

giordanolucas avatar Apr 14 '23 03:04 giordanolucas

Yeah, this is likely too complicated for the methods in this library. This CAPTCHA looks familiar, so there might be some examples for it in the examples folder.

skotz avatar Apr 15 '23 19:04 skotz