Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
79 views
in Technique[技术] by (71.8m points)

python - reading images in a loop using requests.get changes behavior

I need to read thousends of images hosted in a sharepoint site, I save their urls in a list, and then read them in a loop with the following code:

def url_to_image(url):
    resp = requests.get(url).raw
    image = np.asarray(bytearray(resp.read()), dtype="uint8")
    image = cv2.imdecode(image, cv2.IMREAD_COLOR)
return image

Everything goes well, except that speed changes drastically between different iterations. the behavior I was able to spot is that I can read and process ~20 images in a row with a speed of 0-3 secs per image which is good enough, but then the next ~10 images take very long, 10-35 secs per image, and so it repeats itself over and over again. My first thought was that it has to do with image size, but I was running the code a few times on the same data of images, and it had different behavior each time.

I checked timing for each part of the code, and it looks like the part that gets stuck is the read() of the response.

I tried also in a different method, using the sharepoint rest api directly, but the behavior was similar.

To my knowledge there are no server or connection problem, as I make a bunch of other requests with no problem at all.

Any help will be much appreciated.

question from:https://stackoverflow.com/questions/65873081/reading-images-in-a-loop-using-requests-get-changes-behavior

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...