|
123456789101112131415 |
- #include "processing.h"
-
- Processing::Processing(/* args */)
- {
- }
-
- Processing::~Processing()
- {
- }
-
- Mat Processing::calculate_binaray(const Mat& inputPicture)
- {
- //cvtColor(inputPicture, inputPicture, COLOR_RGB2GRAY);
- return Mat();
- }
|