#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 5440 of file processor.h. 05440 { 05441 if (left < right) return left; 05442 return right; 05443 }
|
|
Definition at line 5435 of file processor.h. 05436 { 05437 return "Compares pixels in two images, returning an image with the minimum pixel value in each pixel location"; 05438 }
|
|
Definition at line 5430 of file processor.h. 05431 {
05432 return NAME;
05433 }
|
|
Definition at line 180 of file processor.cpp. |