可以从 int[] 数组中获取 IntPtr 吗?

发布于 2024-08-21 04:02:06 字数 396 浏览 13 评论 0原文

问候。

在 C# 中:如果我有一个这样声明的 int[] 数组,

int[] array = new array[size];

有没有办法从该数组中获取 IntPtr?

问题是我正在使用 EmguCV 框架,并且有一个构造函数来创建图像,该图像将 IntPtr 传递给像素数据,以便从数组 (int[]) 构建图像。

Image<Gray,Int32> result = new Image<Gray,int>(bitmap.Width,bitmap.Height,stride,"**array.toPointer??**");

顺便说一句,如果有人能告诉我如何计算步幅,那就太好了。

Greetings.

In C#: If I have an int[] array declared like this

int[] array = new array[size];

there is an way to get the IntPtr from this array?

The thing is that I'm using the EmguCV framework, and there is an constructor to create an image which takes an IntPtr to the pixel data, in order to build an image from an array (int[]).

Image<Gray,Int32> result = new Image<Gray,int>(bitmap.Width,bitmap.Height,stride,"**array.toPointer??**");

By the way if someone could told me how to calculate the stride, that would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迟到的我 2024-08-28 04:02:06

您应该能够使用 GCHandle 执行此操作,而无需使用不安全的代码。这是一个示例:

GCHandle handle = GCHandle.Alloc(array, GCHandleType.Pinned);
try
{
    IntPtr pointer = handle.AddrOfPinnedObject();
}
finally
{
    if (handle.IsAllocated)
    {
        handle.Free();
    }
}

You should be able to do this without unsafe code using GCHandle. Here is a sample:

GCHandle handle = GCHandle.Alloc(array, GCHandleType.Pinned);
try
{
    IntPtr pointer = handle.AddrOfPinnedObject();
}
finally
{
    if (handle.IsAllocated)
    {
        handle.Free();
    }
}
顾北清歌寒 2024-08-28 04:02:06

使用不安全的代码,如下所示:

unsafe
{
  fixed (int* pArray = array)
  {
    IntPtr intPtr = new IntPtr((void *) pArray);
  }
}

Use unsafe code, like this:

unsafe
{
  fixed (int* pArray = array)
  {
    IntPtr intPtr = new IntPtr((void *) pArray);
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文