#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 5619 of file processor.h. 05619 { 05620 if (left < right) return left; 05621 return right; 05622 }
|
|
Definition at line 5614 of file processor.h. 05615 { 05616 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05617 }
|
|
Definition at line 5609 of file processor.h. 05610 {
05611 return NAME;
05612 }
|
|
Definition at line 190 of file processor.cpp. |