Python3. I get an error when I deepcopy the instance of the class that has cv2.VideoCapture in __init__ methodGetting the class name of an instance?python decorator for class methodsFlask-PyMongo - Object of type InsertOneResult is not JSON serializableDifferent exceptions happened when running Keras and scikit-learnPipenv not working after upgrade to python (Homebrew installed)Django - No such table: main.auth_user__oldmatplotlib ImportError: numpy.core.multiarray failed to import on raspberry pi 3importing python opencv library into sikuliXWhen I execute 'import keras', I get the following error:getting error while using Flask JWT, AttributeError: 'list' object has no attribute 'id' and shows 500 Internal server error

How do you make your own symbol when Detexify fails?

What is the English pronunciation of "pain au chocolat"?

Giving feedback to someone without sounding prejudiced

"Oh no!" in Latin

Is there a RAID 0 Equivalent for RAM?

Why is the Sun approximated as a black body at ~ 5800 K?

How do I fix the group tension caused by my character stealing and possibly killing without provocation?

Can I say "fingers" when referring to toes?

Why is it that I can sometimes guess the next note?

"It doesn't matter" or "it won't matter"?

Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

15% tax on $7.5k earnings. Is that right?

Has the laser at Magurele, Romania reached a tenth of the Sun's power?

Microchip documentation does not label CAN buss pins on micro controller pinout diagram

How many arrows is an archer expected to fire by the end of the Tyranny of Dragons pair of adventures?

Will number of steps recorded on FitBit/any fitness tracker add up distance in PokemonGo?

C++ check if statement can be evaluated constexpr

When were female captains banned from Starfleet?

Pre-mixing cryogenic fuels and using only one fuel tank

Change the color of a single dot in `ddot` symbol

Is this toilet slogan correct usage of the English language?

Which was the first story featuring espers?

Why is so much work done on numerical verification of the Riemann Hypothesis?



Python3. I get an error when I deepcopy the instance of the class that has cv2.VideoCapture in __init__ method


Getting the class name of an instance?python decorator for class methodsFlask-PyMongo - Object of type InsertOneResult is not JSON serializableDifferent exceptions happened when running Keras and scikit-learnPipenv not working after upgrade to python (Homebrew installed)Django - No such table: main.auth_user__oldmatplotlib ImportError: numpy.core.multiarray failed to import on raspberry pi 3importing python opencv library into sikuliXWhen I execute 'import keras', I get the following error:getting error while using Flask JWT, AttributeError: 'list' object has no attribute 'id' and shows 500 Internal server error













1















Here is my code.



import cv2
import numpy as np
from copy import deepcopy

class Video:

def __init__(self, path):

self.name = path.split('/')[-1]
self.cap = cv2.VideoCapture(path)


When I create an instance of Video class and try to deep copy it I get this error.



video = Video('video.mp4')
print(video)
print(deepcopy(video))


ERROR:




<main.Video object at 0x103496630>
Traceback (most recent call last):
File "test.py", line 28, in
print(deepcopy(video))
File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 180, in deepcopy
y = _reconstruct(x, memo, *rv)
File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 280, in _reconstruct
state = deepcopy(state, memo)
File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 150, in deepcopy
y = copier(x, memo)
File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 240, in _deepcopy_dict
y[deepcopy(key, memo)] = deepcopy(value, memo)
File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 169, in deepcopy
rv = reductor(4)
TypeError: can't pickle cv2.VideoCapture objects




But when I remove 'cv2.VideoCapture(path)', everything works fine.



import cv2
import numpy as np
from copy import deepcopy

class Video:

def __init__(self, path):

self.name = path.split('/')[-1]


Output:




<main.Video object at 0x10d0f7c18>
<main.Video object at 0x119693eb8>











share|improve this question


























    1















    Here is my code.



    import cv2
    import numpy as np
    from copy import deepcopy

    class Video:

    def __init__(self, path):

    self.name = path.split('/')[-1]
    self.cap = cv2.VideoCapture(path)


    When I create an instance of Video class and try to deep copy it I get this error.



    video = Video('video.mp4')
    print(video)
    print(deepcopy(video))


    ERROR:




    <main.Video object at 0x103496630>
    Traceback (most recent call last):
    File "test.py", line 28, in
    print(deepcopy(video))
    File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 180, in deepcopy
    y = _reconstruct(x, memo, *rv)
    File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 280, in _reconstruct
    state = deepcopy(state, memo)
    File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 150, in deepcopy
    y = copier(x, memo)
    File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 240, in _deepcopy_dict
    y[deepcopy(key, memo)] = deepcopy(value, memo)
    File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 169, in deepcopy
    rv = reductor(4)
    TypeError: can't pickle cv2.VideoCapture objects




    But when I remove 'cv2.VideoCapture(path)', everything works fine.



    import cv2
    import numpy as np
    from copy import deepcopy

    class Video:

    def __init__(self, path):

    self.name = path.split('/')[-1]


    Output:




    <main.Video object at 0x10d0f7c18>
    <main.Video object at 0x119693eb8>











    share|improve this question
























      1












      1








      1








      Here is my code.



      import cv2
      import numpy as np
      from copy import deepcopy

      class Video:

      def __init__(self, path):

      self.name = path.split('/')[-1]
      self.cap = cv2.VideoCapture(path)


      When I create an instance of Video class and try to deep copy it I get this error.



      video = Video('video.mp4')
      print(video)
      print(deepcopy(video))


      ERROR:




      <main.Video object at 0x103496630>
      Traceback (most recent call last):
      File "test.py", line 28, in
      print(deepcopy(video))
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 180, in deepcopy
      y = _reconstruct(x, memo, *rv)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 280, in _reconstruct
      state = deepcopy(state, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 150, in deepcopy
      y = copier(x, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 240, in _deepcopy_dict
      y[deepcopy(key, memo)] = deepcopy(value, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 169, in deepcopy
      rv = reductor(4)
      TypeError: can't pickle cv2.VideoCapture objects




      But when I remove 'cv2.VideoCapture(path)', everything works fine.



      import cv2
      import numpy as np
      from copy import deepcopy

      class Video:

      def __init__(self, path):

      self.name = path.split('/')[-1]


      Output:




      <main.Video object at 0x10d0f7c18>
      <main.Video object at 0x119693eb8>











      share|improve this question














      Here is my code.



      import cv2
      import numpy as np
      from copy import deepcopy

      class Video:

      def __init__(self, path):

      self.name = path.split('/')[-1]
      self.cap = cv2.VideoCapture(path)


      When I create an instance of Video class and try to deep copy it I get this error.



      video = Video('video.mp4')
      print(video)
      print(deepcopy(video))


      ERROR:




      <main.Video object at 0x103496630>
      Traceback (most recent call last):
      File "test.py", line 28, in
      print(deepcopy(video))
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 180, in deepcopy
      y = _reconstruct(x, memo, *rv)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 280, in _reconstruct
      state = deepcopy(state, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 150, in deepcopy
      y = copier(x, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 240, in _deepcopy_dict
      y[deepcopy(key, memo)] = deepcopy(value, memo)
      File "/Users/tigranfahradyan/.local/share/virtualenvs/pyvideoproc-x3IHrdzn/lib/python3.7/copy.py", line 169, in deepcopy
      rv = reductor(4)
      TypeError: can't pickle cv2.VideoCapture objects




      But when I remove 'cv2.VideoCapture(path)', everything works fine.



      import cv2
      import numpy as np
      from copy import deepcopy

      class Video:

      def __init__(self, path):

      self.name = path.split('/')[-1]


      Output:




      <main.Video object at 0x10d0f7c18>
      <main.Video object at 0x119693eb8>








      python python-3.x class opencv






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 17 hours ago









      Տիգրան ՖահրադյանՏիգրան Ֆահրադյան

      234




      234






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I kind of figured out how to solve this, but I am sure this is not the best way. For some reasons it gives an error when you try to deepcopy the instance of the class that has a field set to 'cv2.VideoCapture(path_to_video)'.



          But you can have local variable like this.



          import cv2

          class Test:

          def __init__(self):
          cap = cv2.VideoCapture(path_to_video)

          """This will probably give an error for you
          if you try to deepcopy the instance of this class"""
          # self.cap = cv2.VideoCapture(path_to_video)





          share|improve this answer






















            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',
            autoActivateHeartbeat: false,
            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%2f55279979%2fpython3-i-get-an-error-when-i-deepcopy-the-instance-of-the-class-that-has-cv2-v%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I kind of figured out how to solve this, but I am sure this is not the best way. For some reasons it gives an error when you try to deepcopy the instance of the class that has a field set to 'cv2.VideoCapture(path_to_video)'.



            But you can have local variable like this.



            import cv2

            class Test:

            def __init__(self):
            cap = cv2.VideoCapture(path_to_video)

            """This will probably give an error for you
            if you try to deepcopy the instance of this class"""
            # self.cap = cv2.VideoCapture(path_to_video)





            share|improve this answer



























              0














              I kind of figured out how to solve this, but I am sure this is not the best way. For some reasons it gives an error when you try to deepcopy the instance of the class that has a field set to 'cv2.VideoCapture(path_to_video)'.



              But you can have local variable like this.



              import cv2

              class Test:

              def __init__(self):
              cap = cv2.VideoCapture(path_to_video)

              """This will probably give an error for you
              if you try to deepcopy the instance of this class"""
              # self.cap = cv2.VideoCapture(path_to_video)





              share|improve this answer

























                0












                0








                0







                I kind of figured out how to solve this, but I am sure this is not the best way. For some reasons it gives an error when you try to deepcopy the instance of the class that has a field set to 'cv2.VideoCapture(path_to_video)'.



                But you can have local variable like this.



                import cv2

                class Test:

                def __init__(self):
                cap = cv2.VideoCapture(path_to_video)

                """This will probably give an error for you
                if you try to deepcopy the instance of this class"""
                # self.cap = cv2.VideoCapture(path_to_video)





                share|improve this answer













                I kind of figured out how to solve this, but I am sure this is not the best way. For some reasons it gives an error when you try to deepcopy the instance of the class that has a field set to 'cv2.VideoCapture(path_to_video)'.



                But you can have local variable like this.



                import cv2

                class Test:

                def __init__(self):
                cap = cv2.VideoCapture(path_to_video)

                """This will probably give an error for you
                if you try to deepcopy the instance of this class"""
                # self.cap = cv2.VideoCapture(path_to_video)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 13 hours ago









                Տիգրան ՖահրադյանՏիգրան Ֆահրադյան

                234




                234





























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55279979%2fpython3-i-get-an-error-when-i-deepcopy-the-instance-of-the-class-that-has-cv2-v%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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현