#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 5630 of file processor.h. 05630 { 05631 if (left > right) return left; 05632 return right; 05633 }
|
|
Definition at line 5625 of file processor.h. 05626 { 05627 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05628 }
|
|
Definition at line 5620 of file processor.h. 05621 {
05622 return NAME;
05623 }
|
|
Definition at line 184 of file processor.cpp. |