#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.min" |
|
Definition at line 5525 of file processor.h. 05525 { 05526 if (left < right) return left; 05527 return right; 05528 }
|
|
Definition at line 5520 of file processor.h. 05521 { 05522 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05523 }
|
|
Definition at line 5515 of file processor.h. 05516 {
05517 return NAME;
05518 }
|
|
Definition at line 183 of file processor.cpp. |