#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 5599 of file processor.h. 05599 { 05600 if (left > right) return left; 05601 return right; 05602 }
|
|
Definition at line 5594 of file processor.h. 05595 { 05596 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05597 }
|
|
Definition at line 5589 of file processor.h. 05590 {
05591 return NAME;
05592 }
|
|
Definition at line 189 of file processor.cpp. |