Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unbundle OpenCV #111

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ before_install:
- sudo tar --wildcards --strip=2 -C /usr/lib/x86_64-linux-gnu/ -xf opencv-3.4-x86_64.pkg.tar.xz usr/lib/libopencv_xfeatures2d.so* usr/lib/libopencv_xphoto.so* usr/lib/libopencv_optflow.so*

script:
- qmake -recursive PREFIX=/app
- make
- sudo make install
- qmake -recursive PREFIX=/app && make && sudo make install

after_success:
- find /app
Expand Down
31 changes: 31 additions & 0 deletions IPL/.qmake.stash
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,34 @@ QMAKE_DEFAULT_LIBDIRS = \
QMAKE_MAC_SDK.macosx10.12.Path = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk
QMAKE_MAC_SDK.macosx10.12.PlatformPath = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
QMAKE_MAC_SDK.macosx10.12.SDKVersion = 10.12
QMAKE_CXX.INCDIRS = \
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1 \
/usr/local/include \
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include \
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include \
/usr/include \
"/System/Library/Frameworks (framework directory)" \
"/Library/Frameworks (framework directory)" \
/usr/include/c++/7 \
/usr/include/x86_64-linux-gnu/c++/7 \
/usr/include/c++/7/backward \
/usr/lib/gcc/x86_64-linux-gnu/7/include \
/usr/local/include \
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed \
/usr/include/x86_64-linux-gnu \
/usr/include
QMAKE_CXX.LIBDIRS = \
/lib \
/usr/lib \
/usr/lib/gcc/x86_64-linux-gnu/7 \
/usr/lib/x86_64-linux-gnu \
/lib/x86_64-linux-gnu
QMAKE_CXX.QT_COMPILER_STDCXX = 201402L
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 7
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 3
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
QMAKE_CXX.COMPILER_MACROS = \
QT_COMPILER_STDCXX \
QMAKE_GCC_MAJOR_VERSION \
QMAKE_GCC_MINOR_VERSION \
QMAKE_GCC_PATCH_VERSION
1 change: 0 additions & 1 deletion IPL/IPL.pro
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ macx {
LIBS += -L$$PWD/../_lib/opencv/x64/clang/lib/ -lopencv_xfeatures2d.3.1.0
LIBS += -L$$PWD/../_lib/opencv/x64/clang/lib/ -lopencv_photo.3.1.0
LIBS += -L$$PWD/../_lib/opencv/x64/clang/lib/ -lopencv_xphoto.3.1.0

}

linux {
Expand Down
6 changes: 3 additions & 3 deletions IPL/include/IPLCameraIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
#include "IPL_global.h"
#include "IPLImage.h"

#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <opencv2/opencv.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>

/**
* @brief The IPLCameraIO class
Expand Down
4 changes: 2 additions & 2 deletions IPL/include/IPLImage.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
#include <stdexcept>


#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <opencv2/opencv.hpp>
#include <opencv2/imgproc.hpp>

/**
* @brief The IPLImage class
Expand Down
73 changes: 0 additions & 73 deletions IPL/include/opencv/opencv/cv.h

This file was deleted.

60 changes: 0 additions & 60 deletions IPL/include/opencv/opencv/cv.hpp

This file was deleted.

57 changes: 0 additions & 57 deletions IPL/include/opencv/opencv/cvaux.h

This file was deleted.

52 changes: 0 additions & 52 deletions IPL/include/opencv/opencv/cvaux.hpp

This file was deleted.

46 changes: 0 additions & 46 deletions IPL/include/opencv/opencv/cvwimage.h

This file was deleted.

Loading