Updated by Kirill Kornyakov over 11 years ago

<pre>
import cv2
dsize = (300, 450)
img = cv2.imread('attachedimage.jpg')
img_resize = cv2.resize(img, dsize=dsize)
</pre>


This snippets can cause a core dump in opencv (3.0.0-dev). I check it with the stable (2.4.6.1), and it does not have any problem.

Back