zoukankan      html  css  js  c++  java
  • halcon算子翻译——count_channels

    名称

    count_channels - 计算图像的通道。

    用法

    count_channels(MultiChannelImage : : : Channels)

    描述

    算子count_channels计算所有输入图像的通道数量。

    并行

    ●  支持计算设备上的对象。

    ●  多线程类型:可重入(与非独占算子并行运行)。
    ●  多线程范围:全局(可以从任何线程调用)。
    ●  不并行化处理。

    参数

    MultiChannelImage (input_object)   (multichannel-)image(-array) → object (byte / direction / cyclic / int1 / int2 / uint2 / int4 / int8 / real / complex / vector_field)
      单通道或多通道图像。


    Channels (output_control)    integer(-array) → (integer)
      通道数量

    Example (C)

    read_image(&Color,"patras");
    count_channels(Color,&num_channels);
    for (i=1; i<=num_channels; i++)
    {
      access_channel(Color,&Channel,i);
      disp_image(Channel,WindowHandle);
      clear_obj(Channel);
    }

    Possible Successors

    access_channel, append_channel, disp_image

    See also

    append_channel, access_channel

    模块

    Foundation

    HDevelop例程

    simultaneous_grabbing.hdev     两台相机同时采集
    sick-3dcamera_components.hdev     使用SICK-3DCamera接口(不同的参数组)
    ginga++_sequence.hdev       使用Ginga ++接口(顺序采集)
    ginga++_capture_freq.hdev       使用Ginga ++接口(采集频率控制)
    1394iidc_camera_types.hdev     使用1394iidc接口(查询并使用所有支持的相机类型)

  • 相关阅读:
    致歉
    [公告]博客园正在对网站程序进行性能优化
    [公告]调整默认发布选项
    网站情况继续汇报
    定制“Server Too Busy”错误信息
    可恶的垃圾广告
    博客园分站服务器故障
    很值得期待—SharePoint "V3.0"新特性
    安装Vistual Studio 2005的小问题
    安装智能陈桥五笔时请小心
  • 原文地址:https://www.cnblogs.com/xhiong/p/count_channels.html
Copyright © 2011-2022 走看看