changed function signature (best practices)

This commit is contained in:
Phuntsok Drak-pa
2019-03-27 14:31:07 +01:00
parent fe530235a2
commit 99c815a561
3 changed files with 16 additions and 15 deletions

View File

@@ -5,10 +5,10 @@
#include <opencv2/highgui/highgui.hpp>
#include <spdlog/spdlog.h>
void method1(cv::Mat &t_reference, cv::Mat &t_output, int t_iterations);
void method1(cv::Mat const &, cv::Mat &, int);
void method2(cv::Mat &t_reference, cv::Mat &t_output, int t_iterations);
void method2(cv::Mat const &, cv::Mat &, int);
void method3(cv::Mat &t_reference, cv::Mat &t_output, int t_iterations);
void method3(cv::Mat const &, cv::Mat &, int);
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_METHODS_HH_ */