gpt4 book ai didi

c++ - 将图像顺时针旋转 90 度

转载 作者:行者123 更新时间:2023-11-28 04:52:24 24 4
gpt4 key购买 nike

<分区>

我正在尝试将图像逐个像素地旋转 90 度,似乎有一个我无法解决的数学问题...和数组越界异常这是我的尝试

const unsigned char *srcData = source.getData();
unsigned char *dstData = new unsigned char[width * height * bpp];


size_t srcPitch = source.getRowSpan();
size_t dstPitch = width * bpp;

for(int i=0; i<height; i++)
{
for(int j=0; j<width * bpp; j++)
{
rotatedData[(i * dstPitch) + j]= dstData[(height-i) * dstPitch + j];
}
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com