Aborted (core dumped) Error [closed]

asked 2014-07-23 06:01:10 -0600

ROSpioneer gravatar image

updated 2014-07-23 07:21:27 -0600

I'm subscribing to RBG kinect topic (/camera/rgb/image_color) and depth topic (/camera/depth_registered/image_raw) and I try to blend the two images like this

image description

using this code that I get from opencv doc:

double a = 0.5; double b; 
Mat blend;
a = ( 1.0 - b );    
addWeighted( cv_ptr_kinect_rgb->image, alpha, cv_ptr_kinect_depth->image, 0.5, 0.5, blend);
cv::imshow( "Linear Blend", blend);

but I get this error message:

 /usr/include/boost/smart_ptr/shared_ptr.hpp:418: T* boost::shared_ptr<T>::operator->() const [with T = cv_bridge::CvImage]: Assertion `px != 0' failed.
    Aborted (core dumped)

I don't really know what going wrong !?

The entire code: here

edit retag flag offensive reopen merge delete

Closed for the following reason question is not relevant or outdated by sturkmen
close date 2020-10-06 23:24:49.310548

Comments

You may have to post the entire code before we can look at the cause of abort. As per your message, it seems like an error on passing a pointer to boost library.

unxnut gravatar imageunxnut ( 2014-07-23 06:56:43 -0600 )edit

I just add the entire code

ROSpioneer gravatar imageROSpioneer ( 2014-07-23 07:22:15 -0600 )edit

You are getting compilation errors. The compiler is unable to find the header files based on what you posted. You will need to locate those files and add their location in project properties.

unxnut gravatar imageunxnut ( 2014-07-23 08:24:35 -0600 )edit