#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.min" |
|
Definition at line 5650 of file processor.h. 05650 { 05651 if (left < right) return left; 05652 return right; 05653 }
|
|
Definition at line 5645 of file processor.h. 05646 { 05647 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05648 }
|
|
Definition at line 5640 of file processor.h. 05641 {
05642 return NAME;
05643 }
|
|
Definition at line 185 of file processor.cpp. |