OrkhanHI / pytorch_grid_sample_python

Python function of Pytorch Grid Sample with Zero Padding
18 stars 5 forks source link

about the safe_get #2

Open zhengshunkai opened 3 years ago

zhengshunkai commented 3 years ago
#image, n, c, x, y, H, W
Ia = safe_get(image, n, c, y0, x0, H, W)
Ib = safe_get(image, n, c, y1, x0, H, W)
Ic = safe_get(image, n, c, y0, x1, H, W)
Id = safe_get(image, n, c, y1, x1, H, W)

hello,thank you for sharing,why not the Ia = safe_get(image, n, c, x0, y0, H, W)?