-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't make a trainer #60
Comments
This one might be difficult due to the noise, colors, and potentially overlapping letters. I think what you want to play around with is the pixel jump setting (third parameter of Basically that'll consider pixels to be part of the same blob even if they're Seems like the other settings you have are heading in the right direction. |
Without seeing all the code, I'd guess there's probably a reference to a div id that doesn't exist. So if you have |
And if it's when you click solve then it's probably missing one of these:
|
Sorry, this was the error: Thanks!! |
var cbl = new CBL({
preprocess: function(img) {
img.debugImage("debugPreprocessed");
img.removeLight(230);
img.debugImage("debugPreprocessed");
},
character_set: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",
exact_characters_width: 26,
exact_characters_play: 4,
exact_characters: 4,
blob_min_pixels: 300,
blob_max_pixels: 10000,
blob_max_width: 80,
pattern_width: 50,
pattern_height: 50,
allow_console_log: true,
blob_console_debug: true,
perceptive_colorspace: false,
blob_debug: "debugSegmented"
});
The text was updated successfully, but these errors were encountered: