#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.max" |
|
Definition at line 5677 of file processor.h. 05677 { 05678 if (left > right) return left; 05679 return right; 05680 }
|
|
Definition at line 5672 of file processor.h. 05673 { 05674 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05675 }
|
|
Definition at line 5667 of file processor.h. 05668 {
05669 return NAME;
05670 }
|
|
Definition at line 184 of file processor.cpp. |