当前位置: 首页>>代码示例>>Python>>正文


Python Filter.close方法代码示例

本文整理汇总了Python中Filter.Filter.close方法的典型用法代码示例。如果您正苦于以下问题:Python Filter.close方法的具体用法?Python Filter.close怎么用?Python Filter.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Filter.Filter的用法示例。


在下文中一共展示了Filter.close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: recordOutput

# 需要导入模块: from Filter import Filter [as 别名]
# 或者: from Filter.Filter import close [as 别名]
def recordOutput():
	output = "\nTOTAL FILTER TIME:\t "+str(time)+"\n\nAVERAGE TIME PER FRAME:\t "+str(time/numFrames)+"\n\nAVERAGE FRAMES PER SECOND:\t "+str(1 / (time / numFrames))+"\n\nTOTAL TIME INCLUDING CAPTURE:\t "+str(total)+"\n\nAVERAGE TIME PER FRAME INCLUDING CAPTURE:\t "+str(total/numFrames)+"\n\nAVERAGE FRAMES PER SECOND INCLUDING CAPTURE:\t "+str(1 / (total/numFrames))+"\n\nTOTAL KNOWN CAPTURE TIME:\t "+str(timeCapture)+"\n\nAVERAGE CAPTURE TIME PER FRAME:\t "+str(timeCapture / numFrames)+"\n\nAVERAGE CAPTURE FPS:\t "+str(1/ (timeCapture / numFrames))+"\n\nSTOPPED AT FRAME:\t "+str(numFrames)+" OUT OF: "+str(controlFrames)+"\n\n"
	print output
	if doOutput:
		try:
			fil = open(outputDir, "r")
			fil.close()
		except:
			fil = open(outputDir, "w")
			fil.close()
		f = open(outputDir, "a")
		f.write(output)
		f.write("================================================================")
		f.write("\n\n")
		f.write("================================================================")
		f.close()
	queue.close()
	queue.join_thread()
	p.join()
开发者ID:sc2ad,项目名称:CV-Rocket-Project,代码行数:21,代码来源:piCamConsumerProducer.py

示例2: open

# 需要导入模块: from Filter import Filter [as 别名]
# 或者: from Filter.Filter import close [as 别名]
						output = filt.run(filt.image)

					capture.truncate(0)
					capture.seek(0)
					e2 = cv2.getTickCount()
					time += (e2 - e1) / cv2.getTickFrequency()
					numFrames += 1
					if controlFrames != 0 and numFrames >= controlFrames:
						break
			elif cType == 3:
				camera.capture_sequence(outputs(), 'jpeg', use_video_port=True)
		except KeyboardInterrupt:
			breaking = True
		tot2 = cv2.getTickCount()
		totalTime = (tot2-tot1) / cv2.getTickFrequency()
		# print "Test %i with settings %i: Captured %i frames at total fps of %.2f, with internal fps of %.2f. Saw a contour in %i frames." % (i, cType, numFrames, numFrames/totalTime, numFrames/time, goodFrames)
		out += "Test %i with settings %i:\tCaptured %i frames at total fps of %.2f, with internal fps of %.2f. Saw a contour in %i frames.\n" % (i, cType, numFrames, numFrames/totalTime, numFrames/time, filt.contourCount)
	if breaking:
		print "BREAKING OUT"
		break
try:
	f = open(outputDir, "r")
except:
	f = open(outputDir, "w")
	f.write(str(outputDir)+": A place to store data from various Baseline tests.")
f.close()
print out
f = open(outputDir, "a")
f.write(out)
f.close()
开发者ID:sc2ad,项目名称:CV-Rocket-Project,代码行数:32,代码来源:baselineCapture.py

示例3: print

# 需要导入模块: from Filter import Filter [as 别名]
# 或者: from Filter.Filter import close [as 别名]
    frame = cv2.medianBlur(frame, 5)
    frameHSV = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    blue_area = blue_filt.work(frameHSV)
    green_area = green_filt.work(frameHSV)
    red_area = red_filt.work(frameHSV)

    detection_signal = 0
    if blue_area > 30000:
        detection_signal += 1
    if green_area > 25000:
        detection_signal += 2
    if red_area > 5000:
        detection_signal += 4

    if prev_sig != detection_signal:
        print("r : {} g : {} b : {} sig : {}".format(red_area, green_area, blue_area, detection_signal))
        ser.write(chr(detection_signal))
        prev_sig = detection_signal

    cv2.imshow("Show", frame)

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

cv2.destroyAllWindows()
blue_filt.close()
green_filt.close()
red_filt.close()
开发者ID:kalo-glb,项目名称:TrashDetection,代码行数:32,代码来源:test.py


注:本文中的Filter.Filter.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。