#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 5697 of file processor.h. 05697 { 05698 if (left < right) return left; 05699 return right; 05700 }
|
|
Definition at line 5692 of file processor.h. 05693 { 05694 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05695 }
|
|
Definition at line 5687 of file processor.h. 05688 {
05689 return NAME;
05690 }
|
|
Definition at line 185 of file processor.cpp. |