Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PYTHON cv2.resize Error “(-215:Assertion failed) !dsize.empty()” #450

Open
josele69 opened this issue Mar 5, 2021 · 2 comments
Open
Assignees

Comments

@josele69
Copy link

josele69 commented Mar 5, 2021

I am trying to resize an image with cv2.resize function in PYTHON3 and I get the following error:

error: OpenCV(4.5.1) C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-oduouqig\opencv\modules\imgproc\src\resize.cpp:3688: error: (-215:Assertion failed) !dsize.empty() in function 'cv::hal::resize'

My images are uint16 arrays:

img_ms.shape
(4, 57, 62)

img_pan.shape
(1, 1140, 1240)

The sample function I am using inside an image pansharpening script is:

downsampled_img_pan = cv2.resize(img_pan, (img_ms.shape[2], img_ms.shape[1]),
interpolation = cv2.INTER_AREA)[:, :, np.newaxis]

Thanks!

@sanketc001
Copy link

I dont think will work since you cannot convert a 4D img into 1D like this.

@apple55bc
Copy link

last dim must be lower than 512. but 1240 > 512

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants