gpt4 book ai didi

c# - Emgu CV - 将灰度图像组合成单个 Bgr 图像

转载 作者:太空宇宙 更新时间:2023-11-03 22:45:50 25 4
gpt4 key购买 nike

我正在尝试将灰度图像转换为 Hsv 图像,但 S 和 V channel 设置为预设值。以下代码有效,但需要大约 400 毫秒才能执行。

public void ToHueImage(this Image<Gray, double> image, Image<Hsv, double> output)
{
for (int i = 0; i < image.Width; i++)
{
for (int j = 0; j < image.Height; j++)
{
output.Data[j, i, 0] = image.Data[j, i, 0];
output.Data[j, i, 1] = 255;
output.Data[j, i, 2] = 255;
}
}
}
}

我希望能够在一次操作中为 H、S 和 V 平面中的每一个分配一个灰度图像 channel ,以避免单独复制像素,类似于

public void ToHueImage(this Image<Gray, double> image, Image<Hsv, double>     output)
{
output.Data.H = image;
output.Data.S = WHITE_IMAGE; // These are static
output.Data.V = WHITE_IMAGE; // These are static
}

在不求助于字节复制等的情况下。我试图将执行时间缩短到 ~30 毫秒左右。有什么直接的方法可以做到这一点?

最佳答案

感谢 Miki 排序:只需要使用 CVInvoke 调用 opencv 函数合并:

CvInvoke.Merge(new VectorOfMat(image.Mat, whiteImage.Mat, whiteImage.Mat), heatMap.Mat);

关于c# - Emgu CV - 将灰度图像组合成单个 Bgr 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47700067/

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