Image Merge
Function: Combines two images into one image using different methods.
Input Parameters:
Name | Type | Valid Range | Default Value | Meaning |
---|---|---|---|---|
Image |
Image |
None |
None |
Image |
Image |
Image |
None |
None |
Image |
Output Parameters:
Name | Type | Valid Range | Default Value | Meaning |
---|---|---|---|---|
Combined image |
Image |
None |
None |
The merged image. |
Parameter Settings:
Name | Type | Valid Range | Default Value | Meaning |
---|---|---|---|---|
Consolidation method |
String |
['Take Larger Value', 'Take Smaller Value', 'Weighted Overlay'] |
Take Larger Value |
Taking the larger value refers to judging the pixel values of two images at each pixel position, taking the larger one, and taking the smaller value is the opposite weighted overlay, which is the weighted overlay of the pixel values of each position of the two images, dst = src1 * alpha + src2 * beta + gamma. |
First image weight |
Float |
[0.0, 1.0] |
0.8 |
The weight of the first image scr1, usually taken as a floating point number between 0 and 1. |
Second image weight |
Float |
[0.0, 1.0] |
0.2 |
The weight of the second image scr2, usually taken as a floating point number between 0 and 1. |
Grayscale coefficient |
Float |
[0.0, 500.0] |
0 |
Grayscale coefficient, offset of image correction, used to adjust brightness. |