#include <processor.h>
Public Member Functions | |
string | get_name () const |
string | get_desc () const |
Static Public Member Functions | |
float | binary_operate (const float &left, const float &right) |
Static Public Attributes | |
const string | NAME = "math.min" |
|
Definition at line 5736 of file processor.h. 05736 { 05737 if (left < right) return left; 05738 return right; 05739 }
|
|
Definition at line 5731 of file processor.h. 05732 { 05733 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05734 }
|
|
Definition at line 5726 of file processor.h. 05727 {
05728 return NAME;
05729 }
|
|
Definition at line 186 of file processor.cpp. |