#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 5675 of file processor.h. 05675 { 05676 if (left > right) return left; 05677 return right; 05678 }
|
|
Definition at line 5670 of file processor.h. 05671 { 05672 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05673 }
|
|
Definition at line 5665 of file processor.h. 05666 {
05667 return NAME;
05668 }
|
|
Definition at line 184 of file processor.cpp. |