映美精黑白相机IFrameQueueBuffer转halcon的HObject

映美精黑白相机,用wpf+halcon开发取图

1.到官网下载,开发包

1sdk 2c++开发例子 3c#开发例子

  1. 引入TIS.Imaging.ICImagingControl35.dll

3.ICImagingControl使用这个类控制相机

csharp 复制代码
/// <summary>
/// 相机控制
/// </summary>
public ICImagingControl _ic_imaging_control = new ICImagingControl();

 //设置不把图片显示在控件
_ic_imaging_control.LiveDisplay = false;
//禁止覆盖位图
_ic_imaging_control.OverlayBitmapPosition = PathPositions.None;

if (_ic_imaging_control.Devices.Length > 0)
   {
        int device_count_ = _ic_imaging_control.Devices.Length;
        for (int i = 0; i < device_count_; i++)
            {
             if (_ic_imaging_control.Devices[i].Name.Contains(_camer_parameter._camer_name))
                {
                   _ic_imaging_control.Device = _ic_imaging_control.Devices[i];
                   _camer_name = _ic_imaging_control.Devices[i].Name;
                 }
             }
    }

4.采用回调方式取图

csharp 复制代码
CamerTakeImage.CamerTakeImage._camer_take_image_static.Init();
if (CamerTakeImage.CamerTakeImage._camer_take_image_static._camer_name != "")
{
    _currently_displayed_buffer = null;
    //创建相机的回调函数
    _sink = new TIS.Imaging.FrameQueueSink((arg) => CamerCallback(arg), TIS.Imaging.MediaSubtypes.Y800, 5);
    CamerTakeImage.CamerTakeImage._camer_take_image_static._ic_imaging_control.Sink = _sink;                             
}

5.把图片转成HObject

csharp 复制代码
    /// <summary>
    /// 相机的回调函数
    /// </summary>
    /// <param name="buffer"></param>
    /// <returns></returns>
    FrameQueuedResult CamerCallback(IFrameQueueBuffer buffer)
    {
        DealWithImage.DealWithImage._deal_with_image_static._exit_image = false;
        DealWithImage.DealWithImage._deal_with_image_static._image.Dispose();
        HOperatorSet.GenImage1(out DealWithImage.DealWithImage._deal_with_image_static._image,
            "byte",
            buffer.FrameType.Width,
            buffer.FrameType.Height,
            buffer.GetIntPtr());
        DealWithImage.DealWithImage._deal_with_image_static._exit_image = true;
        hswin_image.RefreshWindow();
       
       //这句话一定要有,不然取图只有五张
        if (_currently_displayed_buffer != null)
        {
            _sink.QueueBuffer(_currently_displayed_buffer);
        }
        _currently_displayed_buffer = buffer;

        return FrameQueuedResult.SkipReQueue;
    }
相关推荐
张人玉2 天前
图像处理函数与形态学操作笔记(含 Halcon 示例)
图像处理·人工智能·笔记·halcon
张人玉3 天前
Halcon条码技术详解(含 Halcon 应用示例)
大数据·人工智能·算法·halcon
c#上位机5 天前
halcon求区域交集——intersection
图像处理·人工智能·计算机视觉·c#·halcon
c#上位机6 天前
halcon刚性变换(平移+旋转)——vector_to_rigid
图像处理·人工智能·计算机视觉·c#·halcon
c#上位机6 天前
halcon创建对象数组——concat_obj
图像处理·计算机视觉·c#·halcon
c#上位机6 天前
halcon求图像灰度最大值和最小值——min_max_gray
图像处理·人工智能·计算机视觉·c#·上位机·halcon
c#上位机8 天前
halcon获取区域中心坐标以及面积——area_center
图像处理·计算机视觉·c#·halcon
c#上位机8 天前
halcon刚性变换(平移+旋转)——vector_angle_to_rigid
人工智能·计算机视觉·c#·上位机·halcon·机器视觉
c#上位机9 天前
halcon图像增强——emphasize
图像处理·人工智能·计算机视觉·c#·上位机·halcon
zxy28472253019 天前
C#的视觉库Halcon入门示例
c#·图像识别·halcon·机器视觉