ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How to use ViSP in Qt creator

asked 2018-12-23 17:02:06 -0500

baslorone gravatar image

Hi Guys, I'm newbie and I want to build an app to run QR-code. But I dont know how to import to use Ros and ViSP in Qt creator. Please help me. Thanks very much and Have a good day guys.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-01-03 10:18:34 -0500

mali gravatar image

First, you need to install Qt creator and ViSP. Then you can create a normal package, then in the CMake list you need to add ViSP directory as follow:

......

find_package(VISP REQUIRED)

....

include_directories( include ${VISP_INCLUDE_DIRS} ${roscpp_INCLUDE_DIRS} )

......

target_link_libraries(YOUR_NODE ${VISP_LIBRARIES})

....

Finally, you can open Qt creator and choose the CMake list to open the corresponding package and do whatever calculation you want !

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2018-12-23 17:02:06 -0500

Seen: 274 times

Last updated: Jan 03 '19