←选择平台

ApplyMathematicalLogicCommand类

总结
对图像的颜色执行特定的数学或逻辑操作。
语法
c#
VB
objective - c
c++
Java
公共ApplyMathematicalLogicCommand:RasterCommand
公共ApplyMathematicalLogicCommand继承了RasterCommand
@接口LTApplyMathematicalLogicCommand: LTRasterCommand
公共ApplyMathematicalLogicCommand扩展RasterCommand
公共ref类ApplyMathematicalLogicCommand:RasterCommand
讲话
  • 该命令支持12位和16位灰度,48位和64位彩色图像。对12位和16位灰度以及48位和64位彩色图像的支持仅在文档/医疗工具包。
  • 此命令不支持32位灰度图像。

计算主通道值

为了加快LEADTOOLS中广泛使用的图像处理滤波器的速度,彩色图像的灰度值(主通道)采用以下公式计算:

#定义CalcGrayValue (r, g, b) ((L_UCHAR) (((L_UCHAR) (((2 * (L_UINT) (r)) + (5 * (L_UINT) (g)) + (L_UINT) (b) + 4) / 8))))#定义CalcGrayValue16 (r, g, b) ((L_UINT16) (((2 * (L_UINT32) (r)) + (5 * (L_UINT32) (g)) + (L_UINT32) (b) + 4) / 8))#定义CalcGrayValue32 (r, g, b) ((L_UINT32) (((2 * (L_UINT32) (r)) + (5 * (L_UINT32) (g)) + (L_UINT32) (b) + 4) / 8))

有关更多信息,请参阅改变亮度和对比度.有关更多信息,请参阅修正颜色.有关更多信息,请参阅ApplyMathematicalLogicCommand的标志

例子

运行ApplyMathematicalLogicCommand在图像上。

c#
VB
使用Leadtools;使用Leadtools.Codecs;使用Leadtools.ImageProcessing.Color;公共无效ApplyMathematicalLogicCommandExample (){//加载图像RasterCodecs codecs =RasterCodecs ();编解码器。ThrowExceptionsOnInvalidImages =真正的RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir,@“ImageProcessingDemo \ NaturalFruits.jpg”));//准备命令ApplyMathematicalLogicCommand命令=ApplyMathematicalLogicCommand ();命令。因子= 151;命令。Flags = ApplyMathematicalLogicCommandFlags。OperationMultiply|ApplyMathematicalLogicCommandFlags。ValueDoNothing|ApplyMathematicalLogicCommandFlags。ResultDoNothing;//将位图的颜色乘以1.51。command.Run(图片);编解码器。保存(形象,Path.Combine (LEAD_VARS.ImagesDir“Result.jpg”), RasterImageFormat.Jpeg, 24);}静态LEAD_VARS{公共常量字符串ImagesDir =@“C: \ LEADTOOLS21 \ Resources \图片”}
进口Leadtools进口Leadtools。编解码器进口Leadtools.ImageProcessing.Color公共ApplyMathematicalLogicCommandExample ()昏暗的编解码器作为RasterCodecs ()编解码器。ThrowExceptionsOnInvalidImages =真正的昏暗的leadImage作为RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir,“ImageProcessingDemo \ \ NaturalFruits.jpg”))准备命令昏暗的命令作为ApplyMathematicalLogicCommand =ApplyMathematicalLogicCommand命令。因子= 151命令。Flags = ApplyMathematicalLogicCommandFlags。OperationMultiplyApplyMathematicalLogicCommandFlags。ValueDoNothingApplyMathematicalLogicCommandFlags。ResultDoNothing将位图的颜色乘以1.51。command.Run (leadImage)编解码器。保存(leadImage Path.Combine (LEAD_VARS.ImagesDir“Result.jpg”), RasterImageFormat.Jpeg, 24)结束公共NotInheritableLEAD_VARS公共常量ImagesDir作为字符串=“C: \ LEADTOOLS21 \ Resources \图片”结束
需求

目标平台

Leadtools.ImageProcessing.Color组装
188金宝搏的网址客服|支持|联系我们|知识产权公告
©1991 - 2021领德科技有限公司版权所有。