mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 04:50:54 +08:00
Fixes issue 26 "Make include guards unique"
https://github.com/openalpr/openalpr/issues/26
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef CHARACTERSEGMENTER_H
|
||||
#define CHARACTERSEGMENTER_H
|
||||
#ifndef OPENALPR_CHARACTERSEGMENTER_H
|
||||
#define OPENALPR_CHARACTERSEGMENTER_H
|
||||
|
||||
#include "opencv2/imgproc/imgproc.hpp"
|
||||
#include "constants.h"
|
||||
@@ -98,4 +98,4 @@ class CharacterSegmenter
|
||||
vector<Point> getEncapsulatingLines(Mat img, vector<vector<Point> > contours, vector<bool> goodIndices);
|
||||
};
|
||||
|
||||
#endif // CHARACTERSEGMENTER_H
|
||||
#endif // OPENALPR_CHARACTERSEGMENTER_H
|
||||
|
Reference in New Issue
Block a user