how to display the webcam feed in label









up vote
0
down vote

favorite












from PyQt5 import QtCore, QtGui, QtWidgets
import cv2
import urllib

class Ui_adm(object):
def startwebcam(self):
url='http://192.168.43.1:8080/videofeed'

self.cam = cv2.VideoCapture(url)
self.cam.set(cv2.CAP_PROP_FRAME_HEIGHT,480)
self.cam.set(cv2.CAP_PROP_FRAME_WIDTH,640)
while(1):
ret, self.fr = self.cam.read()
self.fr=cv2.flip(self.fr,1)
self.displayImage(self.fr,1)


def displayImage(self,img,window=1):
qformat=QtGui.QImage.Format_Indexed8
if len(img.shape)==3:
if img.shape[2]==4:
qformat=QtGui.QImage.Format_RGBA8888
else:
qformat=QtGui.QImage.Format_RGB888
outImage=QtGui.QImage(img,img.shape[1],img.shape[0],img.strides[0],qformat)
outImage=outImage.rgbSwapped()

while window==1:
self.label.setPixmap(QtGui.QPixmap.fromImage(outImage))

self.label.setScaledContents(True)


>
i have been trying to display my webcamlive streaming onto a specific label in qtdesigned dialog box. I have tried the youtube video webcam on qlabel but it didnt helped as this is the momdified code of that is in video. this atleast displays a snapshot when u ignore while(1). please help me someone with this code or the one in video webcam on qlabel










share|improve this question

























    up vote
    0
    down vote

    favorite












    from PyQt5 import QtCore, QtGui, QtWidgets
    import cv2
    import urllib

    class Ui_adm(object):
    def startwebcam(self):
    url='http://192.168.43.1:8080/videofeed'

    self.cam = cv2.VideoCapture(url)
    self.cam.set(cv2.CAP_PROP_FRAME_HEIGHT,480)
    self.cam.set(cv2.CAP_PROP_FRAME_WIDTH,640)
    while(1):
    ret, self.fr = self.cam.read()
    self.fr=cv2.flip(self.fr,1)
    self.displayImage(self.fr,1)


    def displayImage(self,img,window=1):
    qformat=QtGui.QImage.Format_Indexed8
    if len(img.shape)==3:
    if img.shape[2]==4:
    qformat=QtGui.QImage.Format_RGBA8888
    else:
    qformat=QtGui.QImage.Format_RGB888
    outImage=QtGui.QImage(img,img.shape[1],img.shape[0],img.strides[0],qformat)
    outImage=outImage.rgbSwapped()

    while window==1:
    self.label.setPixmap(QtGui.QPixmap.fromImage(outImage))

    self.label.setScaledContents(True)


    >
    i have been trying to display my webcamlive streaming onto a specific label in qtdesigned dialog box. I have tried the youtube video webcam on qlabel but it didnt helped as this is the momdified code of that is in video. this atleast displays a snapshot when u ignore while(1). please help me someone with this code or the one in video webcam on qlabel










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      from PyQt5 import QtCore, QtGui, QtWidgets
      import cv2
      import urllib

      class Ui_adm(object):
      def startwebcam(self):
      url='http://192.168.43.1:8080/videofeed'

      self.cam = cv2.VideoCapture(url)
      self.cam.set(cv2.CAP_PROP_FRAME_HEIGHT,480)
      self.cam.set(cv2.CAP_PROP_FRAME_WIDTH,640)
      while(1):
      ret, self.fr = self.cam.read()
      self.fr=cv2.flip(self.fr,1)
      self.displayImage(self.fr,1)


      def displayImage(self,img,window=1):
      qformat=QtGui.QImage.Format_Indexed8
      if len(img.shape)==3:
      if img.shape[2]==4:
      qformat=QtGui.QImage.Format_RGBA8888
      else:
      qformat=QtGui.QImage.Format_RGB888
      outImage=QtGui.QImage(img,img.shape[1],img.shape[0],img.strides[0],qformat)
      outImage=outImage.rgbSwapped()

      while window==1:
      self.label.setPixmap(QtGui.QPixmap.fromImage(outImage))

      self.label.setScaledContents(True)


      >
      i have been trying to display my webcamlive streaming onto a specific label in qtdesigned dialog box. I have tried the youtube video webcam on qlabel but it didnt helped as this is the momdified code of that is in video. this atleast displays a snapshot when u ignore while(1). please help me someone with this code or the one in video webcam on qlabel










      share|improve this question













      from PyQt5 import QtCore, QtGui, QtWidgets
      import cv2
      import urllib

      class Ui_adm(object):
      def startwebcam(self):
      url='http://192.168.43.1:8080/videofeed'

      self.cam = cv2.VideoCapture(url)
      self.cam.set(cv2.CAP_PROP_FRAME_HEIGHT,480)
      self.cam.set(cv2.CAP_PROP_FRAME_WIDTH,640)
      while(1):
      ret, self.fr = self.cam.read()
      self.fr=cv2.flip(self.fr,1)
      self.displayImage(self.fr,1)


      def displayImage(self,img,window=1):
      qformat=QtGui.QImage.Format_Indexed8
      if len(img.shape)==3:
      if img.shape[2]==4:
      qformat=QtGui.QImage.Format_RGBA8888
      else:
      qformat=QtGui.QImage.Format_RGB888
      outImage=QtGui.QImage(img,img.shape[1],img.shape[0],img.strides[0],qformat)
      outImage=outImage.rgbSwapped()

      while window==1:
      self.label.setPixmap(QtGui.QPixmap.fromImage(outImage))

      self.label.setScaledContents(True)


      >
      i have been trying to display my webcamlive streaming onto a specific label in qtdesigned dialog box. I have tried the youtube video webcam on qlabel but it didnt helped as this is the momdified code of that is in video. this atleast displays a snapshot when u ignore while(1). please help me someone with this code or the one in video webcam on qlabel







      python-3.x






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 15:17









      Utkarsh Singh

      13




      13



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250130%2fhow-to-display-the-webcam-feed-in-label%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250130%2fhow-to-display-the-webcam-feed-in-label%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3