captcha

How to detect a MtCaptcha captcha with Selenium?

How to detect a MtCaptcha captcha with Selenium? Question: I need some help. In my Python code using the Selenium module, the identifier mtcap-image-1 on the website https://top-serveurs.net/gta/vote/midnight-rp is not recognized by Selenium. I would like to know if it is possible to make Selenium recognize a MtCaptcha captcha or if I need to use …

Total answers: 1

How to solve the captcha enterprise?

How to solve the captcha enterprise? Question: I need to pass the captcha in steam, captcha kind Recaptcha v2 Enterprise, used the service 2recaptcha.com to pass the captcha, displays an error ERROR_CAPTCHA_UNSOLVABLE, the site itself is written that may require additional parameters such as the parameter s. I will show my code as an example: …

Total answers: 1

Unable to read captcha text with python tesseract and OpenCV

Unable to read image text with python tesseract and OpenCV Question: I am trying read text from this using Python with OpenCV. However, it is not able to read it. import cv2 as cv import numpy as np from matplotlib import pyplot as plt img=cv.imread(file_path,0) img = cv.medianBlur(img,5) ret,th1 = cv.threshold(img,127,255,cv.THRESH_BINARY) th2 =cv.adaptiveThreshold(img,255,cv.ADAPTIVE_THRESH_MEAN_C, cv.THRESH_BINARY,11,2) th3 …

Total answers: 1

Removing black background/black stray straight lines from a captcha in python

Removing black background/black stray straight lines from a captcha in python Question: I am trying read text from this image] using Python with OpenCV. However, black background in corners if this pic is messing with the text output and is giving wrong text. I tried to used Adaptive Gaussian Thresholding in OpenCV using code: import …

Total answers: 2

Python Image Processing on Captcha how to remove noise

Python Image Processing on Captcha how to remove noise Question: I am so new on Image Processing and what I’m trying to do is clearing the noise from captchas; For captchas, I have different types of them: For the first one what I did is : Firstly, I converted every pixel that is not black …

Total answers: 3

How can I bypass the Google CAPTCHA with Selenium and Python?

How can I bypass the Google CAPTCHA with Selenium and Python? Question: How can I bypass the Google CAPTCHA using Selenium and Python? When I try to scrape something, Google give me a CAPTCHA. Can I bypass the Google CAPTCHA with Selenium Python? As an example, it’s Google reCAPTCHA. You can see this CAPTCHA via …

Total answers: 6

Remove unwanted lines in captcha text – opencv – python

Remove unwanted lines in captcha text – opencv – python Question: I trying to get text from captcha image using opencv. Problem is text are masked with noise and it is complex to process with those horizontal line/noise. Original image My processed image : not sure how to remove those horizontal lines and get text …

Total answers: 1

OpenCV findContours() just returning one external contour

OpenCV findContours() just returning one external contour Question: I’m trying to isolate letters in a captcha, I managed to filter a captcha and that result in this black and white image: But when I tried to separate the letters with findContours method of OpenCV it just found a external contour that wraps my entire image, …

Total answers: 2

Google Finance Lock Out – Robot

Google Finance Lock Out – Robot Question: So I have run into the issue of getting data from Google Finance. They have an html access system that you can use to access webpages that give stock data in simple text format (ideal for minimizing parsing). However, if you access this service too frequently, Google locks …

Total answers: 2