이미지 파일로 구글 이미지 검색하는 파이썬 코드(requests, webbrowser 사용)OpenCV/OpenCV 강좌2023. 10. 16. 22:10
Table of Contents
반응형
주어진 이미지 파일을 사용하여 구글 이미지 검색하는 파이썬 코드입니다.
최초작성 2023. 1. 21
import requests import webbrowser filePath = 'image.jpg' searchUrl = 'http://www.google.hr/searchbyimage/upload' multipart = {'encoded_image': (filePath, open(filePath, 'rb')), 'image_content': ''} response = requests.post(searchUrl, files=multipart, allow_redirects=False) fetchUrl = response.headers['Location'] webbrowser.open(fetchUrl) |
출처 - https://stackoverflow.com/a/28792943
반응형
'OpenCV > OpenCV 강좌' 카테고리의 다른 글
Visual Studio 2022에서 GSL(GNU Scientific Library) 사용하기 (0) | 2023.10.17 |
---|---|
OpenCV에서 VideoCapture사용시 read 함수는 계속 실행해야 함 (0) | 2023.10.17 |
OpenCV Python : 깊이 이미지 depthmap을 화면에 출력하기 (0) | 2023.10.15 |
OpenCV 빌드 정보 확인하기 (0) | 2023.10.14 |
CLAHE OpenCV Python 예제 코드 (0) | 2023.10.13 |