Tesseract Worker.Load 掛在 Vercel 上 (Tesseract Worker.Load hangs on Vercel)


問題描述

Tesseract Worker.Load 掛在 Vercel 上 (Tesseract Worker.Load hangs on Vercel)

不確定是否有人可以提供幫助,但我在我的 Next JS 應用程序中使用 Tesseract.js 在我的本地站點上有一個 OCR 閱讀器。它在本地和讀取 smy 圖像上工作正常,但是當我部署到 Vercel 時它掛在這條線上....

await worker.load()

這就是全部內容

  const worker = createWorker()
  console.log('createWorker')

  //attempt ocr on processed image
  await worker.load()
  console.log('worker.load')

  //set language to plain english
  await worker.loadLanguage('eng')
  await worker.initialize('eng')

  //set character whitelist and disable dictionary functions that won't help us here
  await worker.setParameters({
    tessedit_char_whitelist:
      '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz‑/$.@| ',
    load_system_dawg: 0,
    load_freq_dawg: 0,
  })
  console.log('setParameters')

  //process editted image
  const OcrResult = await worker.recognize(imageb64)
  if (process.env.DEBUG >= 1) {
    console.log('[DEBUG] OCR: Process complete, results: ', OcrResult.data.text)
  }

關於 Vercel 的任何怪癖會使它無法在測試站點上運行嗎?

謝謝


參考解法

方法 1:

You might try using something like this instead, designed to use in lambda functions.

https://github.com/shelfio/aws‑lambda‑tesseract

(by MomasVIIleerob)

參考文件

  1. Tesseract Worker.Load hangs on Vercel (CC BY‑SA 2.5/3.0/4.0)

#tesseract #Next.js #vercel






相關問題

Android Studio 如何修復無法創建類文件錯誤? (Android Studio How to fix cannot create class-file error?)

Python - 程序收到信號 SIGSEGV,分段錯誤 (Python - Program received signal SIGSEGV, Segmentation fault)

Tesseract OCR 在線程中使用時崩潰 (Tesseract OCR crash when used in thread)

如何將 Leptonica Pix 對象轉換為 Android 的位圖 (How to convert Leptonica Pix Object to Android's Bitmap)

錯誤 2 在 pytesseract 中沒有這樣的文件或目錄 (Error 2 No such file or directory in pytesseract)

OCR:沒有得到想要的結果 (OCR : Not getting desired result)

在 x64 位機器上的 Visual Studio 2013 中鏈接 tesseract 和 opencv (Linking tesseract and opencv in Visual Studio 2013 on x64 bit machine)

如何提高讀取正方體的準確性? (How to improve read tesseract accuracy?)

如何將 C++ tesseract-ocr 代碼轉換為 Python? (how to convert C++ tesseract-ocr code to Python?)

Tesseract Worker.Load 掛在 Vercel 上 (Tesseract Worker.Load hangs on Vercel)

如何在窗口上使用 MinGW 編譯 tesseract baseapi.h? (How to compile tesseract baseapi.h with MinGW on window?)

Pytesseract 或 Keras OCR 從圖像中提取文本 (Pytesseract or Keras OCR to extract text from image)







留言討論