#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 5593 of file processor.h. 05593 { 05594 if (left > right) return left; 05595 return right; 05596 }
|
|
Definition at line 5588 of file processor.h. 05589 { 05590 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05591 }
|
|
Definition at line 5583 of file processor.h. 05584 {
05585 return NAME;
05586 }
|
|
Definition at line 184 of file processor.cpp. |