这是我的新手,我将Spinnaker SDK示例用于FLIR(PointGrey)相机。我正在尝试将“ convertedImage”转换为在Windows窗体的PictureBox中使用,并收到错误消息“无法将类型隐式转换为'System.Drawing.Image'。存在显式转换(是否缺少转换?)”。你能告诉我我需要做什么吗?谢谢!
尝试了所有内容,包括基本的显式强制转换。
//Part of Spinnaker SDK example:
using (IManagedImage convertedImage =
rawImage.Convert(PixelFormatEnums.Mono8))
{
String filename = "TriggerQS-CSharp-";
if (deviceSerialNumber != "")
{
filename = filename + deviceSerialNumber + "-";
}
Image testImage = convertedImage;
}
答案 0 :(得分:0)
我有同样的问题。大三角帆类型IManagedImage
有一个名为ManagedData
的属性,它是一维矢量,其中包含图像的所有字节。如果您有以下示例中的颜色,则它们是交错的。
//cv.ManagedData is a one D array of all pixels in all colors
int nx = 2592;
int ny = 1944; //7776/3 = 2592 stride, i.e. rgb are interleaved
byte[,,] data = new byte[ny, nx, 3];
for (int j = 0; j < ny; j++)
{
for (int i = 0; i < nx; i++)
{
for (int k = 0; k < 3; k++)
{
data[j,i, k] = cv.ManagedData[j * 3 * nx + 3 * i + k];
}
}
}
//emgu cv accepts the [,,] byte array
Image<Bgr, Byte> im0 = new Image<Bgr, Byte>(data);