Saluti.È possibile ottenere un IntPtr da un array int []?
In C#: Se ho un array int [] dichiarato come questo
int[] array = new array[size];
c'è un modo per ottenere l'IntPtr da questo array?
Il fatto è che sto usando il framework EmguCV e c'è un costruttore per creare un'immagine che prende un IntPtr per i dati del pixel, al fine di costruire un'immagine da un array (int []).
Image<Gray,Int32> result = new Image<Gray,int>(bitmap.Width,bitmap.Height,stride,"**array.toPointer??**");
A proposito, se qualcuno potesse dirmi come calcolare il passo, sarebbe fantastico.
è questo C#? C++? – Pod
C# .Sorry, ho dimenticato di menzionare –