【学习笔记】图像处理

1、RGBA模型

【学习笔记】图像处理_第1张图片


  • 色调/色相--物体传递的颜色(红色、绿色、蓝色等等具体的颜色)

  • 饱和度--颜色的纯度,从0(灰)到100%(饱和)来进行描述

    【学习笔记】图像处理_第2张图片

  • 亮度/明度--颜色的相对明暗程度

    【学习笔记】图像处理_第3张图片

具体代码使用如下:

ColorMatrix colorMatrix = new ColorMatrix();
        float degree = 10;
        //设置色调
        /**
         * 0-代表R,1-代表G,2-代表B
         */
        colorMatrix.setRotate(0, degree);

        colorMatrix.setRotate(1, degree);

        colorMatrix.setRotate(2, degree);

        /**
         * 设置饱和度
         */
        float saturation = 11;
        colorMatrix.setSaturation(saturation);

        /**
         * 亮度
         */
        colorMatrix.setScale(0, 0, 0, 1);



详细使用,后续更新......

你可能感兴趣的:(【学习笔记】图像处理)