To make a new filter:
Write a function in opencv utilities that takes cv::Mat as reference and other necessary parameters
Add an insertProcess call in updateFilters() that uses std::bind to bind the parameters to the function, leaving a placeholder for the cv::Mat reference.
Added "insertProcess" public method to mediaData
To make a new filter: Write a function in opencv utilities that takes
cv::Mat
as reference and other necessary parameters Add an insertProcess call in updateFilters() that usesstd::bind
to bind the parameters to the function, leaving a placeholder for thecv::Mat
reference.