Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FeaturesMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <cassert>
#include <fstream>
#include "TextDetection.h"
#include <opencv/highgui.h>
#include <opencv2/highgui/highgui.hpp>
#include <exception>

void convertToFloatImage ( IplImage * byteImage, IplImage * floatImage )
Expand Down
6 changes: 3 additions & 3 deletions TextDetection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
#include <cassert>
#include <cmath>
#include <iostream>
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <opencv/cxcore.h>
#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/core_c.h>
#include <math.h>
#include <time.h>
#include <utility>
Expand Down
2 changes: 1 addition & 1 deletion TextDetection.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#ifndef TEXTDETECTION_H
#define TEXTDETECTION_H

#include <opencv/cv.h>
#include <opencv2/opencv.hpp>

struct Point2d {
int x;
Expand Down