use*_*264 0 python opencv image-resizing
[~] python3
Python 3.6.8 (default, Jan 14 2019, 11:02:34)
[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np, cv2
>>> a=np.arange(10,250,10).reshape((6,4))
>>> a
array([[ 10, 20, 30, 40],
[ 50, 60, 70, 80],
[ 90, 100, 110, 120],
[130, 140, 150, 160],
[170, 180, 190, 200],
[210, 220, 230, 240]])
>>> cv2.resize(a,(3,2))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
cv2.error: OpenCV(4.1.0) /io/opencv/modules/imgproc/src/resize.cpp:3596: error: (-215:Assertion failed) func != 0 in function 'resize'
Run Code Online (Sandbox Code Playgroud)
Linux 下的 Python 3.6 和 Windows 10 下的 Python 3.7 都存在这个问题。 Windows 10 下的错误信息是:
OpenCV(3.4.1) Error: Assertion failed (func != 0) in cv::hal::resize, file C:\Miniconda3\conda-bld\opencv-suite_1533128839831\work\modules\imgproc\src\resize.cpp, line 3922
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
cv2.error: OpenCV(3.4.1) C:\Miniconda3\conda-bld\opencv-suite_1533128839831\work\modules\imgproc\src\resize.cpp:3922: error: (-215) func != 0 in function cv::hal::resize
Run Code Online (Sandbox Code Playgroud)
如果我将类型更改为 float64 或 float32,例如
a=np.arange(10,250,10).reshape((6,4)).astype(np.float64)
Run Code Online (Sandbox Code Playgroud)
然后cv2.resize突然起作用。
我相信底层的 C++ 函数cv2.resize不处理int64or int32,只有uint8,所以你可以尝试:
cv2.resize(np.uint8(a),(3,2))
Run Code Online (Sandbox Code Playgroud)
输出:
array([[ 52, 65, 78],
[172, 185, 198]], dtype=uint8)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1914 次 |
| 最近记录: |