gpt4 book ai didi

c - 使用 Intel IPP 镜像 BGR(24 位)图像

转载 作者:行者123 更新时间:2023-11-30 17:30:45 26 4
gpt4 key购买 nike

我正在尝试使用以下代码镜像原始(无图像头)BGR 图像,每像素 8 位:

void mirrorBGR(byte* src, byte* dst, UINT width, UINT height, UINT pitch_s, UINT pitch_d)
{
IppiSize size;
size.width = width;
size.height = height;
IppStatus status = ippiMirror_8u_C3R(src, pitch_s, dst ,pitch_d, size, ippAxsVertical);
if (status != ippStsNoErr)
{
printf("Mirror RGB24 failed: %d",status);
}
}

图像尺寸为 640x360。间距_s = 间距_d = 宽度 = 640。可能是什么问题?

最佳答案

节距是源位图和目标位图的扫描线长度。

如果不使用填充,至少应为 640(宽度)* 3(每像素字节数)= 1920

关于c - 使用 Intel IPP 镜像 BGR(24 位)图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24980978/

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