Code Monkey home page Code Monkey logo

Comments (4)

scaramallion avatar scaramallion commented on June 19, 2024

Re-using the input array occurs by default when you have multiple frames to minimise the memory usage. If you had an input array with lots of frames then by creating a new array of equal size you may exceed your memory limits or result in a large slowdown (which is what happened for a couple of users, so we changed the behaviour). If your input array isn't that large you can pass per_frame=False which should return a new array without modifying the original.

If you're converting only a single frame then a new array is returned. The behaviour is a bit inconsistent and it could be better explained in the documentation.

from pydicom.

prathod9 avatar prathod9 commented on June 19, 2024

I have frames between 50-100 for my particular work.
I am passing per_frame=True
The problem is when i do id(original_array) and id (new_array)
It returns same id.
Which is what got me confused as it is not supposed to modify the original array.

This is quite unexpected

from pydicom.

scaramallion avatar scaramallion commented on June 19, 2024

Why is it not supposed to modify the original array? You mean because the id is the same? The input object is the same object returned when per_frame=True, just with different values (but the same dtype).

Also, as an aside, in CPython id is the memory address of the array. And it's definitely possible (I have seen it happen) that when an ndarray goes out of scope the memory can be reused if the replacement array has the same/smaller shape and dtype and therefore has the same id even though its a new object.

from pydicom.

prathod9 avatar prathod9 commented on June 19, 2024

We can close this issue.

from pydicom.

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.