Code Monkey home page Code Monkey logo

Comments (28)

yan99033 avatar yan99033 commented on September 28, 2024

trace_dir is used in the original SVO code to evaluate the timing, errors, and the number of tracked points in the SVO. It is a csv file saved in the trace_dir for performance evaluation.

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

trace_dir is used in the original SVO code to evaluate the timing, errors, and the number of tracked points in the SVO. It is a csv file saved in the trace_dir for performance evaluation.

So the trace_dir isn't the cause of exit code -6 ? Have you met the error?

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

I didn't have this error. Try to change your trace_dir to "/home/fight/results"

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

I didn't have this error. Try to change your trace_dir to "/home/fight/results"

I‘ve changed it but still have this error. Could you show me your example of Directories?
I saved depth_2.npy in the 'disparity' folder.

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

I didn't have this error. Try to change your trace_dir to "/home/fight/results"

Hi,sorry for interrupting you again and again,but your work is really important to me.
I still have trouble when I type the code 'roslaunch svo_ros kittiOffline00-02.launch'.
Do I need to input the ROS_MASTER_URL and ROS_IP?
I don't know why I can't recurrent your code.
I really need your help ,thank you!

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

I see your problem. You shouldn't provide the full directory in "image_folder" and "depth_folder".

sequence_path: "/home/fight/ORB_SLAM2/dataset/sequences/02"
image_folder: "image_2"
depth_folder: "disp_image_2_modelcity2kitti"

Make sure that you have the timestamp file ("/home/fight/ORB_SLAM2/dataset/sequences/02/times.txt").

Also, make sure that the depth maps (numpy files) are saved in "/home/fight/ORB_SLAM2/dataset/sequences/02/disp_image_2_modelcity2kitti/" with the filenames of depth_0.npy, depth_1.npy, depth_2.npy, ...

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

I see your problem. You shouldn't provide the full directory in "image_folder" and "depth_folder".

sequence_path: "/home/fight/ORB_SLAM2/dataset/sequences/02"
image_folder: "image_2"
depth_folder: "disp_image_2_modelcity2kitti"

Make sure that you have the timestamp file ("/home/fight/ORB_SLAM2/dataset/sequences/02/times.txt").

Also, make sure that the depth maps (numpy files) are saved in "/home/fight/ORB_SLAM2/dataset/sequences/02/disp_image_2_modelcity2kitti/" with the filenames of depth_0.npy, depth_1.npy, depth_2.npy, ...

Thanks a lot!
I found that my problem is my opencv_version.
Now I can start the program but get the exit code -11.I think I will make it.

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

我看到你的问题。您不应该在“image_folder”和“depth_folder”中提供完整目录。

sequence_path:“/ home / fight / ORB_SLAM2 / dataset / sequences / 02”
image_folder:“image_2”
depth_folder:“disp_image_2_modelcity2kitti”

确保您有时间戳文件(“/home/fight/ORB_SLAM2/dataset/sequences/02/times.txt”)。

此外,请确保深度贴图(numpy文件)保存在“/ home / fight / ORB_SLAM2 / dataset / sequences / 02 / disp_image_2_modelcity2kitti /”中,文件名为depth_0.npy,depth_1.npy,depth_2.npy,.. 。

I've met a new question. I Modify the monodepth_main.py and get several .npy files. My .npy size is 1MB and the program can run about several seconds then the program broke with several errors and output exit code -11.
I test the monodepth_simple.py I find that the result of .npy size is about 500KB,so I modify the monodepth_main.py again and finally I get the same size of .npy. But when I put thousands of .npy into the disp_image_2_modelcity2kitti/ and type the code 'roslaunch svo_ros kittiOffline00-02.launch'. The program doesn't run and output exit code -6.
So could you tell me what's the size of your .npy?
Thanks a lot.

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

The file size for each .npy file is about 3.6mb. Can you show me your monodepth_main.py file? I would like to know how you save those files.

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

Hey, I have uploaded the first 100 depth maps in KITTI sequence 00 for you to do a quick test. Hope that you can identify the real problem in your code. Click here

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

Hey, I have uploaded the first 100 depth maps in KITTI sequence 00 for you to do a quick test. Hope that you can identify the real problem in your code. Click here

I can use your depth maps to run the program,finally!
So I can make a conclusion that I didn't modify the monodepth_main.py right.
I imitate the monodepth_simple.py but cannot get the same size of .npy file like yours.
I use the pretrained model 'city2kitti'.
I only modify the #RESTORE code.
2019-04-03 14-00-37屏幕截图

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

Hey, I have uploaded the first 100 depth maps in KITTI sequence 00 for you to do a quick test. Hope that you can identify the real problem in your code. Click here

I can use your depth maps to run the program,finally!
So I can make a conclusion that I didn't modify the monodepth_main.py right.
I imitate the monodepth_simple.py but cannot get the same size of .npy file like yours.
I use the pretrained model 'city2kitti'.
I only modify the #RESTORE code.
2019-04-03 14-00-37屏幕截图

The saving step looks correct. However, you should convert the disparity map (from network output) to depth map using the following equation:

depth = (718.856 * 0.54 / 1241) / disp # where 0.54 is the stereo baseline distance, 718.856 the focal length and 1241 the image width

Therefore, here is how the code should look like

SCALE = 0.3128 # (718.856 * 0.54 / 1241)

for step in range(num_test_samples):

disp = sess.run(model.disp_left_est[0])
disp = post_process_disparity(disps.squeeze())

# If you wish to resize the disparity map back to original size
# disp = cv2.resize(disp, (1241, 376), interpolation=cv2.INTER_LINEAR)

# Convert disparity to depth
depth = SCALE / disp

np.save(output_directory + '/' + 'depth_' + str(step) + '.npy', depth)

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

Hey, I have uploaded the first 100 depth maps in KITTI sequence 00 for you to do a quick test. Hope that you can identify the real problem in your code. Click here

I can use your depth maps to run the program,finally!
So I can make a conclusion that I didn't modify the monodepth_main.py right.
I imitate the monodepth_simple.py but cannot get the same size of .npy file like yours.
I use the pretrained model 'city2kitti'.
I only modify the #RESTORE code.
2019-04-03 14-00-37屏幕截图

The saving step looks correct. However, you should convert the disparity map (from network output) to depth map using the following equation:

depth = (718.856 * 0.54 / 1241) / disp # where 0.54 is the stereo baseline distance, 718.856 the focal length and 1241 the image width

Therefore, here is how the code should look like

SCALE = 0.3128 # (718.856 * 0.54 / 1241)

for step in range(num_test_samples):

disp = sess.run(model.disp_left_est[0])
disp = post_process_disparity(disps.squeeze())

# If you wish to resize the disparity map back to original size
# disp = cv2.resize(disp, (1241, 376), interpolation=cv2.INTER_LINEAR)

# Convert disparity to depth
depth = SCALE / disp

np.save(output_directory + '/' + 'depth_' + str(step) + '.npy', depth)

THANK!
FINALLY I CAN RUN THE PROGRAM WITH MY .NPY FILES.

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

@kinfeparty I am glad that you finally get it working.

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kinfeparty @yan99033 Can you provide your modified monodepth_main.py. I meet the same error. In addition, can you provide the new address about upload data, the address is invalid.

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

I encountered a new error about roslaunch.
My settings about vo_kitti.yaml is

Directories

sequence_path: "/home/SENSETIME/chenchang1/data/dataset/sequences/00"
image_folder: "image_2" # /media/user/path/to/kitti/dataset/sequences/00/image_2/
depth_folder: "out_depth" # /media/user/path/to/kitti/dataset/sequences/00/disp_image_2_modelcity2kitti/

Trace (Log)

trace_dir: "/home/SENSETIME/chenchang1/catkin_ws/src/CNN-SVO/results"
My opencv is 3.3.1.
The error is:
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7f77d3f177e5]
/lib/x86_64-linux-gnu/libc.so.6(+0x8037a)[0x7f77d3f2037a]
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7f77d3f2453c]
/opt/ros/kinetic/lib/libg2o_types_sba.so(_ZN3g2o26EdgeProjectP2MC_IntrinsicsD0Ev+0x2d)[0x7f77cf515dad]
/opt/ros/kinetic/lib/libg2o_core.so(_ZN3g2o7Factory12registerTypeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS_32AbstractHyperGraphElementCreatorE+0x33f)[0x7f77cf995f8f]
/opt/ros/kinetic/lib/libg2o_types_sba.so(+0x1db2a)[0x7f77cf50fb2a]
/lib64/ld-linux-x86-64.so.2(+0x106ca)[0x7f77d733d6ca]
/lib64/ld-linux-x86-64.so.2(+0x107db)[0x7f77d733d7db]
/lib64/ld-linux-x86-64.so.2(+0xc6a)[0x7f77d732dc6a]
======= Memory map: ========
00400000-0044b000 r-xp 00000000 08:02 30030540 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/svo_ros/vo_monodepth_offline
0064a000-0064b000 r--p 0004a000 08:02 30030540 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/svo_ros/vo_monodepth_offline
0064b000-0064c000 rw-p 0004b000 08:02 30030540 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/svo_ros/vo_monodepth_offline
0064c000-0064d000 rw-p 00000000 00:00 0
014dd000-018e3000 rw-p 00000000 00:00 0 [heap]
7f779c000000-7f779c021000 rw-p 00000000 00:00 0
7f779c021000-7f77a0000000 ---p 00000000 00:00 0
7f77a25dc000-7f77a85dc000 rw-p 00000000 00:00 0
7f77a85dc000-7f77a85dd000 ---p 00000000 00:00 0
7f77a85dd000-7f77a8ddd000 rwxp 00000000 00:00 0
7f77a8ddd000-7f77a8dde000 ---p 00000000 00:00 0
7f77a8dde000-7f77a95de000 rwxp 00000000 00:00 0
7f77a95de000-7f77ab5de000 rw-p 00000000 00:00 0
7f77ab5de000-7f77ab5df000 ---p 00000000 00:00 0
7f77ab5df000-7f77abddf000 rwxp 00000000 00:00 0
7f77abddf000-7f77adddf000 rw-p 00000000 00:00 0
7f77adddf000-7f77adde0000 ---p 00000000 00:00 0
7f77adde0000-7f77ae5e0000 rwxp 00000000 00:00 0
7f77ae5e0000-7f77b05e0000 rw-p 00000000 00:00 0
7f77b05e0000-7f77b05e1000 ---p 00000000 00:00 0
7f77b05e1000-7f77b0de1000 rwxp 00000000 00:00 0
7f77b0de1000-7f77bade1000 rw-p 00000000 00:00 0
7f77bade1000-7f77bade2000 ---p 00000000 00:00 0
7f77bade2000-7f77bb5e2000 rwxp 00000000 00:00 0
7f77bb5e2000-7f77bb5e3000 ---p 00000000 00:00 0
7f77bb5e3000-7f77bbde3000 rwxp 00000000 00:00 0
7f77bbde3000-7f77bbde4000 ---p 00000000 00:00 0
7f77bbde4000-7f77bc5e4000 rwxp 00000000 00:00 0
7f77bc5e4000-7f77bc5e5000 ---p 00000000 00:00 0
7f77bc5e5000-7f77bcde5000 rwxp 00000000 00:00 0
7f77bcde5000-7f77bcde6000 ---p 00000000 00:00 0
7f77bcde6000-7f77bd5e6000 rwxp 00000000 00:00 0
7f77bd5e6000-7f77bd5e7000 ---p 00000000 00:00 0
7f77bd5e7000-7f77bdde7000 rwxp 00000000 00:00 0
7f77bdde7000-7f77bddec000 r-xp 00000000 08:02 532241 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f77bddec000-7f77bdfeb000 ---p 00005000 08:02 532241 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f77bdfeb000-7f77bdfec000 r--p 00004000 08:02 532241 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f77bdfec000-7f77bdfed000 rw-p 00005000 08:02 532241 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f77bdfed000-7f77bdfef000 r-xp 00000000 08:02 532230 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f77bdfef000-7f77be1ef000 ---p 00002000 08:02 532230 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f77be1ef000-7f77be1f0000 r--p 00002000 08:02 532230 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f77be1f0000-7f77be1f1000 rw-p 00003000 08:02 532230 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f77be1f1000-7f77be1f3000 r-xp 00000000 08:02 11273162 /lib/x86_64-linux-gnu/libutil-2.23.so
7f77be1f3000-7f77be3f2000 ---p 00002000 08:02 11273162 /lib/x86_64-linux-gnu/libutil-2.23.so
7f77be3f2000-7f77be3f3000 r--p 00001000 08:02 11273162 /lib/x86_64-linux-gnu/libutil-2.23.so
7f77be3f3000-7f77be3f4000 rw-p 00002000 08:02 11273162 /lib/x86_64-linux-gnu/libutil-2.23.so
7f77be3f4000-7f77be432000 r-xp 00000000 08:02 525409 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
7f77be432000-7f77be631000 ---p 0003e000 08:02 525409 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
7f77be631000-7f77be632000 r--p 0003d000 08:02 525409 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
7f77be632000-7f77be633000 rw-p 0003e000 08:02 525409 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
7f77be633000-7f77be644000 r-xp 00000000 08:02 532243 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f77be644000-7f77be843000 ---p 00011000 08:02 532243 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f77be843000-7f77be844000 r--p 00010000 08:02 532243 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f77be844000-7f77be845000 rw-p 00011000 08:02 532243 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f77be845000-7f77bf91e000 r-xp 00000000 08:02 791725 /usr/lib/nvidia-396/libnvidia-glcore.so.396.54
7f77bf91e000-7f77bf93f000 rwxp 010d9000 08:02 791725 /usr/lib/nvidia-396/libnvidia-glcore.so.396.54
7f77bf93f000-7f77c000f000 r-xp 010fa000 08:02 791725 /usr/lib/nvidia-396/libnvidia-glcore.so.396.54
7f77c000f000-7f77c020f000 ---p 017ca000 08:02 791725 /usr/lib/nvidia-396/libnvidia-glcore.so.396.54
7f77c020f000-7f77c0511000 rw-p 017ca000 08:02 791725 /usr/lib/nvidia-396/libnvidia-glcore.so.396.54
7f77c0511000-7f77c052b000 rw-p 00000000 00:00 0
7f77c052b000-7f77c052e000 r-xp 00000000 08:02 919637 /usr/lib/nvidia-396/tls/libnvidia-tls.so.396.54
7f77c052e000-7f77c072e000 ---p 00003000 08:02 919637 /usr/lib/nvidia-396/tls/libnvidia-tls.so.396.54
7f77c072e000-7f77c072f000 rw-p 00003000 08:02 919637 /usr/lib/nvidia-396/tls/libnvidia-tls.so.396.54
7f77c072f000-7f77c0753000 r-xp 00000000 08:02 532795 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f77c0753000-7f77c0952000 ---p 00024000 08:02 532795 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f77c0952000-7f77c0954000 r--p 00023000 08:02 532795 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f77c0954000-7f77c0955000 rw-p 00025000 08:02 532795 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.0.1
7f77c0955000-7f77c09f9000 r-xp 00000000 08:02 531327 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f77c09f9000-7f77c0bf8000 ---p 000a4000 08:02 531327 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f77c0bf8000-7f77c0bfe000 r--p 000a3000 08:02 531327 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f77c0bfe000-7f77c0bff000 rw-p 000a9000 08:02 531327 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f77c0bff000-7f77c0c20000 r-xp 00000000 08:02 533654 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f77c0c20000-7f77c0e1f000 ---p 00021000 08:02 533654 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f77c0e1f000-7f77c0e20000 r--p 00020000 08:02 533654 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f77c0e20000-7f77c0e21000 rw-p 00021000 08:02 533654 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f77c0e21000-7f77c0e28000 r-xp 00000000 08:02 532620 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f77c0e28000-7f77c1027000 ---p 00007000 08:02 532620 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f77c1027000-7f77c1028000 r--p 00006000 08:02 532620 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f77c1028000-7f77c1029000 rw-p 00007000 08:02 532620 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f77c1029000-7f77c131b000 r-xp 00000000 08:02 524554 /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0
7f77c131b000-7f77c151b000 ---p 002f2000 08:02 524554 /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0
7f77c151b000-7f77c151d000 r--p 002f2000 08:02 524554 /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0
7f77c151d000-7f77c1594000 rw-p 002f4000 08:02 524554 /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0
7f77c1594000-7f77c15b7000 rw-p 00000000 00:00 0
7f77c15b7000-7f77c1631000 r-xp 00000000 08:02 536029 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.58.0
7f77c1631000-7f77c1831000 ---p 0007a000 08:02 536029 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.58.0
7f77c1831000-7f77c1834000 r--p 0007a000 08:02 536029 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.58.0
7f77c1834000-7f77c1835000 rw-p 0007d000 08:02 536029 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.58.0
7f77c1835000-7f77c1849000 r-xp 00000000 08:02 531532 /usr/lib/x86_64-linux-gnu/libtinyxml.so.2.6.2
7f77c1849000-7f77c1a49000 ---p 00014000 08:02 531532 /usr/lib/x86_64-linux-gnu/libtinyxml.so.2.6.2
7f77c1a49000-7f77c1a4a000 r--p 00014000 08:02 531532 /usr/lib/x86_64-linux-gnu/libtinyxml.so.2.6.2
7f77c1a4a000-7f77c1a4b000 rw-p 00015000 08:02 531532 /usr/lib/x86_64-linux-gnu/libtinyxml.so.2.6.2
7f77c1a4b000-7f77c1ab9000 r-xp 00000000 08:02 11276987 /lib/x86_64-linux-gnu/libpcre.so.3.13.2
7f77c1ab9000-7f77c1cb9000 ---p 0006e000 08:02 11276987 /lib/x86_64-linux-gnu/libpcre.so.3.13.2
7f77c1cb9000-7f77c1cba000 r--p 0006e000 08:02 11276987 /lib/x86_64-linux-gnu/libpcre.so.3.13.2
7f77c1cba000-7f77c1cbb000 rw-p 0006f000 08:02 11276987 /lib/x86_64-linux-gnu/libpcre.so.3.13.2
7f77c1cbb000-7f77c3571000 r-xp 00000000 08:02 532924 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1
7f77c3571000-7f77c3770000 ---p 018b6000 08:02 532924 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1
7f77c3770000-7f77c3771000 r--p 018b5000 08:02 532924 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1
7f77c3771000-7f77c3772000 rw-p 018b6000 08:02 532924 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1
7f77c3772000-7f77c3798000 r-xp 00000000 08:02 11272406 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f77c3798000-7f77c3998000 ---p 00026000 08:02 11272406 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f77c3998000-7f77c399a000 r--p 00026000 08:02 11272406 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f77c399a000-7f77c399b000 rw-p 00028000 08:02 11272406 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f77c399b000-7f77c39a4000 r-xp 00000000 08:02 11273154 /lib/x86_64-linux-gnu/libcrypt-2.23.so
7f77c39a4000-7f77c3ba3000 ---p 00009000 08:02 11273154 /lib/x86_64-linux-gnu/libcrypt-2.23.so
7f77c3ba3000-7f77c3ba4000 r--p 00008000 08:02 11273154 /lib/x86_64-linux-gnu/libcrypt-2.23.so
7f77c3ba4000-7f77c3ba5000 rw-p 00009000 08:02 11273154 /lib/x86_64-linux-gnu/libcrypt-2.23.so
7f77c3ba5000-7f77c3bd3000 rw-p 00000000 00:00 0
7f77c3bd3000-7f77c3bd7000 r-xp 00000000 08:02 11272395 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f77c3bd7000-7f77c3dd6000 ---p 00004000 08:02 11272395 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f77c3dd6000-7f77c3dd7000 r--p 00003000 08:02 11272395 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f77c3dd7000-7f77c3dd8000 rw-p 00004000 08:02 11272395 /lib/x86_64-linux-gnu/libuuid.so.1.3.0
7f77c3dd8000-7f77c3f01000 r-xp 00000000 08:02 534754 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
7f77c3f01000-7f77c4100000 ---p 00129000 08:02 534754 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
7f77c4100000-7f77c4101000 r--p 00128000 08:02 534754 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
7f77c4101000-7f77c4103000 rw-p 00129000 08:02 534754 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
7f77c4103000-7f77c5f67000 r-xp 00000000 08:02 533370 /usr/lib/libopenblasp-r0.2.18.so
7f77c5f67000-7f77c6166000 ---p 01e64000 08:02 533370 /usr/lib/libopenblasp-r0.2.18.so
7f77c6166000-7f77c616c000 r--p 01e63000 08:02 533370 /usr/lib/libopenblasp-r0.2.18.so
7f77c616c000-7f77c617e000 rw-p 01e69000 08:02 533370 /usr/lib/libopenblasp-r0.2.18.so
7f77c617e000-7f77c6197000 rw-p 00000000 00:00 0
7f77c6197000-7f77c61fb000 r-xp 00000000 08:02 533207 /usr/lib/x86_64-linux-gnu/libpcre16.so.3.13.2
7f77c61fb000-7f77c63fb000 ---p 00064000 08:02 533207 /usr/lib/x86_64-linux-gnu/libpcre16.so.3.13.2
7f77c63fb000-7f77c63fc000 r--p 00064000 08:02 533207 /usr/lib/x86_64-linux-gnu/libpcre16.so.3.13.2
7f77c63fc000-7f77c63fd000 rw-p 00065000 08:02 533207 /usr/lib/x86_64-linux-gnu/libpcre16.so.3.13.2
7f77c63fd000-7f77c64c6000 r-xp 00000000 08:02 791708 /usr/lib/nvidia-396/libGL.so.396.54
7f77c64c6000-7f77c64fa000 rwxp 000c9000 08:02 791708 /usr/lib/nvidia-396/libGL.so.396.54
7f77c64fa000-7f77c650e000 r-xp 000fd000 08:02 791708 /usr/lib/nvidia-396/libGL.so.396.54
7f77c650e000-7f77c670e000 ---p 00111000 08:02 791708 /usr/lib/nvidia-396/libGL.so.396.54
7f77c670e000-7f77c6733000 rw-p 00111000 08:02 791708 /usr/lib/nvidia-396/libGL.so.396.54
7f77c6733000-7f77c673a000 rw-p 00000000 00:00 0
7f77c673a000-7f77c6796000 r-xp 00000000 08:02 532883 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.10000.1
7f77c6796000-7f77c6996000 ---p 0005c000 08:02 532883 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.10000.1
7f77c6996000-7f77c6997000 r--p 0005c000 08:02 532883 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.10000.1
7f77c6997000-7f77c6998000 rw-p 0005d000 08:02 532883 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.10000.1
7f77c6998000-7f77c6acd000 r-xp 00000000 08:02 524596 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f77c6acd000-7f77c6ccd000 ---p 00135000 08:02 524596 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f77c6ccd000-7f77c6cce000 r--p 00135000 08:02 524596 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f77c6cce000-7f77c6cd2000 rw-p 00136000 08:02 524596 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f77c6cd2000-7f77c6de1000 r-xp 00000000 08:02 11272400 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2
7f77c6de1000-7f77c6fe0000 ---p 0010f000 08:02 11272400 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2
7f77c6fe0000-7f77c6fe1000 r--p 0010e000 08:02 11272400 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2
7f77c6fe1000-7f77c6fe2000 rw-p 0010f000 08:02 11272400 /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2
7f77c6fe2000-7f77c6fe3000 rw-p 00000000 00:00 0
7f77c6fe3000-7f77c7035000 r-xp 00000000 08:02 528142 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.2
7f77c7035000-7f77c7234000 ---p 00052000 08:02 528142 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.2
7f77c7234000-7f77c7235000 r--p 00051000 08:02 528142 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.2
7f77c7235000-7f77c7236000 rw-p 00052000 08:02 528142 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.2
7f77c7236000-7f77c7254000 r-xp 00000000 08:02 29858963 /opt/ros/kinetic/lib/libactionlib.so
7f77c7254000-7f77c7453000 ---p 0001e000 08:02 29858963 /opt/ros/kinetic/lib/libactionlib.so
7f77c7453000-7f77c7455000 r--p 0001d000 08:02 29858963 /opt/ros/kinetic/lib/libactionlib.so
7f77c7455000-7f77c7456000 rw-p 0001f000 08:02 29858963 /opt/ros/kinetic/lib/libactionlib.so
7f77c7456000-7f77c7497000 r-xp 00000000 08:02 29858908 /opt/ros/kinetic/lib/librospack.so
7f77c7497000-7f77c7696000 ---p 00041000 08:02 29858908 /opt/ros/kinetic/lib/librospack.so
7f77c7696000-7f77c7697000 r--p 00040000 08:02 29858908 /opt/ros/kinetic/lib/librospack.so
7f77c7697000-7f77c7698000 rw-p 00041000 08:02 29858908 /opt/ros/kinetic/lib/librospack.so
7f77c7698000-7f77c77e7000 r-xp 00000000 08:02 621811 /usr/lib/libPocoFoundation.so.9
7f77c77e7000-7f77c79e7000 ---p 0014f000 08:02 621811 /usr/lib/libPocoFoundation.so.9
7f77c79e7000-7f77c79f0000 r--p 0014f000 08:02 621811 /usr/lib/libPocoFoundation.so.9
7f77c79f0000-7f77c79f3000 rw-p 00158000 08:02 621811 /usr/lib/libPocoFoundation.so.9
7f77c79f3000-7f77c79f4000 rw-p 00000000 00:00 0
7f77c79f4000-7f77c7b73000 r-xp 00000000 08:02 532938 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1
7f77c7b73000-7f77c7d73000 ---p 0017f000 08:02 532938 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1
7f77c7d73000-7f77c7d83000 r--p 0017f000 08:02 532938 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1
7f77c7d83000-7f77c7d84000 rw-p 0018f000 08:02 532938 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1
7f77c7d84000-7f77c7d88000 rw-p 00000000 00:00 0
7f77c7d88000-7f77c7fda000 r-xp 00000000 08:02 532926 /usr/lib/x86_64-linux-gnu/libicui18n.so.55.1
7f77c7fda000-7f77c81da000 ---p 00252000 08:02 532926 /usr/lib/x86_64-linux-gnu/libicui18n.so.55.1
7f77c81da000-7f77c81e9000 r--p 00252000 08:02 532926 /usr/lib/x86_64-linux-gnu/libicui18n.so.55.1
7f77c81e9000-7f77c81ea000 rw-p 00261000 08:02 532926 /usr/lib/x86_64-linux-gnu/libicui18n.so.55.1
7f77c81ea000-7f77c8210000 r-xp 00000000 08:02 621491 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.4
7f77c8210000-7f77c840f000 ---p 00026000 08:02 621491 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.4
7f77c840f000-7f77c8410000 r--p 00025000 08:02 621491 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.4
7f77c8410000-7f77c8411000 rw-p 00026000 08:02 621491 /usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.5.4
7f77c8411000-7f77c8442000 r-xp 00000000 08:02 621479 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.2
7f77c8442000-7f77c8641000 ---p 00031000 08:02 621479 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.2
7f77c8641000-7f77c8642000 r--p 00030000 08:02 621479 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.2
7f77c8642000-7f77c8643000 rw-p 00031000 08:02 621479 /usr/lib/x86_64-linux-gnu/libapr-1.so.0.5.2
7f77c8643000-7f77c864e000 r-xp 00000000 08:02 532978 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f77c864e000-7f77c884d000 ---p 0000b000 08:02 532978 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f77c884d000-7f77c884e000 r--p 0000a000 08:02 532978 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f77c884e000-7f77c8851000 rw-p 0000b000 08:02 532978 /usr/lib/x86_64-linux-gnu/libjbig.so.0
7f77c8851000-7f77c8872000 r-xp 00000000 08:02 11276925 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f77c8872000-7f77c8a71000 ---p 00021000 08:02 11276925 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f77c8a71000-7f77c8a72000 r--p 00020000 08:02 11276925 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f77c8a72000-7f77c8a73000 rw-p 00021000 08:02 11276925 /lib/x86_64-linux-gnu/liblzma.so.5.0.0
7f77c8a73000-7f77c8aca000 r-xp 00000000 08:02 29892383 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_flann3.so.3.3.1
7f77c8aca000-7f77c8cca000 ---p 00057000 08:02 29892383 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_flann3.so.3.3.1
7f77c8cca000-7f77c8ccc000 r--p 00057000 08:02 29892383 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_flann3.so.3.3.1
7f77c8ccc000-7f77c8ccd000 rw-p 00059000 08:02 29892383 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_flann3.so.3.3.1
7f77c8ccd000-7f77c8da7000 r-xp 00000000 08:02 29892364 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_features2d3.so.3.3.1
7f77c8da7000-7f77c8fa7000 ---p 000da000 08:02 29892364 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_features2d3.so.3.3.1
7f77c8fa7000-7f77c8fac000 r--p 000da000 08:02 29892364 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_features2d3.so.3.3.1
7f77c8fac000-7f77c8fae000 rw-p 000df000 08:02 29892364 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_features2d3.so.3.3.1
7f77c8fae000-7f77c8faf000 rw-p 00000000 00:00 0
7f77c8faf000-7f77c8fb1000 r-xp 00000000 08:02 533404 /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.4.4.6
7f77c8fb1000-7f77c91b0000 ---p 00002000 08:02 533404 /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.4.4.6
7f77c91b0000-7f77c91b1000 r--p 00001000 08:02 533404 /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.4.4.6
7f77c91b1000-7f77c91b2000 rw-p 00002000 08:02 533404 /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.4.4.6
7f77c91b2000-7f77c91bb000 r-xp 00000000 08:02 530797 /usr/lib/x86_64-linux-gnu/libccolamd.so.2.9.1
7f77c91bb000-7f77c93bb000 ---p 00009000 08:02 530797 /usr/lib/x86_64-linux-gnu/libccolamd.so.2.9.1
7f77c93bb000-7f77c93bc000 r--p 00009000 08:02 530797 /usr/lib/x86_64-linux-gnu/libccolamd.so.2.9.1
7f77c93bc000-7f77c93bd000 rw-p 0000a000 08:02 530797 /usr/lib/x86_64-linux-gnu/libccolamd.so.2.9.1
7f77c93bd000-7f77c93c6000 r-xp 00000000 08:02 530796 /usr/lib/x86_64-linux-gnu/libcamd.so.2.4.1
7f77c93c6000-7f77c95c5000 ---p 00009000 08:02 530796 /usr/lib/x86_64-linux-gnu/libcamd.so.2.4.1
7f77c95c5000-7f77c95c6000 r--p 00008000 08:02 530796 /usr/lib/x86_64-linux-gnu/libcamd.so.2.4.1
7f77c95c6000-7f77c95c7000 rw-p 00009000 08:02 530796 /usr/lib/x86_64-linux-gnu/libcamd.so.2.4.1
7f77c95c7000-7f77c95cd000 r-xp 00000000 08:02 532455 /usr/lib/x86_64-linux-gnu/libcolamd.so.2.9.1
7f77c95cd000-7f77c97cc000 ---p 00006000 08:02 532455 /usr/lib/x86_64-linux-gnu/libcolamd.so.2.9.1
7f77c97cc000-7f77c97cd000 r--p 00005000 08:02 532455 /usr/lib/x86_64-linux-gnu/libcolamd.so.2.9.1
7f77c97cd000-7f77c97ce000 rw-p 00006000 08:02 532455 /usr/lib/x86_64-linux-gnu/libcolamd.so.2.9.1
7f77c97ce000-7f77c97d6000 r-xp 00000000 08:02 526325 /usr/lib/x86_64-linux-gnu/libamd.so.2.4.1
7f77c97d6000-7f77c99d5000 ---p 00008000 08:02 526325 /usr/lib/x86_64-linux-gnu/libamd.so.2.4.1
7f77c99d5000-7f77c99d6000 r--p 00007000 08:02 526325 /usr/lib/x86_64-linux-gnu/libamd.so.2.4.1
7f77c99d6000-7f77c99d7000 rw-p 00008000 08:02 526325 /usr/lib/x86_64-linux-gnu/libamd.so.2.4.1
7f77c99d7000-7f77c9fb7000 r-xp 00000000 08:02 662811 /usr/lib/openblas-base/liblapack.so.3
7f77c9fb7000-7f77ca1b7000 ---p 005e0000 08:02 662811 /usr/lib/openblas-base/liblapack.so.3
7f77ca1b7000-7f77ca1b8000 r--p 005e0000 08:02 662811 /usr/lib/openblas-base/liblapack.so.3
7f77ca1b8000-7f77ca1ba000 rw-p 005e1000 08:02 662811 /usr/lib/openblas-base/liblapack.so.3
7f77ca1ba000-7f77ca215000 r-xp 00000000 08:02 662810 /usr/lib/openblas-base/libblas.so.3
7f77ca215000-7f77ca415000 ---p 0005b000 08:02 662810 /usr/lib/openblas-base/libblas.so.3
7f77ca415000-7f77ca41a000 r--p 0005b000 08:02 662810 /usr/lib/openblas-base/libblas.so.3
7f77ca41a000-7f77ca41b000 rw-p 00060000 08:02 662810 /usr/lib/openblas-base/libblas.so.3
7f77ca41b000-7f77ca8e0000 r-xp 00000000 08:02 529754 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1
7f77ca8e0000-7f77ca8ec000 r--p 004c4000 08:02 529754 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1
7f77ca8ec000-7f77ca8ed000 rw-p 004d0000 08:02 529754 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1
7f77ca8ed000-7f77ca8f1000 rw-p 00000000 00:00 0
7f77ca8f1000-7f77cae18000 r-xp 00000000 08:02 530055 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1
7f77cae18000-7f77cae19000 ---p 00527000 08:02 530055 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1
7f77cae19000-7f77cae2e000 r--p 00527000 08:02 530055 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1
7f77cae2e000-7f77cae34000 rw-p 0053c000 08:02 530055 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.5.1
7f77cae34000-7f77cae39000 rw-p 00000000 00:00 0
7f77cae39000-7f77cb492000 r-xp 00000000 08:02 530060 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1
7f77cb492000-7f77cb4c0000 r--p 00658000 08:02 530060 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1
7f77cb4c0000-7f77cb4c5000 rw-p 00686000 08:02 530060 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.5.1
7f77cb4c5000-7f77cb4c6000 rw-p 00000000 00:00 0
7f77cb4c6000-7f77cb4f8000 r-xp 00000000 08:02 29859146 /opt/ros/kinetic/lib/libtf2.so
7f77cb4f8000-7f77cb6f7000 ---p 00032000 08:02 29859146 /opt/ros/kinetic/lib/libtf2.so
7f77cb6f7000-7f77cb6f9000 r--p 00031000 08:02 29859146 /opt/ros/kinetic/lib/libtf2.so
7f77cb6f9000-7f77cb6fa000 rw-p 00033000 08:02 29859146 /opt/ros/kinetic/lib/libtf2.so
7f77cb6fa000-7f77cb79f000 r-xp 00000000 08:02 29859150 /opt/ros/kinetic/lib/libtf2_ros.so
7f77cb79f000-7f77cb99f000 ---p 000a5000 08:02 29859150 /opt/ros/kinetic/lib/libtf2_ros.so
7f77cb99f000-7f77cb9a3000 r--p 000a5000 08:02 29859150 /opt/ros/kinetic/lib/libtf2_ros.so
7f77cb9a3000-7f77cb9a5000 rw-p 000a9000 08:02 29859150 /opt/ros/kinetic/lib/libtf2_ros.so
7f77cb9a5000-7f77cb9a9000 r-xp 00000000 08:02 621341 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.2
7f77cb9a9000-7f77cbba8000 ---p 00004000 08:02 621341 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.2
7f77cbba8000-7f77cbba9000 r--p 00003000 08:02 621341 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.2
7f77cbba9000-7f77cbbaa000 rw-p 00004000 08:02 621341 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.2
7f77cbbaa000-7f77cbbba000 r-xp 00000000 08:02 29858909 /opt/ros/kinetic/lib/libroslib.so
7f77cbbba000-7f77cbdba000 ---p 00010000 08:02 29858909 /opt/ros/kinetic/lib/libroslib.so
7f77cbdba000-7f77cbdbb000 r--p 00010000 08:02 29858909 /opt/ros/kinetic/lib/libroslib.so
7f77cbdbb000-7f77cbdbc000 rw-p 00011000 08:02 29858909 /opt/ros/kinetic/lib/libroslib.so
7f77cbdbc000-7f77cbdde000 r-xp 00000000 08:02 29859063 /opt/ros/kinetic/lib/libclass_loader.so
7f77cbdde000-7f77cbfde000 ---p 00022000 08:02 29859063 /opt/ros/kinetic/lib/libclass_loader.so
7f77cbfde000-7f77cbfdf000 r--p 00022000 08:02 29859063 /opt/ros/kinetic/lib/libclass_loader.so
7f77cbfdf000-7f77cbfe0000 rw-p 00023000 08:02 29859063 /opt/ros/kinetic/lib/libclass_loader.so
7f77cbfe0000-7f77cbff1000 r-xp 00000000 08:02 621353 /usr/lib/x86_64-linux-gnu/libtinyxml2.so.2.2.0
7f77cbff1000-7f77cc1f1000 ---p 00011000 08:02 621353 /usr/lib/x86_64-linux-gnu/libtinyxml2.so.2.2.0
7f77cc1f1000-7f77cc1f2000 r--p 00011000 08:02 621353 /usr/lib/x86_64-linux-gnu/libtinyxml2.so.2.2.0
7f77cc1f2000-7f77cc1f3000 rw-p 00012000 08:02 621353 /usr/lib/x86_64-linux-gnu/libtinyxml2.so.2.2.0
7f77cc1f3000-7f77cc1f7000 r-xp 00000000 08:02 29859056 /opt/ros/kinetic/lib/libmessage_filters.so
7f77cc1f7000-7f77cc3f6000 ---p 00004000 08:02 29859056 /opt/ros/kinetic/lib/libmessage_filters.so
7f77cc3f6000-7f77cc3f7000 r--p 00003000 08:02 29859056 /opt/ros/kinetic/lib/libmessage_filters.so
7f77cc3f7000-7f77cc3f8000 rw-p 00004000 08:02 29859056 /opt/ros/kinetic/lib/libmessage_filters.so
7f77cc3f8000-7f77cc4fb000 r-xp 00000000 08:02 535969 /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.58.0
7f77cc4fb000-7f77cc6fb000 ---p 00103000 08:02 535969 /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.58.0
7f77cc6fb000-7f77cc6ff000 r--p 00103000 08:02 535969 /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.58.0
7f77cc6ff000-7f77cc700000 rw-p 00107000 08:02 535969 /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.58.0
7f77cc700000-7f77cc8af000 r-xp 00000000 08:02 621771 /usr/lib/x86_64-linux-gnu/liblog4cxx.so.10.0.0
7f77cc8af000-7f77ccaae000 ---p 001af000 08:02 621771 /usr/lib/x86_64-linux-gnu/liblog4cxx.so.10.0.0
7f77ccaae000-7f77ccad4000 r--p 001ae000 08:02 621771 /usr/lib/x86_64-linux-gnu/liblog4cxx.so.10.0.0
7f77ccad4000-7f77ccad5000 rw-p 001d4000 08:02 621771 /usr/lib/x86_64-linux-gnu/liblog4cxx.so.10.0.0
7f77ccad5000-7f77ccad7000 rw-p 00000000 00:00 0
7f77ccad7000-7f77ccad8000 r-xp 00000000 08:02 29858894 /opt/ros/kinetic/lib/librosconsole_backend_interface.so
7f77ccad8000-7f77cccd7000 ---p 00001000 08:02 29858894 /opt/ros/kinetic/lib/librosconsole_backend_interface.so
7f77cccd7000-7f77cccd8000 r--p 00000000 08:02 29858894 /opt/ros/kinetic/lib/librosconsole_backend_interface.so
7f77cccd8000-7f77cccd9000 rw-p 00001000 08:02 29858894 /opt/ros/kinetic/lib/librosconsole_backend_interface.so
7f77cccd9000-7f77cccef000 r-xp 00000000 08:02 29858891 /opt/ros/kinetic/lib/librosconsole_log4cxx.so
7f77cccef000-7f77cceef000 ---p 00016000 08:02 29858891 /opt/ros/kinetic/lib/librosconsole_log4cxx.so
7f77cceef000-7f77ccef1000 r--p 00016000 08:02 29858891 /opt/ros/kinetic/lib/librosconsole_log4cxx.so
7f77ccef1000-7f77ccef2000 rw-p 00018000 08:02 29858891 /opt/ros/kinetic/lib/librosconsole_log4cxx.so
7f77ccef2000-7f77ccf09000 r-xp 00000000 08:02 532380 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0
7f77ccf09000-7f77cd108000 ---p 00017000 08:02 532380 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0
7f77cd108000-7f77cd109000 r--p 00016000 08:02 532380 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0
7f77cd109000-7f77cd10a000 rw-p 00017000 08:02 532380 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0
7f77cd10a000-7f77cd110000 r-xp 00000000 08:02 535946 /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.58.0
7f77cd110000-7f77cd310000 ---p 00006000 08:02 535946 /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.58.0
7f77cd310000-7f77cd311000 r--p 00006000 08:02 535946 /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.58.0
7f77cd311000-7f77cd312000 rw-p 00007000 08:02 535946 /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.58.0
7f77cd312000-7f77cd319000 r-xp 00000000 08:02 29858880 /opt/ros/kinetic/lib/libcpp_common.so
7f77cd319000-7f77cd518000 ---p 00007000 08:02 29858880 /opt/ros/kinetic/lib/libcpp_common.so
7f77cd518000-7f77cd519000 r--p 00006000 08:02 29858880 /opt/ros/kinetic/lib/libcpp_common.so
7f77cd519000-7f77cd51a000 rw-p 00007000 08:02 29858880 /opt/ros/kinetic/lib/libcpp_common.so
7f77cd51a000-7f77cd538000 r-xp 00000000 08:02 29858897 /opt/ros/kinetic/lib/libxmlrpcpp.so
7f77cd538000-7f77cd737000 ---p 0001e000 08:02 29858897 /opt/ros/kinetic/lib/libxmlrpcpp.so
7f77cd737000-7f77cd738000 r--p 0001d000 08:02 29858897 /opt/ros/kinetic/lib/libxmlrpcpp.so
7f77cd738000-7f77cd739000 rw-p 0001e000 08:02 29858897 /opt/ros/kinetic/lib/libxmlrpcpp.so
7f77cd739000-7f77cd740000 r-xp 00000000 08:02 11273131 /lib/x86_64-linux-gnu/librt-2.23.so
7f77cd740000-7f77cd93f000 ---p 00007000 08:02 11273131 /lib/x86_64-linux-gnu/librt-2.23.so
7f77cd93f000-7f77cd940000 r--p 00006000 08:02 11273131 /lib/x86_64-linux-gnu/librt-2.23.so
7f77cd940000-7f77cd941000 rw-p 00007000 08:02 11273131 /lib/x86_64-linux-gnu/librt-2.23.so
7f77cd941000-7f77cd944000 r-xp 00000000 08:02 11273140 /lib/x86_64-linux-gnu/libdl-2.23.so
7f77cd944000-7f77cdb43000 ---p 00003000 08:02 11273140 /lib/x86_64-linux-gnu/libdl-2.23.so
7f77cdb43000-7f77cdb44000 r--p 00002000 08:02 11273140 /lib/x86_64-linux-gnu/libdl-2.23.so
7f77cdb44000-7f77cdb45000 rw-p 00003000 08:02 11273140 /lib/x86_64-linux-gnu/libdl-2.23.so
7f77cdb45000-7f77cdb60000 r-xp 00000000 08:02 1062900 /usr/local/lib/libz.so.1.2.9
7f77cdb60000-7f77cdd5f000 ---p 0001b000 08:02 1062900 /usr/local/lib/libz.so.1.2.9
7f77cdd5f000-7f77cdd60000 r--p 0001a000 08:02 1062900 /usr/local/lib/libz.so.1.2.9
7f77cdd60000-7f77cdd61000 rw-p 0001b000 08:02 1062900 /usr/local/lib/libz.so.1.2.9
7f77cdd61000-7f77cddab000 r-xp 00000000 08:02 532975 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0
7f77cddab000-7f77cdfaa000 ---p 0004a000 08:02 532975 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0
7f77cdfaa000-7f77cdfab000 r--p 00049000 08:02 532975 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0
7f77cdfab000-7f77cdfaf000 rw-p 0004a000 08:02 532975 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0
7f77cdfaf000-7f77cdfb6000 rw-p 00000000 00:00 0
7f77cdfb6000-7f77ce027000 r-xp 00000000 08:02 528121 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4
7f77ce027000-7f77ce227000 ---p 00071000 08:02 528121 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4
7f77ce227000-7f77ce228000 r--p 00071000 08:02 528121 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4
7f77ce228000-7f77ce22b000 rw-p 00072000 08:02 528121 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4
7f77ce22b000-7f77ce24f000 r-xp 00000000 08:02 11276999 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f77ce24f000-7f77ce44e000 ---p 00024000 08:02 11276999 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f77ce44e000-7f77ce44f000 r--p 00023000 08:02 11276999 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f77ce44f000-7f77ce450000 rw-p 00024000 08:02 11276999 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f77ce450000-7f77ce4a9000 r-xp 00000000 08:02 533554 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4
7f77ce4a9000-7f77ce6a9000 ---p 00059000 08:02 533554 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4
7f77ce6a9000-7f77ce6aa000 r--p 00059000 08:02 533554 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4
7f77ce6aa000-7f77ce6ac000 rw-p 0005a000 08:02 533554 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4
7f77ce6ac000-7f77ce703000 r-xp 00000000 08:02 532982 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f77ce703000-7f77ce903000 ---p 00057000 08:02 532982 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f77ce903000-7f77ce904000 r--p 00057000 08:02 532982 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f77ce904000-7f77ce905000 rw-p 00058000 08:02 532982 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2
7f77ce905000-7f77cec6c000 r-xp 00000000 08:02 29892384 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_objdetect3.so.3.3.1
7f77cec6c000-7f77cee6b000 ---p 00367000 08:02 29892384 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_objdetect3.so.3.3.1
7f77cee6b000-7f77cee6d000 r--p 00366000 08:02 29892384 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_objdetect3.so.3.3.1
7f77cee6d000-7f77cee78000 rw-p 00368000 08:02 29892384 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_objdetect3.so.3.3.1
7f77cee78000-7f77cee79000 rw-p 00000000 00:00 0
7f77cee79000-7f77cf01a000 r-xp 00000000 08:02 29892399 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_calib3d3.so.3.3.1
7f77cf01a000-7f77cf21a000 ---p 001a1000 08:02 29892399 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_calib3d3.so.3.3.1
7f77cf21a000-7f77cf21c000 r--p 001a1000 08:02 29892399 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_calib3d3.so.3.3.1
7f77cf21c000-7f77cf21d000 rw-p 001a3000 08:02 29892399 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_calib3d3.so.3.3.1
7f77cf21d000-7f77cf21e000 rw-p 00000000 00:00 0
7f77cf21e000-7f77cf2f1000 r-xp 00000000 08:02 530798 /usr/lib/x86_64-linux-gnu/libcholmod.so.3.0.6
7f77cf2f1000-7f77cf4f0000 ---p 000d3000 08:02 530798 /usr/lib/x86_64-linux-gnu/libcholmod.so.3.0.6
7f77cf4f0000-7f77cf4f1000 r--p 000d2000 08:02 530798 /usr/lib/x86_64-linux-gnu/libcholmod.so.3.0.6
7f77cf4f1000-7f77cf4f2000 rw-p 000d3000 08:02 530798 /usr/lib/x86_64-linux-gnu/libcholmod.so.3.0.6
7f77cf4f2000-7f77cf53d000 r-xp 00000000 08:02 29859524 /opt/ros/kinetic/lib/libg2o_types_sba.so
7f77cf53d000-7f77cf73d000 ---p 0004b000 08:02 29859524 /opt/ros/kinetic/lib/libg2o_types_sba.so
7f77cf73d000-7f77cf740000 r--p 0004b000 08:02 29859524 /opt/ros/kinetic/lib/libg2o_types_sba.so
7f77cf740000-7f77cf741000 rw-p 0004e000 08:02 29859524 /opt/ros/kinetic/lib/libg2o_types_sba.so
7f77cf741000-7f77cf759000 r-xp 00000000 08:02 29859518 /opt/ros/kinetic/lib/libg2o_stuff.so
7f77cf759000-7f77cf958000 ---p 00018000 08:02 29859518 /opt/ros/kinetic/lib/libg2o_stuff.so
7f77cf958000-7f77cf959000 r--p 00017000 08:02 29859518 /opt/ros/kinetic/lib/libg2o_stuff.so
7f77cf959000-7f77cf95a000 rw-p 00018000 08:02 29859518 /opt/ros/kinetic/lib/libg2o_stuff.so
7f77cf95a000-7f77cf95b000 rw-p 00000000 00:00 0
7f77cf95b000-7f77cf9b1000 r-xp 00000000 08:02 29859521 /opt/ros/kinetic/lib/libg2o_core.so
7f77cf9b1000-7f77cfbb1000 ---p 00056000 08:02 29859521 /opt/ros/kinetic/lib/libg2o_core.so
7f77cfbb1000-7f77cfbb3000 r--p 00056000 08:02 29859521 /opt/ros/kinetic/lib/libg2o_core.so
7f77cfbb3000-7f77cfbb4000 rw-p 00058000 08:02 29859521 /opt/ros/kinetic/lib/libg2o_core.so
7f77cfbb4000-7f77cff1d000 r-xp 00000000 08:02 29892358 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_video3.so.3.3.1
7f77cff1d000-7f77d011d000 ---p 00369000 08:02 29892358 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_video3.so.3.3.1
7f77d011d000-7f77d011f000 r--p 00369000 08:02 29892358 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_video3.so.3.3.1
7f77d011f000-7f77d012a000 rw-p 0036b000 08:02 29892358 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_video3.so.3.3.1
7f77d012a000-7f77d0168000 r-xp 00000000 08:02 29892400 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_highgui3.so.3.3.1
7f77d0168000-7f77d0367000 ---p 0003e000 08:02 29892400 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_highgui3.so.3.3.1
7f77d0367000-7f77d036a000 r--p 0003d000 08:02 29892400 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_highgui3.so.3.3.1
7f77d036a000-7f77d036b000 rw-p 00040000 08:02 29892400 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_highgui3.so.3.3.1
7f77d036b000-7f77d037f000 r-xp 00000000 08:02 29899335 /home/SENSETIME/chenchang1/softwre/fast-master/build/libfast.so
7f77d037f000-7f77d057e000 ---p 00014000 08:02 29899335 /home/SENSETIME/chenchang1/softwre/fast-master/build/libfast.so
7f77d057e000-7f77d057f000 r--p 00013000 08:02 29899335 /home/SENSETIME/chenchang1/softwre/fast-master/build/libfast.so
7f77d057f000-7f77d0580000 rw-p 00014000 08:02 29899335 /home/SENSETIME/chenchang1/softwre/fast-master/build/libfast.so
7f77d0580000-7f77d0688000 r-xp 00000000 08:02 11273163 /lib/x86_64-linux-gnu/libm-2.23.so
7f77d0688000-7f77d0887000 ---p 00108000 08:02 11273163 /lib/x86_64-linux-gnu/libm-2.23.so
7f77d0887000-7f77d0888000 r--p 00107000 08:02 11273163 /lib/x86_64-linux-gnu/libm-2.23.so
7f77d0888000-7f77d0889000 rw-p 00108000 08:02 11273163 /lib/x86_64-linux-gnu/libm-2.23.so
7f77d0889000-7f77d08b4000 r-xp 00000000 08:02 29858882 /opt/ros/kinetic/lib/librostime.so
7f77d08b4000-7f77d0ab3000 ---p 0002b000 08:02 29858882 /opt/ros/kinetic/lib/librostime.so
7f77d0ab3000-7f77d0ab5000 r--p 0002a000 08:02 29858882 /opt/ros/kinetic/lib/librostime.so
7f77d0ab5000-7f77d0ab6000 rw-p 0002c000 08:02 29858882 /opt/ros/kinetic/lib/librostime.so
7f77d0ab6000-7f77d0ab8000 r-xp 00000000 08:02 29858885 /opt/ros/kinetic/lib/libroscpp_serialization.so
7f77d0ab8000-7f77d0cb7000 ---p 00002000 08:02 29858885 /opt/ros/kinetic/lib/libroscpp_serialization.so
7f77d0cb7000-7f77d0cb8000 r--p 00001000 08:02 29858885 /opt/ros/kinetic/lib/libroscpp_serialization.so
7f77d0cb8000-7f77d0cb9000 rw-p 00002000 08:02 29858885 /opt/ros/kinetic/lib/libroscpp_serialization.so
7f77d0cb9000-7f77d32d8000 r-xp 00000000 08:02 29892368 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgproc3.so.3.3.1
7f77d32d8000-7f77d34d8000 ---p 0261f000 08:02 29892368 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgproc3.so.3.3.1
7f77d34d8000-7f77d34ee000 r--p 0261f000 08:02 29892368 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgproc3.so.3.3.1
7f77d34ee000-7f77d3510000 rw-p 02635000 08:02 29892368 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgproc3.so.3.3.1
7f77d3510000-7f77d35af000 rw-p 00000000 00:00 0
7f77d35af000-7f77d35e5000 r-xp 00000000 08:02 29859165 /opt/ros/kinetic/lib/libtf.so
7f77d35e5000-7f77d37e5000 ---p 00036000 08:02 29859165 /opt/ros/kinetic/lib/libtf.so
7f77d37e5000-7f77d37e7000 r--p 00036000 08:02 29859165 /opt/ros/kinetic/lib/libtf.so
7f77d37e7000-7f77d37e8000 rw-p 00038000 08:02 29859165 /opt/ros/kinetic/lib/libtf.so
7f77d37e8000-7f77d37f3000 r-xp 00000000 08:02 30030377 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_ros.so
7f77d37f3000-7f77d39f2000 ---p 0000b000 08:02 30030377 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_ros.so
7f77d39f2000-7f77d39f3000 r--p 0000a000 08:02 30030377 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_ros.so
7f77d39f3000-7f77d39f4000 rw-p 0000b000 08:02 30030377 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_ros.so
7f77d39f4000-7f77d3a1c000 r-xp 00000000 08:02 29859050 /opt/ros/kinetic/lib/libcv_bridge.so
7f77d3a1c000-7f77d3c1b000 ---p 00028000 08:02 29859050 /opt/ros/kinetic/lib/libcv_bridge.so
7f77d3c1b000-7f77d3c1d000 r--p 00027000 08:02 29859050 /opt/ros/kinetic/lib/libcv_bridge.so
7f77d3c1d000-7f77d3c1e000 rw-p 00029000 08:02 29859050 /opt/ros/kinetic/lib/libcv_bridge.so
7f77d3c1e000-7f77d3c9d000 r-xp 00000000 08:02 29859066 /opt/ros/kinetic/lib/libimage_transport.so
7f77d3c9d000-7f77d3e9c000 ---p 0007f000 08:02 29859066 /opt/ros/kinetic/lib/libimage_transport.so
7f77d3e9c000-7f77d3e9f000 r--p 0007e000 08:02 29859066 /opt/ros/kinetic/lib/libimage_transport.so
7f77d3e9f000-7f77d3ea0000 rw-p 00081000 08:02 29859066 /opt/ros/kinetic/lib/libimage_transport.so
7f77d3ea0000-7f77d4060000 r-xp 00000000 08:02 11273160 /lib/x86_64-linux-gnu/libc-2.23.so
7f77d4060000-7f77d4260000 ---p 001c0000 08:02 11273160 /lib/x86_64-linux-gnu/libc-2.23.so
7f77d4260000-7f77d4264000 r--p 001c0000 08:02 11273160 /lib/x86_64-linux-gnu/libc-2.23.so
7f77d4264000-7f77d4266000 rw-p 001c4000 08:02 11273160 /lib/x86_64-linux-gnu/libc-2.23.so
7f77d4266000-7f77d426a000 rw-p 00000000 00:00 0
7f77d426a000-7f77d4280000 r-xp 00000000 08:02 11276896 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f77d4280000-7f77d447f000 ---p 00016000 08:02 11276896 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f77d447f000-7f77d4480000 rw-p 00015000 08:02 11276896 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f77d4480000-7f77d45f2000 r-xp 00000000 08:02 524476 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f77d45f2000-7f77d47f2000 ---p 00172000 08:02 524476 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f77d47f2000-7f77d47fc000 r--p 00172000 08:02 524476 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f77d47fc000-7f77d47fe000 rw-p 0017c000 08:02 524476 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f77d47fe000-7f77d4802000 rw-p 00000000 00:00 0
7f77d4802000-7f77d481a000 r-xp 00000000 08:02 11273147 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f77d481a000-7f77d4a19000 ---p 00018000 08:02 11273147 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f77d4a19000-7f77d4a1a000 r--p 00017000 08:02 11273147 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f77d4a1a000-7f77d4a1b000 rw-p 00018000 08:02 11273147 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f77d4a1b000-7f77d4a1f000 rw-p 00000000 00:00 0
7f77d4a1f000-7f77d4a43000 r-xp 00000000 08:02 535949 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.58.0
7f77d4a43000-7f77d4c42000 ---p 00024000 08:02 535949 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.58.0
7f77d4c42000-7f77d4c44000 r--p 00023000 08:02 535949 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.58.0
7f77d4c44000-7f77d4c45000 rw-p 00025000 08:02 535949 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.58.0
7f77d4c45000-7f77d4c48000 r-xp 00000000 08:02 532382 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0
7f77d4c48000-7f77d4e47000 ---p 00003000 08:02 532382 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0
7f77d4e47000-7f77d4e48000 r--p 00002000 08:02 532382 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0
7f77d4e48000-7f77d4e49000 rw-p 00003000 08:02 532382 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0
7f77d4e49000-7f77d4e78000 r-xp 00000000 08:02 29858893 /opt/ros/kinetic/lib/librosconsole.so
7f77d4e78000-7f77d5078000 ---p 0002f000 08:02 29858893 /opt/ros/kinetic/lib/librosconsole.so
7f77d5078000-7f77d507a000 r--p 0002f000 08:02 29858893 /opt/ros/kinetic/lib/librosconsole.so
7f77d507a000-7f77d507b000 rw-p 00031000 08:02 29858893 /opt/ros/kinetic/lib/librosconsole.so
7f77d507b000-7f77d520d000 r-xp 00000000 08:02 29858898 /opt/ros/kinetic/lib/libroscpp.so
7f77d520d000-7f77d540c000 ---p 00192000 08:02 29858898 /opt/ros/kinetic/lib/libroscpp.so
7f77d540c000-7f77d5413000 r--p 00191000 08:02 29858898 /opt/ros/kinetic/lib/libroscpp.so
7f77d5413000-7f77d5417000 rw-p 00198000 08:02 29858898 /opt/ros/kinetic/lib/libroscpp.so
7f77d5417000-7f77d542b000 r-xp 00000000 08:02 1097708 /usr/local/lib/libSophus.so
7f77d542b000-7f77d562a000 ---p 00014000 08:02 1097708 /usr/local/lib/libSophus.so
7f77d562a000-7f77d562b000 r--p 00013000 08:02 1097708 /usr/local/lib/libSophus.so
7f77d562b000-7f77d562c000 rw-p 00014000 08:02 1097708 /usr/local/lib/libSophus.so
7f77d562c000-7f77d632f000 r-xp 00000000 08:02 29892402 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_core3.so.3.3.1
7f77d632f000-7f77d652e000 ---p 00d03000 08:02 29892402 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_core3.so.3.3.1
7f77d652e000-7f77d653a000 r--p 00d02000 08:02 29892402 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_core3.so.3.3.1
7f77d653a000-7f77d6560000 rw-p 00d0e000 08:02 29892402 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_core3.so.3.3.1
7f77d6560000-7f77d6565000 rw-p 00000000 00:00 0
7f77d6565000-7f77d6982000 r-xp 00000000 08:02 29892363 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgcodecs3.so.3.3.1
7f77d6982000-7f77d6b82000 ---p 0041d000 08:02 29892363 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgcodecs3.so.3.3.1
7f77d6b82000-7f77d6b88000 r--p 0041d000 08:02 29892363 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgcodecs3.so.3.3.1
7f77d6b88000-7f77d6b93000 rw-p 00423000 08:02 29892363 /opt/ros/kinetic/lib/x86_64-linux-gnu/libopencv_imgcodecs3.so.3.3.1
7f77d6b93000-7f77d6b94000 rw-p 00000000 00:00 0
7f77d6b94000-7f77d6c0b000 r-xp 00000000 08:02 30030339 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_common.so
7f77d6c0b000-7f77d6e0a000 ---p 00077000 08:02 30030339 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_common.so
7f77d6e0a000-7f77d6e0c000 r--p 00076000 08:02 30030339 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_common.so
7f77d6e0c000-7f77d6e0d000 rw-p 00078000 08:02 30030339 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libvikit_common.so
7f77d6e0d000-7f77d6ee5000 r-xp 00000000 08:02 30030392 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo.so
7f77d6ee5000-7f77d70e5000 ---p 000d8000 08:02 30030392 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo.so
7f77d70e5000-7f77d70e8000 r--p 000d8000 08:02 30030392 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo.so
7f77d70e8000-7f77d70ea000 rw-p 000db000 08:02 30030392 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo.so
7f77d70ea000-7f77d712a000 r-xp 00000000 08:02 30030513 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo_visualizer_monodepth.so
7f77d712a000-7f77d7329000 ---p 00040000 08:02 30030513 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo_visualizer_monodepth.so
7f77d7329000-7f77d732b000 r--p 0003f000 08:02 30030513 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo_visualizer_monodepth.so
7f77d732b000-7f77d732c000 rw-p 00041000 08:02 30030513 /home/SENSETIME/chenchang1/catkin_ws/devel/lib/libsvo_visualizer_monodepth.so
7f77d732c000-7f77d732d000 rw-p 00000000 00:00 0
7f77d732d000-7f77d7353000 r-xp 00000000 08:02 11273146 /lib/x86_64-linux-gnu/ld-2.23.so
7f77d748f000-7f77d74bb000 rw-p 00000000 00:00 0
7f77d74bb000-7f77d74e9000 r-xp 00000000 08:02 530104 /usr/lib/x86_64-linux-gnu/libQt5Test.so.5.5.1
7f77d74e9000-7f77d74ea000 r--p 0002d000 08:02 530104 /usr/lib/x86_64-linux-gnu/libQt5Test.so.5.5.1
7f77d74ea000-7f77d74eb000 rw-p 0002e000 08:02 530104 /usr/lib/x86_64-linux-gnu/libQt5Test.so.5.5.1
7f77d74eb000-7f77d7501000 rw-p 00000000 00:00 0
7f77d753e000-7f77d7552000 rw-p 00000000 00:00 0
7f77d7552000-7f77d7553000 r--p 00025000 08:02 11273146 /lib/x86_64-linux-gnu/ld-2.23.so
7f77d7553000-7f77d7554000 rw-p 00026000 08:02 11273146 /lib/x86_64-linux-gnu/ld-2.23.so
7f77d7554000-7f77d7555000 rw-p 00000000 00:00 0
7ffc509f7000-7ffc50a16000 rwxp 00000000 00:00 0 [stack]
7ffc50a16000-7ffc50a19000 rw-p 00000000 00:00 0
7ffc50aa2000-7ffc50aa5000 r--p 00000000 00:00 0 [vvar]
7ffc50aa5000-7ffc50aa7000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
================================================================================REQUIRED process [svo-1] has died!
process has died [pid 9765, exit code -6, cmd /home/SENSETIME/chenchang1/catkin_ws/devel/lib/svo_ros/vo_monodepth_offline __name:=svo __log:=/home/SENSETIME/chenchang1/.ros/log/82aa15f6-ef19-11e9-8651-04d4c456c018/svo-1.log].
log file: /home/SENSETIME/chenchang1/.ros/log/82aa15f6-ef19-11e9-8651-04d4c456c018/svo-1*.log
Initiating shutdown!

[svo-1] killing on exit
shutting down processing monitor...
... shutting down processing monitor complete

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

@cumtchenchang Just make sure that whether you add the code
SCALE = 0.3128 # (718.856 * 0.54 / 1241)
in monodepth_simple.py.
The log can't show any information about the error.

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kinfeparty Thank you for your response. I added SCALE in monodepth_main.py.
Changed part is:
SCALE = 0.3128 # (718.856 * 0.54 / 1241)
for step in range(num_test_samples):
disp = sess.run(model.disp_left_est[0])
disp = post_process_disparity(disp.squeeze())
#disparities[step] = disp[0].squeeze()
# disparities_pp[step] = post_process_disparity(disp.squeeze())
# If you wish to resize the disparity map back to original size
# disp = cv2.resize(disp, (1241, 376), interpolation=cv2.INTER_LINEAR)
# Convert disparity to depth
disp = SCALE/disp
np.save(output_directory + '/' + 'depth_' + str(step) + '.npy', disp)

The link is: https://github.com/cumtchenchang/monodepth/blob/master/monodepth_main2.py

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kinfeparty Every .npy file is 1M, maybe something wrong with my provided code. Could you provide your changed code? Thank you!

from cnn-svo.

kinfeparty avatar kinfeparty commented on September 28, 2024

@cumtchenchang Sorry,I deleted the code,so you may ask the author.

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kinfeparty Thank you sincerely. I hope the author can upload the code.

from cnn-svo.

yan99033 avatar yan99033 commented on September 28, 2024

@cumtchenchang @kinfeparty
Sorry for the late response. I haven't used the npy files for a while. The code for saving the .npy files was created about 1.5 years ago, and I didn't keep it since I did the online depth inference.

I read your code. You should be importing monodepth.py not monodepth_model.py.
Therefore, Line 23 should be
from monodepth import *
and Line 185 should be
model = monodepth(left, 'vgg')
also the whole def train(): can be deleted to avoid conflicts.

Again, I would strongly recommend you to save the depth maps into one Numpy array file (n, w, h, 1) instead of separate Numpy array files (e.g., (w, h, 1), (w, h, 1), ...). I found that reading the file has non-negligible computational overhead so it would be better to preload the depth maps from a Numpy array file before processing VO. But you would need to also modify the CNN-SVO source code to do so.

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

Thank you for your response. I followed your suggestion. However, how to solve the dependency of model.disp_left_est[0] in line 217? Can you provide a complete and runnable code. Thank you!

from cnn-svo.

kadut99 avatar kadut99 commented on September 28, 2024

Hello @yan99033 , I have some question
I have successfully install the library for offline mode
When I want to run roslaunch svo_ros kittiOffline00-02.launch, I have this error

kadut@kadut-pc:~/catkin_ws$ roslaunch svo_ros kittiOffline00-02.launch
[kittiOffline00-02.launch] is neither a launch file in package [svo_ros] nor is [svo_ros] a launch file name
The traceback for the exception was written to the log file

Do you know what is caused the error? Or it's because there is no svo_ros file after my installation (My installation is failed)?
After run catkin_make, it only produces folder build and devel, there is no install folder, is it my error?
Thank you very much

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kadut99 source ~/catkin_ws/devel/setup.bash
In addition. Can you generate offline kitti depth correctly? If you can run this demo sucessfully, please tell me how to get the depth .npy files. Thank you.

from cnn-svo.

kadut99 avatar kadut99 commented on September 28, 2024

@kadut99 source ~/catkin_ws/devel/setup.bash
In addition. Can you generate offline kitti depth correctly? If you can run this demo sucessfully, please tell me how to get the depth .npy files. Thank you.

@cumtchenchang yes right I forgot that step
EDITED :
I have the problem related with the .npy files
Becausssse everytime I try to run roslaunch, it give me nan value
I think it because not much disparity information I could get

from cnn-svo.

cumtchenchang avatar cumtchenchang commented on September 28, 2024

@kadut99 Have you solved the problem? If you solve the problem, please tell me the correct way. Thank you.

from cnn-svo.

kadut99 avatar kadut99 commented on September 28, 2024

@kadut99 Have you solved the problem? If you solve the problem, please tell me the correct way. Thank you.

Not yet, still have a problem with .NPY files
this is my error :
[ INFO] [1571760614.827965871]: Init: Selected first frame.
stage second frame
Matrix is close to singular! Stop Optimizing.
H = -nan -nan -nan -nan nan -nan
-nan -nan -nan -nan nan -nan
-nan -nan -nan -nan -nan -nan
-nan -nan -nan -nan -nan -nan
nan nan nan nan nan nan
-nan -nan -nan -nan -nan -nan
Jres = -nan
-nan
-nan
-nan
nan
-nan
[ INFO] [1571760614.917232609]: Init: CNNVO tracked 105 features
disparities size is smaller than the minimum tracked feature
[ INFO] [1571760614.917810990]: RESET
Result saved in file...SVO terminated.
================================================================================REQUIRED process [svo-1] has died!
process has finished cleanly
log file: /home/ferdyan/.ros/log/9295c24e-f4cd-11e9-8eef-107b4418cc95/svo-1*.log
Initiating shutdown!

[svo-1] killing on exit
shutting down processing monitor...
... shutting down processing monitor complete
done

from cnn-svo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.