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

Minos's profile - activity

2019-05-10 04:49:26 -0500 received badge  Famous Question (source)
2019-04-04 13:31:10 -0500 received badge  Famous Question (source)
2019-04-04 13:31:10 -0500 received badge  Notable Question (source)
2019-04-04 13:31:10 -0500 received badge  Popular Question (source)
2019-03-21 18:30:59 -0500 received badge  Famous Question (source)
2019-03-21 18:30:59 -0500 received badge  Notable Question (source)
2018-11-06 12:36:47 -0500 received badge  Popular Question (source)
2018-10-08 06:25:49 -0500 commented answer Setpoint VS RC Override : which is better solution for quadcopter positioning with opencv?

Thank you. I'll try it. But here's my question : why setpoint is recommended? I think it'll be faster & easy-accessi

2018-10-06 03:26:33 -0500 asked a question Setpoint VS RC Override : which is better solution for quadcopter positioning with opencv?

Setpoint VS RC Override : which is better solution for quadcopter positioning with opencv? Hey all. I want to ask some q

2018-09-27 07:04:26 -0500 received badge  Student (source)
2018-08-15 00:59:36 -0500 edited question mavros : Which waypoint parameter needs to be set to operate servo in mission mode?

mavros : Which waypoint parameter needs to be set to operate servo in mission mode? Hi I'm still not good at px4 and mav

2018-08-09 06:23:47 -0500 edited question mavros : Which waypoint parameter needs to be set to operate servo in mission mode?

PX4 : Which waypoint parameter needs to be set to operate servo in mission mode? Hi I'm still not good at px4 and mavros

2018-08-09 06:23:46 -0500 edited question mavros : Which waypoint parameter needs to be set to operate servo in mission mode?

PX4 : Which waypoint parameter needs to be set to operate servo in mission mode? Hi I'm still not good at px4 and mavros

2018-08-09 04:10:29 -0500 asked a question mavros : Which waypoint parameter needs to be set to operate servo in mission mode?

PX4 : Which waypoint parameter needs to be set to operate servo in mission mode? Hi I'm still not good at px4 and mavros

2018-08-08 01:22:08 -0500 marked best answer error starts with "execute_process..." when run cmakelists.txt in qt creator

I'm using ubuntu 16.04, and ROS version is Kinetic. I installed by terminal, sudo apt-get install ros-kinetic-desktop-full. qt version is 5.8, qt creator version is 4.3.0. I try to run cmake and build ros project in qt creator environment, but something is wrong, and i don't know why.

Here's my Cmakelist.txt:

cmake_minimum_required(VERSION 2.8.3)

set(CATKIN_TOPLEVEL TRUE)

set(_cmd "catkin_find_pkg" "catkin" "${CMAKE_SOURCE_DIR}")
execute_process(COMMAND ${_cmd}
  RESULT_VARIABLE _res
  OUTPUT_VARIABLE _out
  ERROR_VARIABLE _err
  OUTPUT_STRIP_TRAILING_WHITESPACE
  ERROR_STRIP_TRAILING_WHITESPACE
)
if(NOT _res EQUAL 0 AND NOT _res EQUAL 2)
  string(REPLACE ";" " " _cmd_str "${_cmd}")
  message(FATAL_ERROR "Search for 'catkin' in workspace failed (${_cmd_str}): ${_err}")
endif()

if(_res EQUAL 0)
  set(catkin_EXTRAS_DIR "${CMAKE_SOURCE_DIR}/${_out}/cmake")
  # include all.cmake without add_subdirectory to let it operate in same scope
  include(${catkin_EXTRAS_DIR}/all.cmake NO_POLICY_SCOPE)
  add_subdirectory("${_out}")

else()
  if(NOT DEFINED CMAKE_PREFIX_PATH)
    if(NOT "$ENV{CMAKE_PREFIX_PATH}" STREQUAL "")
      string(REPLACE ":" ";" CMAKE_PREFIX_PATH $ENV{CMAKE_PREFIX_PATH})
    endif()
  endif()

  set(catkin_search_path "")
  foreach(path ${CMAKE_PREFIX_PATH})
    if(EXISTS "${path}/.catkin")
      list(FIND catkin_search_path ${path} _index)
      if(_index EQUAL -1)
        list(APPEND catkin_search_path ${path})
      endif()
    endif()
  endforeach()

  set(CATKIN_TOPLEVEL_FIND_PACKAGE TRUE)
  => Following line is line 52 I mention later 
    find_package(catkin QUIET
    NO_POLICY_SCOPE
    PATHS ${catkin_search_path}
    NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
  unset(CATKIN_TOPLEVEL_FIND_PACKAGE)

  if(NOT catkin_FOUND)
    message(FATAL_ERROR "find_package(catkin) failed. catkin was neither found in the workspace nor in the CMAKE_PREFIX_PATH. One reason may be that no ROS setup.sh was sourced before.")
  endif()
endif()

catkin_workspace()

file(GLOB_RECURSE EXTRA_FILES */*)
add_custom_target(${PROJECT_NAME}_OTHER_FILES ALL WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} SOURCES ${EXTRA_FILES})

This code is not modified, but error code occurs like this:

error: execute_process(/usr/bin/python "/home/minominium/catkin_ws/build/catkin_generated/generate_cached_setup.py") returned error code 1 /opt/ros/kinetic/share/catkin/cmake/all.cmake:186 (safe_execute_process) /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:20 (include) CMakeLists.txt:52 (find_package)

Sorry for so long and tired question, but I reeallly need the answer. What should I do?

2018-06-03 03:11:18 -0500 received badge  Notable Question (source)
2018-04-02 08:32:48 -0500 received badge  Popular Question (source)
2018-01-11 19:52:56 -0500 marked best answer usb_cam Exit code -11

Hi, I'm really new in ROS(I started a year ago, though), and I have a question using usb_cam package.

I'm working on using purethermal1 with Flir Lepton 2.5,

and launched usb_cam-test.launch file, but the process is failed with exit code -11.

There're some WARNINGS, but I think nothing is related to process failing.

I dont know what causes exit code -11, so I ask question here.

But it's OK when I try same process with logitech webcam.

So, my question is,

Do you guys have recommanded ROS Package to watch thermal cam?

I'm using UBUNTU 16.04, ROS Kinetic

I insists ros because we need raw data in ros message to another processing procedure.

I hope cool advice, thx.

And really sorry for my short English.

2018-01-11 09:57:40 -0500 answered a question usb_cam Exit code -11

Never mind with this question. I found myself. Just using usb_cam package, which is already included ROS system. The i

2018-01-11 07:37:59 -0500 asked a question usb_cam Exit code -11

usb_cam Exit code -11 Hi, I'm really new in ROS(I started a year ago, though), and I have a question using usb_cam packa

2018-01-11 07:24:54 -0500 received badge  Famous Question (source)
2018-01-11 07:24:54 -0500 received badge  Notable Question (source)
2017-12-05 10:08:19 -0500 received badge  Famous Question (source)
2017-12-05 10:08:15 -0500 received badge  Famous Question (source)
2017-08-20 08:12:03 -0500 received badge  Notable Question (source)
2017-08-20 08:12:03 -0500 received badge  Popular Question (source)
2017-07-05 21:08:28 -0500 received badge  Notable Question (source)
2017-07-05 12:00:17 -0500 edited question How to get mavros gps satellite number and gps time via mavlink?

mavros gps satellite data? Hi, I'm studying mavros and px4. My OS and ROS version is Ubuntu 16.04, Kinetic, and PX4 is

2017-07-03 07:45:38 -0500 received badge  Popular Question (source)
2017-07-03 02:15:40 -0500 edited question How to get mavros gps satellite number and gps time via mavlink?

mavros gps satellite data? Hi, I'm studying mavros and px4. My OS and ROS version is Ubuntu 16.04, Kinetic, and PX4 is

2017-07-03 00:38:43 -0500 received badge  Enthusiast
2017-07-02 22:57:21 -0500 edited question How to get mavros gps satellite number and gps time via mavlink?

mavros gps satellite data? Hi, I'm studying mavros and px4. My OS and ROS version is Ubuntu 16.04, Kinetic, and PX4 is

2017-07-02 22:57:21 -0500 received badge  Editor (source)
2017-07-02 22:56:10 -0500 asked a question How to get mavros gps satellite number and gps time via mavlink?

mavros gps satellite data? Hi, I'm studying mavros and px4. I need to record quadcopter gps and position data, and I

2017-07-02 22:50:17 -0500 received badge  Supporter (source)
2017-06-27 03:25:02 -0500 commented question How to send waypoint data from mavros?

Sorry for Doing that.

2017-06-27 00:13:42 -0500 answered a question Pixhawk not publishing the local position of my Quadrotor

I think because you launched "PX4". Try this one: "rosrun mavros mavros_node _fcu_url:="/dev/ttyUSB0:your pixhawk seira

2017-06-26 22:45:54 -0500 asked a question How to send waypoint data from mavros?

How to send waypoint data from mavros? Hi, I posted same question yesterday, but nobody answers so I make another post.

2017-06-26 11:17:14 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

Oh, yeah I see it just now. I figured out how to compile via qt. Thanks alot ahendrix! [Edit] Just note. If you want t

2017-06-26 08:33:09 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

Oh, yeah I see it just now. I figured out how to compile via qt. Thanks alot ahendrix!

2017-06-26 04:55:20 -0500 asked a question Mavros Waypoint Data send to Pixhawk

Mavros Waypoint Data send to Pixhawk I'm using ubuntu 16.04, ROS Kinetic, Pixhawk with latest PX4 firmware. I want to s

2017-06-26 04:43:44 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

Oh, yeah I see it just now. I figured out how to compile via qt. Thanks alot ahendrix!

2017-06-22 14:39:19 -0500 received badge  Popular Question (source)
2017-06-21 01:13:44 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

I sourceed setup.bash by source "echo /opt/....", "source ~/.bashrc". And catkin_init_workspace is also done.

2017-06-21 01:12:01 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

Sorry for dividing, but the reply character limit catches me.

2017-06-21 01:10:58 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

catkinConfig.cmake catkin-config.cmake Add the installation prefix of "catkin" to CMAKE_PREFIX_PATH or set "catkin_DIR"

2017-06-21 01:10:31 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

It says error: By not providing "Findcatkin.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package c

2017-06-21 01:09:36 -0500 commented question error starts with "execute_process..." when run cmakelists.txt in qt creator

Thanks for responding, ahendrix. This message is printed when I tried to run cmake with toplevel CMakeLists.txt(in ~/wor

2017-06-21 00:07:49 -0500 edited question error starts with "execute_process..." when run cmakelists.txt in qt creator

error starts with "execute_process..." when run cmakelists.txt in qt creator I'm using ubuntu 16.04, and ROS version is

2017-06-20 23:09:44 -0500 asked a question error starts with "execute_process..." when run cmakelists.txt in qt creator

error starts with "execute_process..." when run cmakelists.txt in qt creator I try to run cmake and build ros project in