Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eta/core/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -3537,7 +3537,7 @@ def _retrieve(self):

width, height = self.frame_size
try:
vec = np.fromstring(self._raw_frame, dtype="uint8")
vec = np.frombuffer(self._raw_frame, dtype="uint8")
return vec.reshape((height, width, 3))
except ValueError as e:
# Possible alternative: return all zeros matrix instead
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from wheel.bdist_wheel import bdist_wheel


VERSION = "0.15.2"
VERSION = "0.15.3"


class BdistWheelCustom(bdist_wheel):
Expand Down