admin 管理员组

文章数量: 887021


2023年12月18日发(作者:国外特效网站)

(2)全部代码: 1 using pServices; 2 using g; 3 using HalconDotNet; 4 using g; 5 using OpenCvSharp; 6 using System; 7

8 namespace age 9 { 10 public class HObjectBitmap 11 { 12 ///

13 /// 把source指针长度为size的数据复制到指针dest

14 ///

15 /// 要复制到的地址

16 /// 复制源的地址

17 /// 复制的长度

18 ///

19 [DllImport("")] 20 public extern static long CopyMemory(IntPtr dest, IntPtr source, int size); 21

22 ///

23 /// 把halcon图像转换到bitmap图像

24 ///

25 /// HObject对象

26 /// Bitmap对象

27 private Bitmap HObjectToBitmap(HObject hImage) 28 { 29 HTuple hpoint, type, width, height; 30 Bitmap res; 31 const int Alpha = 255; 32 gePointer1(hImage, out hpoint, out type, out width, out height); 33

34

35 res = new Bitmap(width, height, 8bppIndexed); 36 ColorPalette pal = e; 37 for (int i = 0; i <= 255; i++) 38 {


本文标签: 图像 长度 复制到 数据 指针