sub_image ( ImageMinuend, ImageSubtrahend : ImageSub : Mult, Add : )

对两幅图像做减法   g' := (g1 - g2) * Mult + Add

 

abs_image ( Image : ImageAbs : : )

计算图像的绝对值模型

crop_part ( Image : ImagePart : Row, Column, Width, Height : )

剪切出一个长方形的图像

add_image ( Image1, Image2 : ImageResult : Mult, Add : )

两图像相叠加 g' := (g1 + g2) * Mult + Add

max_image ( Image1, Image2 : ImageMax : : )

计算两幅图像每个像素点的最大值

min_image ( Image1, Image2 : ImageMin : : )

计算两幅图像每个像素点的最小值

div_image ( Image1, Image2 : ImageResult : Mult, Add : )

两幅图像相除   g' := g1 / g2 * Mult + Add

mult_image ( Image1, Image2 : ImageResult : Mult, Add : )

两幅图像相乘   g' := g1 * g2 * Mult + Add

相关文章:

  • 2021-11-20
  • 2021-12-15
  • 2021-10-19
  • 2021-09-17
  • 2021-05-02
  • 2021-09-30
  • 2022-12-23
猜你喜欢
  • 2021-06-18
  • 2021-07-18
  • 2022-12-23
  • 2021-09-02
  • 2021-10-30
  • 2022-12-23
  • 2021-08-02
相关资源
相似解决方案