#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 5695 of file processor.h. 05695 { 05696 if (left < right) return left; 05697 return right; 05698 }
|
|
Definition at line 5690 of file processor.h. 05691 { 05692 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05693 }
|
|
Definition at line 5685 of file processor.h. 05686 {
05687 return NAME;
05688 }
|
|
Definition at line 185 of file processor.cpp. |