#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 5561 of file processor.h. 05561 { 05562 if (left > right) return left; 05563 return right; 05564 }
|
|
Definition at line 5556 of file processor.h. 05557 { 05558 return "Compares pixels in two images, returning an image with the maximum pixel value in each pixel location"; 05559 }
|
|
Definition at line 5551 of file processor.h. 05552 {
05553 return NAME;
05554 }
|
|
Definition at line 184 of file processor.cpp. |