skotz / cbl-js

JavaScript CAPTCHA solving library
MIT License
155 stars 47 forks source link

Can you please help to solve this white lane crossed captcha? #55

Closed ArthurKa closed 3 years ago

ArthurKa commented 4 years ago
new CBL({
  preprocess: function(img) { /* ... */ },
  blob_debug: 'debugSegmented',
  character_set: '0123456789abcdefghijklmnopqrstuvwxyz',
  blob_min_pixels: 40,
  blob_max_pixels: 100000,
  pattern_width: 24,
  pattern_height: 24,
  pattern_maintain_ratio: true,
  perceptive_colorspace: true,
});
Original

Original captcha

img.convolute([
  [1, 2, 1], 
  [1, 3, 1], 
  [1, 2, 1],
], 1/13);

Convoluted captcha

img.binarize(200);

Binarized captcha

img.colorRegions(10, true, 1);

Color regioned captcha

As you can see the solver recognized wrong segments cause of these white lane crossed characters.

Is there any documentation provided? Cause I found no one and just randomly substitute example options...

skotz commented 4 years ago

It's hard to make assumptions off one image, but this one looks like it'll be difficult to solve.

A couple of things to look out for that might help...

Good luck

ArthurKa commented 4 years ago

Here is more images: photo_2020-06-26_23-56-26 photo_2020-06-26_23-56-32 photo_2020-06-26_23-56-35 photo_2020-06-26_23-56-38

ArthurKa commented 4 years ago

Thanks anyway.