what is the fast way to cut image to half
i need to cut my image and now i am using crop of numpy like that a[a.shape[0] // 2:a.shape[0], :] , there is a faster function or faster processing way to cut the image ? thanks very much
add a comment