#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 = "operate.max" |
|
Definition at line 5420 of file processor.h. 05420 { 05421 if (left > right) return left; 05422 return right; 05423 }
|
|
Definition at line 5415 of file processor.h. 05416 { 05417 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05418 }
|
|
Definition at line 5410 of file processor.h. 05411 {
05412 return NAME;
05413 }
|
|
Definition at line 179 of file processor.cpp. |