我是一个新手,以前没有使用过金字塔库/框架。
我有一个脚本,基于yolo和监督,检测,跟踪和计数对象。它工作得很好。
以前,我使用streamlit来查看结果,但现在我需要基于此脚本制作一个严肃的应用程序。
我解决的事实,我收到了一个注解框架,和所有的逻辑脚本工程。我已经附上了一段脚本的理解
现在我需要在Pyramid中打开这个帧流。
请告诉我如何以及从哪里开始?我需要对现有脚本与金字塔的交互有一个大致的了解;也许有一个关于这个主题的解释手册。
不需要代码示例-我想自己弄清楚,但基本步骤是非常必要的。谢谢
def main():
rtsp_url = "rtsp://" # Replace with your actual fixed RTSP URL
cap = VideoCapture(rtsp_url)
count_object_instance = CountObject(rtsp_url)
while True:
frame = cap.read()
annotated_frame = count_object_instance.process_frame(frame)
# Do something with the annotated frame
if __name__ == "__main__":
main()
字符串
1条答案
按热度按时间piwo6bdm1#
Pyramid是一个用于构建网站的Python框架。你所问的是可行的。但是,这个问题的范围太广了,无法回答。
下面是一个尝试回答
Queue
类image
Response
对象Here is an example of how to embed Pyramid web server in your application的一个。
下面是一个如何对实时图像进行编码并从Pyramid的API端点提供该图像的示例。