【发布时间】:2014-07-18 20:19:26
【问题描述】:
我已经成功地使用 mjpeg-streamer 从我的设备捕获了一个 mjpeg 流。以下代码是我如何在 OpenCV-python 中检索此流:
import cv2
import numpy as np
import urllib
stream=urllib.urlopen('http://@192.168.7.2:8090/?action=stream/frame.mjpg')
bytes=''
while True:
bytes+=stream.read(1024)
a = bytes.find('\xff\xd8')
b = bytes.find('\xff\xd9')
if a!=-1 and b!=-1:
jpg = bytes[a:b+2]
bytes= bytes[b+2:]
i = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8),cv2.CV_LOAD_IMAGE_COLOR)
cv2.imshow('i',i)
if cv2.waitKey(1) ==27:
exit(0)
我还有根据颜色范围跟踪移动对象的代码。这段代码的视频源是直接从 OpenCV 中的网络摄像头中提取的。这是代码:
import cv2.cv as cv
import time
import sys
capture = CaptureFROMCAM(0)
while True:
img = cv.QueryFrame(capture)
cv.Smooth(img,img,cv.CV_BLUR,3)
hue_img = cv.CreateImage(cv.GetSize(img),8, 3)
cv.CvtColor(img,hue_img, cv.CV_BGR2HSV)
# Remove all the pixels that don't match
threshold_img = cv.CreateImage(cv.GetSize(hue_img), 8, 1)
cv.InRangeS(hue_img, (100,180,80), (225,160,80), threshold_img)
# Find all the areas of color out there
storage = cv.CreateMemStorage(0)
contour = cv.FindContours(threshold_img, storage, cv.CV_RETR_CCOMP, cv.CV_CHAIN_APPROX_SIMPLE)
# Step through all the areas
points = []
while contour:
# Get the info about this area
rect = cv.BoundingRect(list(contour))
contour = contour.h_next()
# Check to make sure the area is big enough to be of concern
size = (rect[2] * rect[3])
if size > 25:
pt1 = (rect[0], rect[1])
pt2 = (rect[0] + rect[2], rect[1]+rect[3])
# Add a rectangle to the initial image
cv.Rectangle(img, pt1, pt2, (15,15,255))
threshold_img = cv.CreateImage(cv.GetSize(hue_img),8,1)
cv.InRangeS(hue_img, (16,82,19), (30,255,255), threshold_img)
cv.ShowImage("Color Tracking", img)
cv.ShowImage("threshold", threshold_img)
if cv.WaitKey(10) == 27:
success, frame = videoCapture.read()
while success:
videoWriter.write(frame)
success, frame = videoCapture.read()
break
我的问题是:如何结合这两个过程,以便我可以使用第一个程序完成的解码 jpeg 图像作为第二个代码中图像处理的输入?我已经尝试了各种组合,但我仍然没有任何运气。我一直收到错误
cv.QueryFrame 没有有效的参数'capture'
这告诉我它不喜欢我尝试提供的 jpeg 格式。有没有人有什么建议?谢谢!!!
【问题讨论】:
标签: python opencv image-processing mjpeg