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
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
add a comment |
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
add a comment |
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
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
python python-3.x class opencv
asked 17 hours ago
Տիգրան ՖահրադյանՏիգրան Ֆահրադյան
234
234
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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)
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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)
add a comment |
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)
add a comment |
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)
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)
answered 13 hours ago
Տիգրան ՖահրադյանՏիգրան Ֆահրադյան
234
234
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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