ddt 1.4.0
 
Loading...
Searching...
No Matches
imageProc.hpp
Go to the documentation of this file.
1
10
11#ifndef IMAGEPROC_HPP_
12#define IMAGEPROC_HPP_
13
14//#include <algorithm>
15//#include <cctype>
16#include <vector>
17
18//#include <sys/stat.h>
19
20#include <cpl.h>
21
22// namespace ddt {
23
28
42bool RotateCplImage(cpl_image* image, int rotate = 0);
43
54bool FlipCplImage(cpl_image* image, int angle = 0);
55
65bool ThresholdCplImage(cpl_image* image, double lower_bound,
66 double higher_bound, double low_cut_value,
67 double high_cut_value);
68
69//} // namespace ddt
70
71#endif /* IMAGEPROC_HPP_ */
bool RotateCplImage(cpl_image *image, int rotate=0)
Definition imageProc.cpp:33
bool ThresholdCplImage(cpl_image *image, double lower_bound, double higher_bound, double low_cut_value, double high_cut_value)
Definition imageProc.cpp:72
bool FlipCplImage(cpl_image *image, int angle=0)
Definition imageProc.cpp:53