在图像文件中,有多个单词被写入,我想为图像中的一个关键词/搜索词找到坐标/位置/像素。如果有人帮助我,那就太好了。
我可以在文本中找到位置或突出显示单词,但在图像中我需要相同的坐标。
将图像文件转换为文本文件后
File path= input('file name')
With open(file path, mode= 'rt', encoding= ' utf-8') as f:
Text = f.read()
search_word= 'Pratik'
If search_word in text;
Print()
print(text.replace(search_word, ' '\033[44;33m{}\033[m'.format(search_word)))
else:
print("not found")