角度有問題:atan
返回一個以弧度表示的角度。 如果你詳談,沒有留下太多的信息...
嘗試用:
a = atan(y0/x0) * 215/(pi/2)
它不是你所期望的圖像,這顯然是逆變換, 中心位於圖像中間。
# Load the image
library(png)
library(RCurl)
d <- readPNG(getBinaryURL("http://i.stack.imgur.com/rMR3C.png"))
image(d, col=gray(0:255/255))
# Origin for the polar coordinates
x0 <- ncol(d)/2
y0 <- nrow(d)/2
# The value of pixel (i,j) in the final image
# comes from the pixel, in the original image,
# with polar coordinates (r[i],theta[i]).
# We need a grid for the values of r and theta.
r <- 1:ceiling(sqrt(max(x0,nrow(d))^2 + max(y0,ncol(d))^2))
theta <- -pi/2 + seq(0,2*pi, length = 200)
r_theta <- expand.grid(r=r, theta=theta)
# Convert those polar coordinates to cartesian coordinates:
x <- with(r_theta, x0 + r * cos(theta))
y <- with(r_theta, y0 + r * sin(theta))
# Truncate them
x <- pmin(pmax(x, 1), ncol(d))
y <- pmin(pmax(y, 1), nrow(d))
# Build an empty matrix with the desired size and populate it
r <- matrix(NA, nrow=length(r), ncol=length(theta))
r[] <- d[cbind(x,y)]
image(r, col=gray(0:255/255))
謝謝,很好的答案!你能解釋代碼的每個部分在做什麼嗎?我對你用於r和theta的公式以及sin/cos值的乘法有點困惑。再次感謝 – by0
我已經略微簡化了代碼並添加了一些評論。 –