首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >照相机捕捉蓝色时如何打印文字?

照相机捕捉蓝色时如何打印文字?
EN

Stack Overflow用户
提问于 2015-07-17 13:19:59
回答 1查看 232关注 0票数 0

当摄像机捕捉到某种颜色时,我正在编写一个脚本,使用opencv和python打印文本。我试图使用if语句,但失败了。

这是我的密码:

代码语言:javascript
复制
import cv2
import numpy as np

cap = cv2.VideoCapture(0)

while(1):

    # Take each frame
    _, frame = cap.read()

    # Convert BGR to HSV
    hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    # define range of blue color in HSV
    lower_blue = np.array([110,50,50])
    upper_blue = np.array([130,255,255])
    result = lower_blue + upper_blue

    # Threshold the HSV image to get only blue colors
    mask = cv2.inRange(hsv, lower_blue, upper_blue)

    # Bitwise-AND mask and original image
    res = cv2.bitwise_and(frame,frame, mask= mask)

    if result.any() == True:
       print 'I can see blue color'

    cv2.imshow('frame',frame)
    cv2.imshow('mask',mask)
    cv2.imshow('res',res)

    k = cv2.waitKey(5) & 0xFF
    if k == 27:
        break

cv2.destroyAllWindows()
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-07-17 13:46:31

我想出了一个适合我的环境的解决方案。我使用Python2.7和OpenCV 2.4.6。您可能需要修改blue_threshold值以满足您的需要。

代码语言:javascript
复制
import cv2
import numpy as np

cap = cv2.VideoCapture(0)
blue_threshold = 1000000  # This value you could change for what works best

while True:

    # Take each frame
    _, frame = cap.read()

    # Convert BGR to HSV
    hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    # define range of blue color in HSV
    lower_blue = np.array([110,50,50])
    upper_blue = np.array([130,255,255])

    # Threshold the HSV image to get only blue colors
    mask = cv2.inRange(hsv, lower_blue, upper_blue)
    count = mask.sum()

    if count > blue_threshold:
       print 'I can see blue color'


    cv2.imshow('frame',frame)
    cv2.imshow('mask',mask)

    k = cv2.waitKey(5) & 0xFF
    if k == 27:
        break

cv2.destroyAllWindows()
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/31476793

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档