我正在尝试使用numpy将此数组保存到csv文件中,但我不明白错误意味着什么,而且我无法在互联网上找到适合我的答案。 我错过了什么?
0..height-1
以下是错误:
cs = Math.Cos(angle); //calculate them once before cycle
sn = Math.Sin(angle);
...
x = (int) (i * cs - j * sn);
y = (int) (i * sn + j * cs);
if (x>=0)&&(x<width)&&(y>=0)&&(y<height)
{copy byte to new picture}