Halcon學習之兩幅圖像處理

http://blog.csdn.net/xinrui_hhuc/article/details/5813668 

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

你可能感兴趣的:(image,div)