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

Camera Nodelet using GPU memory?

asked 2020-05-01 02:51:30 -0500

gabrielPeixoto gravatar image

Hello all,

This is my first question, so apologize for any formatting mistakes.

I developed a simple driver in CPP for a IDS camera using IDS drivers and ROS nodelet. The cameras publish using image transport. However, I noticed that there is approximate 100 MB of GPU memory usage for every new camera publishing. Since my system contains multiple deep neural networks nodes running I would like to have as much as possible of my GPU memory free.

Why is this happening? Anyone has any idea?

My guess is that image transport may be using the GPU for image compression, or other tasks. If so, there is a way to disable it and do everything in CPU?

edit retag flag offensive close merge delete

Comments

Quick comment: it's very likely the IDS driver is using the GPU. I'm not aware of code in image_transport doing this (or at least not directly (ie: using any of the regular ways to do it, such as CUDA or OpenCL)). But as image_transport is plugin based, you could of course have plugins installed which do. We cannot know. That would be something for you to check.

gvdhoorn gravatar image gvdhoorn  ( 2020-05-01 03:57:26 -0500 )edit

Indeed, to rule out the possibility of the IDS driver using the GPU, I am using DEVICE INDEPENDENT BITMAP (DIB) Mode, which does not use GPU processing or memory, instead uses the CPU and computer memory. Since I am allocating the memory and copying the frame from the camera buffer myself, I believe that it is not using GPU. I will take a look into the plugins. Currently we have compressed and theora subtopics being published. I will take a look into them and maybe disabling them to check.

gabrielPeixoto gravatar image gabrielPeixoto  ( 2020-05-01 04:30:34 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-05-04 01:09:30 -0500

gabrielPeixoto gravatar image

Hello,

I could solve my issue. I executed the following steps:

  1. First, I disabled all the image transport plugins based on this answer command; This do not changed GPU memory consumption, which eliminates image transport as a culprit.
  2. I was loading the camera parameters from a parameter file, and it seems that this parameter file was causing the camera driver to use GPU, and when the driver loads the parameter file it overwrites all the previous camera parameters. Since I was setting DIB mode before loading parameters it was being overwritten, so I just forced the DIB mode after my driver loads the parameter file and the GPU memory consumption problem is gone.
edit flag offensive delete link more

Comments

Thanks for reporting back.

So it was the camera after all.

gvdhoorn gravatar image gvdhoorn  ( 2020-05-04 02:45:17 -0500 )edit

Indeed it was, other person made the configuration file, so I thought they were OK.

gabrielPeixoto gravatar image gabrielPeixoto  ( 2020-05-04 02:46:22 -0500 )edit

Ah, assumptions ;)

gvdhoorn gravatar image gvdhoorn  ( 2020-05-04 03:11:57 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2020-05-01 02:48:17 -0500

Seen: 347 times

Last updated: May 04 '20