#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 5716 of file processor.h. 05716 { 05717 if (left > right) return left; 05718 return right; 05719 }
|
|
Definition at line 5711 of file processor.h. 05712 { 05713 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05714 }
|
|
Definition at line 5706 of file processor.h. 05707 {
05708 return NAME;
05709 }
|
|
Definition at line 185 of file processor.cpp. |