• <bdo id='H04Ce'></bdo><ul id='H04Ce'></ul>
      <legend id='H04Ce'><style id='H04Ce'><dir id='H04Ce'><q id='H04Ce'></q></dir></style></legend>
      <i id='H04Ce'><tr id='H04Ce'><dt id='H04Ce'><q id='H04Ce'><span id='H04Ce'><b id='H04Ce'><form id='H04Ce'><ins id='H04Ce'></ins><ul id='H04Ce'></ul><sub id='H04Ce'></sub></form><legend id='H04Ce'></legend><bdo id='H04Ce'><pre id='H04Ce'><center id='H04Ce'></center></pre></bdo></b><th id='H04Ce'></th></span></q></dt></tr></i><div id='H04Ce'><tfoot id='H04Ce'></tfoot><dl id='H04Ce'><fieldset id='H04Ce'></fieldset></dl></div>

      1. <small id='H04Ce'></small><noframes id='H04Ce'>

        <tfoot id='H04Ce'></tfoot>

        Kivy 相机作为 KV 语言小部件

        Kivy Camera as KV language widget(Kivy 相机作为 KV 语言小部件)

          <tbody id='tXgYI'></tbody>

        <small id='tXgYI'></small><noframes id='tXgYI'>

          <i id='tXgYI'><tr id='tXgYI'><dt id='tXgYI'><q id='tXgYI'><span id='tXgYI'><b id='tXgYI'><form id='tXgYI'><ins id='tXgYI'></ins><ul id='tXgYI'></ul><sub id='tXgYI'></sub></form><legend id='tXgYI'></legend><bdo id='tXgYI'><pre id='tXgYI'><center id='tXgYI'></center></pre></bdo></b><th id='tXgYI'></th></span></q></dt></tr></i><div id='tXgYI'><tfoot id='tXgYI'></tfoot><dl id='tXgYI'><fieldset id='tXgYI'></fieldset></dl></div>
          • <legend id='tXgYI'><style id='tXgYI'><dir id='tXgYI'><q id='tXgYI'></q></dir></style></legend>
            <tfoot id='tXgYI'></tfoot>

                <bdo id='tXgYI'></bdo><ul id='tXgYI'></ul>
                • 本文介绍了Kivy 相机作为 KV 语言小部件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用带有网络摄像头的 Kivy.我按照@Arnav 的 this example 使用 opencv 来形成和将相机显示为小部件.我已经扩展"了python中的布局,添加了两个按钮作为测试,为更复杂的布局做准备.

                  I am using Kivy with a webcam. I have followed this example by @Arnav of using opencv to form and display the camera as a widget. I have "extended" the layout within python it to add two buttons as a test, in preparation for a more complicated layout.

                  class CamApp(App):
                      def build(self):
                          self.capture = cv2.VideoCapture(0)
                          self.my_camera = KivyCamera(capture=self.capture, fps=30,resolution=(1920,1080))
                          root = BoxLayout(orientation = 'vertical')
                          root.add_widget(self.my_camera,1)
                          box2 = BoxLayout(orientation = 'vertical')
                          btn1 = Button(text='Hello world 1')
                          btn2 = Button(text='Hello world 2')
                          box2.add_widget(btn1)
                          box2.add_widget(btn2)
                          root.add_widget(box2, 0)
                          return root
                          #return Builder.load_string(kv)
                  

                  虽然这可行,但我更愿意将 UI 组件从 python 中移出并放入 kv 语言 文件中.问题是知道如何在 kv 文件中描述"self.my_camera?

                  While this works I would prefer to move the UI components out of python and into a kv language file. The problem is knowing how to "describe" the self.my_camera in the kv file?

                  我不确定是否将 KivyCamera 类作为 kv 文件中的 widget 继承,即

                  I am not sure whether to inherit the KivyCamera class as a widget within the kv file i.e.

                  kv = '''
                  <Cam1@KivyCamera>:
                      texture: self.my_camera
                      resolution: (1920, 1080)
                      pos: self.pos
                      size: self.size
                  

                  或者是否使用canvas小部件

                  <MyWidget>:
                      canvas:
                          Rectangle:
                              source: self.my_camera
                              pos: self.pos
                              size: self.size
                  

                  我尝试过其他被黑"的实现,但在所有情况下,问题都是通过 self.my_camera 链接到 kv 文件.

                  I have tried other "hacked" implementations, but in all cases the problem is linking through the self.my_camera into the kv file.

                  有什么建议吗?

                  推荐答案

                  也许这个例子可以帮到你.

                  Perhaps this example may help you.

                  # Import 'kivy.core.text' must be called in entry point script
                  # before import of cv2 to initialize Kivy's text provider.
                  # This fixes crash on app exit.
                  
                  import kivy.core.text
                  import cv2
                  from kivy.app import App
                  from kivy.base import EventLoop
                  from kivy.uix.image import Image
                  from kivy.clock import Clock
                  from kivy.graphics.texture import Texture
                  from kivy.uix.boxlayout import BoxLayout
                  from kivy.core.window import Window
                  
                  
                  class KivyCamera(Image):
                  
                      def __init__(self, **kwargs):
                          super(KivyCamera, self).__init__(**kwargs)
                          self.capture = None
                  
                      def start(self, capture, fps=30):
                          self.capture = capture
                          Clock.schedule_interval(self.update, 1.0 / fps)
                  
                      def stop(self):
                          Clock.unschedule_interval(self.update)
                          self.capture = None
                  
                      def update(self, dt):
                          return_value, frame = self.capture.read()
                          if return_value:
                              texture = self.texture
                              w, h = frame.shape[1], frame.shape[0]
                              if not texture or texture.width != w or texture.height != h:
                                  self.texture = texture = Texture.create(size=(w, h))
                                  texture.flip_vertical()
                              texture.blit_buffer(frame.tobytes(), colorfmt='bgr')
                              self.canvas.ask_update()
                  
                  
                  capture = None
                  
                  
                  class QrtestHome(BoxLayout):
                  
                      def init_qrtest(self):
                          pass
                  
                      def dostart(self, *largs):
                          global capture
                          capture = cv2.VideoCapture(0)
                          self.ids.qrcam.start(capture)
                  
                      def doexit(self):
                          global capture
                          if capture != None:
                              capture.release()
                              capture = None
                          EventLoop.close()
                  
                  
                  class qrtestApp(App):
                  
                      def build(self):
                          Window.clearcolor = (.4,.4,.4,1)
                          Window.size = (400, 300)
                          homeWin = QrtestHome()
                          homeWin.init_qrtest()
                          return homeWin
                  
                      def on_stop(self):
                          global capture
                          if capture:
                              capture.release()
                              capture = None
                  
                  qrtestApp().run()
                  

                  还有kv文件:

                  <QrtestHome>:
                  
                      BoxLayout:
                          orientation: "vertical"
                  
                          Label:
                              height: 20
                              size_hint_y: None
                              text: 'Testing the camera'
                  
                          KivyCamera:
                              id: qrcam
                  
                          BoxLayout:
                              orientation: "horizontal"
                              height: 20
                              size_hint_y: None
                  
                              Button:
                                  id: butt_start
                                  size_hint: 0.5,1
                                  text: "start"
                                  on_press: root.dostart()
                  
                              Button:
                                  id: butt_exit
                                  text: "quit"
                                  size_hint: 0.5,1
                                  on_press: root.doexit()
                  

                  这篇关于Kivy 相机作为 KV 语言小部件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)

                      <small id='IfRA8'></small><noframes id='IfRA8'>

                      <legend id='IfRA8'><style id='IfRA8'><dir id='IfRA8'><q id='IfRA8'></q></dir></style></legend>
                          <tbody id='IfRA8'></tbody>

                          <bdo id='IfRA8'></bdo><ul id='IfRA8'></ul>
                        • <i id='IfRA8'><tr id='IfRA8'><dt id='IfRA8'><q id='IfRA8'><span id='IfRA8'><b id='IfRA8'><form id='IfRA8'><ins id='IfRA8'></ins><ul id='IfRA8'></ul><sub id='IfRA8'></sub></form><legend id='IfRA8'></legend><bdo id='IfRA8'><pre id='IfRA8'><center id='IfRA8'></center></pre></bdo></b><th id='IfRA8'></th></span></q></dt></tr></i><div id='IfRA8'><tfoot id='IfRA8'></tfoot><dl id='IfRA8'><fieldset id='IfRA8'></fieldset></dl></div>

                            <tfoot id='IfRA8'></tfoot>