Make sure the OCR engine you want to use is all set up on your computer and you can call it from the command line
$IMAGE_PATH
$IMAGE_BUFFER
$IMAGE_BASE64
Github Page: https://github.com/UB-Mannheim/tesseract/wikiarrow-up-right
Command: "C:\Program Files\Tesseract-OCR\tesseract.exe" "$IMAGE_PATH" stdout -l jpn+eng --oem 3 --psm 6
"C:\Program Files\Tesseract-OCR\tesseract.exe" "$IMAGE_PATH" stdout -l jpn+eng --oem 3 --psm 6
Alt Command: tesseract "$IMAGE_PATH" stdout -l jpn+eng --oem 3 --psm 6
tesseract "$IMAGE_PATH" stdout -l jpn+eng --oem 3 --psm 6
Github Page: https://github.com/JaidedAI/EasyOCRarrow-up-right
Command: easyocr -l ja en -f "$IMAGE_PATH" --detail=0 --gpu=True
easyocr -l ja en -f "$IMAGE_PATH" --detail=0 --gpu=True