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

spkulgod's profile - activity

2021-04-23 11:45:00 -0500 received badge  Nice Question (source)
2017-11-18 11:02:40 -0500 received badge  Student (source)
2017-07-03 14:02:44 -0500 received badge  Famous Question (source)
2017-07-03 14:02:44 -0500 received badge  Notable Question (source)
2017-07-03 14:02:44 -0500 received badge  Popular Question (source)
2016-08-04 20:27:44 -0500 received badge  Famous Question (source)
2016-07-19 02:00:40 -0500 received badge  Famous Question (source)
2016-06-26 07:14:05 -0500 received badge  Notable Question (source)
2016-06-09 23:59:59 -0500 received badge  Popular Question (source)
2016-06-08 02:29:34 -0500 asked a question Tag detection using ardrone_autonomy

I am unable to detect standard tags using the ARDrone 2.0's camera.I am using Ardrone_Autonomy and ROS to control the drone. Should i activate something in order to start the detection or should it start by itself? And how do I start it manually?

2016-06-01 02:55:13 -0500 received badge  Enthusiast
2016-05-30 07:54:22 -0500 received badge  Editor (source)
2016-05-30 02:52:37 -0500 asked a question Rosrun image view error after installing vision_opencv

I am facing a few issues with image_view after installing vision_opencv. I am trying to view the images produced by an ardrone in the directory ardrone/front/image_raw using rosrun image_view image_view:=ardrone/front/image_raw. It seemed to be working fine till i installed vision_opencv. Now it is giving the following error when i run that

[ INFO] [1464594522.943802369]: Using transport "raw"

/opt/ros/indigo/lib/image_view/image_view: symbol lookup error: /opt/ros/indigo/lib/image_view/image_view: undefined symbol: _ZN9cv_bridge18cvtColorForDisplayERKN5boost10shared_ptrIKNS_7CvImageEEERKSsbdd
2016-05-30 02:33:30 -0500 received badge  Supporter (source)
2016-05-30 02:33:19 -0500 received badge  Scholar (source)
2016-05-30 02:33:00 -0500 commented answer Could not find a package configuration file provided by "opencv2"

Thank you for the help, it seems to be working.

2016-05-28 11:59:42 -0500 commented answer Could not find a package configuration file provided by "opencv2"

thank you, i will try that out and get back.

2016-05-28 11:59:02 -0500 commented question Could not find a package configuration file provided by "opencv2"

yeah but the vision_opencv page asks me to edit the CMakeLists.txt the link for the isvision_opencv

2016-05-27 21:12:03 -0500 commented question Could not find a package configuration file provided by "opencv2"

This is the link for the tutorial http://wiki.ros.org/cv_bridge/Tutoria...

2016-05-27 21:08:46 -0500 received badge  Notable Question (source)
2016-05-27 14:03:06 -0500 commented answer Could not find a package configuration file provided by "opencv2"

This is probably because i have added opencv2 as a dependency while creating the package as told in the tutorial. Should i change it to opencv?

2016-05-27 14:01:01 -0500 commented answer Could not find a package configuration file provided by "opencv2"

i tried doing that and i get a different error as shown below

CMake Error at opencv_test/CMakeLists.txt:121 (target_link_libraries):
  Cannot specify link libraries for target "opencv_test" which is not built
  by this project.


-- Configuring incomplete, errors occurred!
2016-05-27 12:17:51 -0500 commented answer Could not find a package configuration file provided by "opencv2"

I tried adding that instead of find_package(OpenCV) but it did not work

2016-05-27 12:12:35 -0500 received badge  Popular Question (source)
2016-05-27 06:45:23 -0500 asked a question Could not find a package configuration file provided by "opencv2"

I was following the Converting between ROS images and OpenCV images (Python) tutorial and i came across the following problem while running catkin_make. I am new to ros and i am still finding my way around it. I have installed opencv and have tried out the solutions suggested in other threads, but none of them seem to work. This is the error i get while executing catkin_make.

  CMake Error at /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "opencv2" with any
  of the following names:

    opencv2Config.cmake
    opencv2-config.cmake

  Add the installation prefix of "opencv2" to CMAKE_PREFIX_PATH or set
  "opencv2_DIR" to a directory containing one of the above files.  If
  "opencv2" provides a separate development package or SDK, be sure it has
  been installed.

my CMakeLists file has the following content

cmake_minimum_required(VERSION 2.8.3)
project(opencv_test)
find_package(catkin REQUIRED COMPONENTS
  cv_bridge
  opencv2
  rospy
  sensor_msgs
  std_msgs
)
find_package(OpenCV)
include_directories(
  ${catkin_INCLUDE_DIRS}
)
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries(opencv_test ${OpenCV_LIBRARIES})