Adding libraries with PLCNext plugin in Eclipse
Dear Phoenix Contact,
We trying to get openCV in the PLCNext by following the tutorial:
[url=https://www.plcnext-community.net/index.php?option=com_content&view=article&id=266]Compile OpenCV for a PLCnext Control[/url]
We encountered a problem at the configure Eclipse section. Hereby we cannot reach the linker and compilers settings which are shown in the tutorial. Is it possible to add libraries in eclipse with the PLCNext pluggin program?
The picture shows the current settings window.
Thanks for your response.
Kind regards,
Florian
We trying to get openCV in the PLCNext by following the tutorial:
[url=https://www.plcnext-community.net/index.php?option=com_content&view=article&id=266]Compile OpenCV for a PLCnext Control[/url]
We encountered a problem at the configure Eclipse section. Hereby we cannot reach the linker and compilers settings which are shown in the tutorial. Is it possible to add libraries in eclipse with the PLCNext pluggin program?
The picture shows the current settings window.
Thanks for your response.
Kind regards,
Florian
Comments
the solution is to set the include path in eclipse-project.
To link the library two additions in the CMakeLists.txt are necessary.
Here is an example:
The line 22
target_include_directories(RedisTest
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/intermediate/code>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>)
Has been replaced with
target_include_directories(RedisTest
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/intermediate/code>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
PRIVACY
"C:/temp/redis/out/include")
Where the path points to the folder with the header files.
The line 50
target_link_libraries(RedisTest PRIVATE ArpDevice ArpProgramming)
has been replaced with
target_link_libraries(RedisTest PRIVATE ArpDevice ArpProgramming "C:/temp/redis/out/lib/libcpp_redis.a" "C:/temp/redis/out/lib/libtacopie.a")
where also here the paths have to be replaced accordingly.
the editor has a mistake, please replace
Thank you for your help. The library I use now can be found but apperently the library wich is called inside the library couldn't.
It is searching for: opencv2/core.hpp wich couldnt be found this opencv2 folder can be found in:
"C:/Users/florian/Documents/opencv3.4.4/opencv-3.4.4-vc14_vc15/opencv/build/include"
so the whole path is:
"C:/Users/florian/Documents/opencv3.4.4/opencv-3.4.4-vc14_vc15/opencv/build/include/opencv2/core.hpp"
Wich is the correct one.
I did add the include folder in:
target_include_directories(OPENCV_PLCNEXT
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/intermediate/code>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
PRIVACY
"C:/Users/florian/Documents/opencv3.4.4/opencv-3.4.4-vc14_vc15/opencv/build/include)"
And also tried to get it in public but this didnt change a thing.
Thanks for your response.
Kind regards,
Florian
my colleague Oliver wants to try to include the opencv library in eclipse project. We will give you a feedback as soon as possible.
Best regards
Eduard
Regards,
Florian
Oliver is off this week, but I will try to help.
The tutorial you are following was written for an earlier version of the CLI and Eclipse add-in, which I think explains why you cannot access the Eclipse settings mentioned in the tutorial.
As Eduard indicated, project settings should be made via CMake.
An example of how to include references to external projects is given in this article:
https://www.plcnext-community.net/index.php?option=com_content&view=article&id=371:how-to-include-an-open-source-library-in-your-own-c-project&catid=78&Itemid=366&lang=en
I have not tried this with opencv, but the procedure in the referenced article - from Step 4 onwards - should work with opencv. You will need to create a file called "FindOpenCV.cmake" (for example) and this file should mention the path(s) to your include files, similar to the example given for NE10.
Please let me know if you have success with this.
- Martin.
Hi Martin,
Apology for the late reply, also had a week off.
Momentarily we are trying to work out the tutorial but still got some issues with the Linux environment.
We still would like to hear Olivers findings about Cmake and openCV.
Regards,
Florian
Hi,
Now got the next error when linking:
We tried the 64bit version and the 32 bit version of the dll files, but i'm still stuck. We hope there is a solution for this error.
Regards,
Florian
Hi Florian,
From the error messages, it looks like you are trying to link a .dll, which won't work.
I am guessing that the libopencv.*.dll file was built using the host (Windows) toolchain, rather than using the target toolchain - this will have to be changed so you link to libopencv*.so, rather than .dll.
Oliver is currently working on his opencv project, and I hope he will have time to share some findings with you soon.
Martin.
Hello Florian,
this indeed looks like you are having some issues building the Open CV Library.
Make sure you realy are building for the PLCnext Controller / with our SDK and not for the Operating system you are working on...
The problem with openCV and FFMPEG is that FFMPEG does not have Cmake Support at all.
Getting it to work with cmake can be quite the hassle.
First you will have to successfully build OpenCV with FFMPEG.
Here you can find some binaries I compiled and some scripts I used for compiling.
To use openCV with FFMPEG in a PLCnext Project I did the following modifications to the CMakeLists file.
OpenCV does support find_package(xxx) but FFMPEG does not.
So I linked the nesesarry FFMPEG libraries with find_library(xxxx)
kind regards,
Oliver
Hello Oliver,
Our customer want to build OpenCV with FFMPEG, so I want to download the binaries and scripts you mentioned.
But the Link :https://phoenixcontact.sharefile.eu/d-s2223af19d3144fb8 may not be able to download for now . Can you give me a new link for download?
And if you have any new tutoral for OpenCV on AXCF2152 , that would be really nice~
Hello Oliver-san,
I also would like to get opencv library but I couldn't access the following site where you uploaded the materials.
https://phoenixcontact.sharefile.eu/d-s2223af19d3144fb8
Could you upload again or put PLCnext GitHub?
Best regards,
Atsushi