I wrote this code with the premise of recognizing words in an image. This method finds some, but not all, words, as shown in the link.
My code is:
def methods_text_recognition_and_delete(self, path_floorplans, f, path_fw): image = cv2.imread(path_floorplans +f) gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
Anyone have recommendations on how to improve the quality of this method?
Image example: http://imageshack.com/a/img673/1598/QFaZ3i.png
Lukas source share