Skip to content

D435i: memory usage increasing constantly #4332

@terranas

Description

@terranas
Required Info
Camera Model D435I
Firmware Version 05.11.01.100
Operating System & Version Win 10
Platform PC
SDK Version 2.19.0
Language C++

Issue Description

https://github.com/IntelRealSense/librealsense/blob/master/doc/d435i.md
Processing IMU sensor data according to the above, process memory (Private Bytes) has increase about 27KB/sec.
Leave it running 36 hours, memory usage keep increased and process has died.
Strangely, I got same result by more simple code.

#include <librealsense2/rs.hpp>

int main()
{
    rs2::config cfg;
    cfg.enable_stream(RS2_STREAM_GYRO);
    cfg.enable_stream(RS2_STREAM_ACCEL);

    rs2::pipeline pipe;
    pipe.start(cfg);
    getchar();
}

This looks like a memory leak to me. Is there a suspected cause?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions