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