Utility class for working with Tesseract OCR for captcha recognition

Hierarchy

  • default

Constructors

Methods

Constructors

Methods

  • Cleans a captcha image to improve OCR recognition accuracy

    Parameters

    • image: Buffer

      The raw captcha image buffer

    Returns Promise<Buffer>

    A promise that resolves to the cleaned image buffer

    Example

    // Clean captcha image for better OCR recognition
    const rawImage = fs.readFileSync('./captcha.png');
    const cleanedImage = await TesseractUtils.cleanImage(rawImage);
  • Recognizes text from a captcha image using Tesseract OCR

    Parameters

    • image: Buffer

      The captcha image buffer to process

    Returns Promise<null | string>

    A promise that resolves to the recognized text, or null if recognition failed

    Example

    // Recognize text from a captcha image
    const captchaImage = fs.readFileSync('./captcha.png');
    const recognizedText = await TesseractUtils.recognizeText(captchaImage);

    if (recognizedText) {
    console.log('Captcha text:', recognizedText);
    } else {
    console.log('Failed to recognize captcha');
    }

Generated using TypeDoc