- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是视频链接:我正在尝试在提供的视频链接中跟踪移动的 Ant 。不幸的是,我不能这样做。建议?
https://www.youtube.com/watch?v=bc_OdLgGrPQ&feature=youtu.be%22
import cv2
import numpy as np
import matplotlib.pyplot as plt
import imutils
black_lower = (0,0,0) #this two-blacks corresponds to the colour range in hsv, which we are looking in ants
black_upper = (130, 130, 138)
kernel_erode = np.ones((1.0,1.0),np.uint8)
#these kernels are defined for eroding and dialating image
#kernel_dialate = np.ones((1,1),np.uint8)
#r,h,c,w = 600, 400, 100, 700 # i have to play with the size of the window for getting the roi (currently cutting defined roi)
#track_window = (c,r,w,h)
vid = cv2.VideoCapture('/home/marcusidaho/Desktop/opencv_files/tandem_run_classic.mp4')
while (vid.isOpened()):
ret,frame = vid.read()
frame = imutils.resize(frame,width=600) #we have resized the frame, now we have to convert to hsv color space!
ret1,thresh = cv2.threshold(frame,100,255,cv2.THRESH_BINARY_INV)
hsv_frame = cv2.cvtColor(thresh,cv2.COLOR_RGB2HSV)# we have converted the frame in to hsv space!
cv2.imshow('thresh',thresh)
cv2.imshow('frame',frame)
mask = cv2.inRange(hsv_frame,black_lower,black_upper)#now we sh*ould define a mask for color ranges from black_lower to black_upper and remove other noices!
mask = cv2.erode(mask,kernel_erode,iterations=1)#for increasing the object detection , we have to reduce the erode_kernel_size and increase the dialate_kernel_size
mask = cv2.Canny(mask, 150, 255)
mask = cv2.bitwise_and(frame,frame,mask=mask)#for extracting specific region of the image
mask = cv2.cvtColor(mask,cv2.COLOR_BGR2GRAY)
mask3 = cv2.dilate(mask2,kernel_dialate,iterations=2)
mask4 = cv2.GaussianBlur(mask3,(1,1),0)
x,y,w,h = track_window # these are for defining the roi in the video, will have to play with this!
cv2.rectangle(mask4,(x,y),(x+w,y+h),(255,0,0),2)
dst = np.zeros_like(mask4)
dst[y:y+h,x:x+w] = mask4[y:y+h,x:x+w]
cv2.imshow('gray',frame)
#this is finding the specific object in the video and drawing a contour against it
counts = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)[-2] #findcountour saves the x and y coordinates of the boundary
#print counts
center = None
if len(counts) > 0:
calculate = max(counts,key = cv2.contourArea)
#print calculate
((x,y),radius) = cv2.minEnclosingCircle(calculate)
print(radius)
M = cv2.moments(calculate) #used to calculate the center of mass of the object
center = (int(M['m10']/M['m00']),int(M['m01']/M['m00'])) #used to extract the centroid
if radius > 6 :
cv2.circle(frame, (int(x),int(y)),int(radius),(0,255,255),2)
cv2.circle(frame, center, 5 ,(0,0,255),-1)
pts = np.append(center,(int(x),int(y)))
for i in xrange(1,len(pts)):
if pts[i-1] is None or pts[i] is None:
continue
thickness = int(np.sqrt(64/float(i+1))*2.5)
cv2.line(frame,pts[i-1],pts[i],(0,0,255),thickness)
cv2.imshow('frame',frame)
cv2.imshow('mask',mask)
if cv2.waitKey(50) and 0xFF == ord('q'):
break
vid.release()
cv2.destroyAllWindows()
最佳答案
看起来像静态背景,所以我会:
每一帧上的
A
A
以消除噪音A0
减去最后一个A
阈值dA=A-A0
并通过|dA|>threshold
创建 ROI 。此蒙版将包含 Ant 所在的位置和现在所在的区域。A0=A
A
中的对应像素是否为黑色...
A0
,您还可以使用背景图像(无 Ant )或一段时间内的积分/平均图像...
关于python - 我正在尝试在opencv的视频中跟踪移动的 Ant 。我无法追踪 Ant 。建议?提供代码和链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43701628/
这个问题可能不是很清楚,所以让我用一个例子来说明我的意思。说我要复制几个文件夹: ... 但是我需要从如下所示的文本文件中加载它们,而不是在脚本中对这些文件夹
ant 和 ant clean all 的区别? 请任何人都可以清楚地说明何时使用 Ant 和 Ant 清洁所有。 C:> Ant c:> Ant 清理所有 最佳答案 “ant”运行项目的默认目标。
我想转换如下: 到: aoeu 的值可以包含任意数量的逗号分隔元素。 我可以使用 groovy Ant 任务,但不能使用 ant-contrib 中的任何
我看到了 this相关问题,但我的情况不同,所以再次询问。基本上,我必须按特定顺序运行 12 个 ant 文件。对于每个 ant 文件,我选择不同的目标,例如“创建”或“构建并部署全部”。如何创建一个
我可以编写一个在从另一个 ant 任务执行时获取参数的 ant 任务吗? 我通常试图实现的目标是重用现有任务不同的参数。 我不知道的是: ant中有这样的子任务吗? 它可以带参数吗? 如何以及在何处指
给定一个 ant 文件集,我需要对其执行一些类似 sed 的操作,将其压缩为多行字符串(每个文件有效一行),并将结果输出到文本文件。 我在寻找什么 Ant 任务? 最佳答案 Ant script ta
我有一个包含 jars 等绝对路径的属性文件。当使用这些属性时,它们以构建文件中指定的 basedir 为前缀。 我如何获得绝对路径? build.properties: mylib=/lib/myl
我有一个任务: someString someOtherString 如何连接 s
我遇到的情况涉及运行带有可选参数的 ant 构建,这些参数总是被指定但并不总是被定义,就像这样 ant -DBUILD_ENVIRONMENT=test -Dusername_ext= -Dconf.
我正在寻找一种在 Ant 文件中包含 .jar 的方法,以便我可以立即使用它并在我的目标中调用它的方法。 就我而言,它是 ant-contrib-1.0b3.jar . 最佳答案 最好的方法是将 An
我在 ant 方面比较新,在学校我有一个作业来做一个构建文件。我的问题之一是将其名称(或路径)作为 ant 参数的文件复制到“/foldercopy”。我需要做类似的事情: Ant cpfile文件.
亲爱的,我目前在检索foreach循环中设置的属性的值时遇到一些问题。也许你们中的一个可以帮助我... 目的是检查自从生成相应的jar之后,是否已修改文件夹的一个文件。这样,我知道是否必须再次生成ja
我想创建一个宏: 然后使用它: 但是,我想为隐式元素指定一个默认值......类似于: 所以我可以这样使用它:
我想将 ANT、JavaSDK 和 FlexSDK 包含到我的项目目录中。我需要我公司的人能够从源代码编译。 我有一个以以下内容开头的 build.bat 文件: ant blah/blah/blah
我想对目录中的每个文件使用 ant 脚本集只读 但 exec 不允许 filelist: The typ
如果我以 root 身份运行任务,有没有办法检测它是否以 root 身份运行并以不同的用户身份运行某些任务。 我有一些任务需要以 root 身份运行,但其他任务只需要以当前用户身份运行。 最佳答案 如
是否可以通过ant任务使用JUnit 4.6的新MaxCore运行程序? 最佳答案 从4.6开始,不幸的是没有。您需要创建自己的自定义Ant任务才能利用MaxCore功能。 关于ant - Ant J
我有一个关于 Ant 及其对环境变量的处理的问题。 为了说明我有一个小样本。 给定 Ant 构建文件 test.xml:
该文件如下所示: a1,b1 a2,b2 ... 我知道值“a2”。 如何将值“b2”转换为属性值。 我知道如何通过以下方式选择包含“a2”的行: 但是不知道如何将属性值设置为“b2”。 我
Ant 属性可以通过属性文件设置,从属性文件解析其他属性吗? 例如,我可以这样做: 和 prop2 变成“in_test_xml1”。那挺好的。 但在这种情况下,当使用输入属性文件时: prop1
我是一名优秀的程序员,十分优秀!