在轮廓中查找轮廓

时间:2018-01-12 12:24:13

标签: python image opencv image-processing

enter image description here

enter image description here

我需要检测目标内的字母。我能够隔离目标形式的图像的其余部分。我也能找到外轮廓但我无法检测到里面的字母。还有其他方法来检测字母表吗?

2 个答案:

答案 0 :(得分:1)

众所周知Yellow = Green + Red,虽然有两种主要颜色:红色和黄色,所以也许绿色通道是一个不错的选择。

然后分割图像,我明白了:

enter image description here

所以findContour Yellow Red Green频道中有from selenium.webdriver.support import ui select_element = ui.Select(ui.WebDriverWait(driver, 10).until(EC.visibility_of_element_located((By.ID, "vehicleYear")))) 背景。

答案 1 :(得分:0)

快速的方法是检测红色星号和黄色字母,并检查它们的边界框之间是否存在显着重叠。

更严格的方法是将多边形点测试应用于开头大纲中字母的任何一点。