#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 5613 of file processor.h. 05613 { 05614 if (left < right) return left; 05615 return right; 05616 }
|
|
Definition at line 5608 of file processor.h. 05609 { 05610 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05611 }
|
|
Definition at line 5603 of file processor.h. 05604 {
05605 return NAME;
05606 }
|
|
Definition at line 185 of file processor.cpp. |