-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
img = rand(RGB{N0f8}, 1000, 1000)
img2 = imrotate(img, π/2)
size(img) # (1000, 1000)
size(img2) # (1002, 1002)
I realize it's pretty naive to just ask "why doesn't this work as expected?". I get the sense that "simply" rotating an image is not so simple. (I know very little about image processing)
I'm wondering how I should get the desired result for rotations where the degree is multiples of pi/2
. This might be related to #119 although I'm not sure.
Would it make sense to just define a new imrotate specifically for these factors of pi/2
?