Usama Ahmed

Results 13 comments of Usama Ahmed

confirmed on Chrome, yes it freezes.

I replaced writing to text file part with tesseract, but tesseract sucks a big time. Here is the code ```python import pytesseract as tess tess.pytesseract.tesseract_cmd = '/usr/bin/tesseract' with open(os.path.join(FLAGS.output_path, os.path.splitext(os.path.basename(im_fn))[0])...

Here is the full source code of my demo.py ```python # coding=utf-8 import os import shutil import sys import time import cv2 import numpy as np import tensorflow as tf...

> hi, max can you tell me how to extract the word after run demo.py? which file should i change to extractt the word? I have shared code above. You...

Tesseract doesn't automagically picks text from any image. Image has to be clear, better if it is in grayscale.

I frequently use aocr inside Google Colabs and i haven't got any problems. I use tensorflow_gpu==1.15 with aocr

```javascript export default () => { let store = createStore( rootreducer, initialState, persistedReducer, composeWithDevTools(applyMiddleware(...middleware)) ); let persistor = persistStore(store); return { store, persistor }; }; ``` Rewrote this to ```javascript...

There is no sandbox because this all works on callbacks/webhooks which are real URLs. So you cannot test on local machine. There is no api why do you need an...

A quick fix is to override UserPlan inside your admin ```python from plans.models import UserPlan from plans.admin import UserPlanAdmin class UserPlanMyAdmin(UserPlanAdmin): fields = ('user', 'plan', 'expire', 'active') admin.site.unregister(UserPlan) admin.site.register(UserPlan,UserPlanMyAdmin) ```

ComfyUI on Runpod Serverless is a pretty dumb idea. ComfyUI takes several minutes to boot up which makes it not suitable for any serverless architecture.