Giter Club home page Giter Club logo

Comments (2)

smoothumut avatar smoothumut commented on September 22, 2024 1

Hi Marco, Sorry for my late reply. I was just able to return coding.
Operation now it works great on logical operators also. Your interpolation under the hood saved my weeks.
I have used your interpolation and also vtkImageMathematics in order to Substract from one volume to another.
Without your interpolation, none of them was working
THANK YOU VERY MUCH and have a great day 🙇

from vedo.

marcomusy avatar marcomusy commented on September 22, 2024

Hi Umut, the problem is that the "+" sign means summing the scalar data inside volumes that have the same geometry.
If the volumes have different geometries (like voxel spacing or origin) some degree of interpolation is unavoidable.

I just extended operation() method to support logic operations, eg:

from vedo import Box, show
vol1 = Box(size=(35,10, 5)).binarize()
vol2 = Box(size=( 5,10,35)).binarize()

# vol = vol1.operation("+", vol2) # this will now give an error
vol = vol1.operation("xor", vol2)
print(vol)
show([[vol1, vol2], 
      ["vol1 xor vol2", vol]],
    N=2, axes=1, viewup="z",
)

Screenshot from 2024-01-04 17-27-27

from vedo.

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.