zoukankan      html  css  js  c++  java
  • opencv函数学习:cvtColor()的使用

    cvtColor()

    官方使用说明

    void cv::cvtColor(InputArray src,  OutputArray dst,  int code,  int dstCn = 0)

    #include <opencv2/imgproc.hpp>

    Converts an image from one color space to another.

    The function converts an input image from one color space to another. In case of a transformation to-from RGB color space, the order of the channels should be specified explicitly (RGB or BGR). Note that the default color format in OpenCV is often referred to as RGB but it is actually BGR (the bytes are reversed). So the first byte in a standard (24-bit) color image will be an 8-bit Blue component, the second byte will be Green, and the third byte will be Red. The fourth, fifth, and sixth bytes would then be the second pixel (Blue, then Green, then Red), and so on.

    The conventional ranges for R, G, and B channel values are:

    • 0 to 255 for CV_8U images
    • 0 to 65535 for CV_16U images
    • 0 to 1 for CV_32F images

    In case of linear transformations, the range does not matter. But in case of a non-linear transformation, an input RGB image should be normalized to the proper value range to get the correct results, for example, for RGB  L*u*v* transformation. For example, if you have a 32-bit floating-point image directly converted from an 8-bit image without any scaling, then it will have the 0..255 value range instead of 0..1 assumed by the function. So, before calling cvtColor , you need first to scale the image down:

    img *= 1./255;

    If you use cvtColor with 8-bit images, the conversion will have some information lost. For many applications, this will not be noticeable but it is recommended to use 32-bit images in applications that need the full range of colors or that convert an image before an operation and then convert back.

    If conversion adds the alpha channel, its value will set to the maximum of corresponding channel range: 255 for CV_8U, 65535 for CV_16U, 1 for CV_32F.

    Parameters
    src input image: 8-bit unsigned, 16-bit unsigned ( CV_16UC... ), or single-precision floating-point.
    dst output image of the same size and depth as src.
    code color space conversion code (see ColorConversionCodes).  ——   颜色转换底层算法
    dstCn number of channels in the destination image; if the parameter is 0, the number of the channels is derived automatically from src and code.
  • 相关阅读:
    关于SEL数据类型的简单知识点
    小结RunLoop
    iOS-静态库的创建与使用
    MRC 下block 小结
    Native与H5交互的一些解决方法
    iOS UIPickerView 显示全国省市
    iOS开发 首次启动显示用户引导,第二次启动直接进入App,UIScrollView,UIPageControl,NSUserDefaults
    去掉tableView的header view的粘黏性
    黑苹果-IOS学习的开始
    IOS中程序如何进行推送消息(本地推送,远程推送)
  • 原文地址:https://www.cnblogs.com/IAMSailorMoon/p/14372765.html
Copyright © 2011-2022 走看看