Giter Club home page Giter Club logo

Comments (4)

esheldon avatar esheldon commented on August 17, 2024

works for me

from piff.

RobertLuptonTheGood avatar RobertLuptonTheGood commented on August 17, 2024

from piff.

rmjarvis avatar rmjarvis commented on August 17, 2024

Can't the user just say (int(x), int(y)) to centre in a pixel?

Yes, that is the current workaround.

im = psf.draw(x=int(x+0.5), y=int(y+0.5))

But it feels slightly clunky compared to

im = psf.draw(x,y, center=True)

I don't understand the center=pos option.

Well, you might not want the image you are drawing onto to have the same meanings of (x,y) as the original image where the interpolation is defined. For instance, you might have the image on which you are rendering the PSF be centered at (0,0) for convenience of some measuring code. Furthermore, you might be concerned about some pixelization effects in your code, so maybe you don't always want the PSF centered in the center of the central pixel. Maybe you want to dither around by a random sub-pixel offset relative to the center. Then you would do

cenx, ceny = np.random.rand(2) - 0.5
center = galsim.PositionD(cenx,ceny)
psf.draw(x,y, image=target_image, center=center)
measure_psf(target_image, center=center)

Anyway, if you don't have a use for it yourself, you don't need to use it (natch). But in some DES work we've been doing, there was some confusion on how Piff was working here, so this is intended to make it easier for the user to be clear about what they are asking Piff to do wrt the center of the rendering.

from piff.

rmjarvis avatar rmjarvis commented on August 17, 2024

FYI, I'll mostly be leveraging the work I did on this GalSim PR where I added a center parameter to the drawImage command. This will encompass how the center=pos option will work. The other two options described above will just define two reasonable values for what that pos might be.

from piff.

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.