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