-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
non-standard pixel sizes for distortion #669
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
75ff307
non-standard pixel sizes for distortion
JarronL 64348ab
xidl_cen and yidl_cen need to be defined earlier
JarronL 005a60f
fix test_apply_distortion_pixel_scale() failure
JarronL 31926e7
revert to aper.convert
JarronL e511073
add test to verify fix of distortion with nonstandard pixelscale
mperrin 454f1c4
updated test_apply_distortion_pixel_scale
JarronL b4fdee2
use per axis pixel sampling during distortion
JarronL 5685897
Merge branch 'develop' into distortion_update
BradleySappington File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you explain the logic here for averaging
osamp
? This computes first a distinct oversampling factor in each of X and Y, but then computesxnew
andynew
using the average oversampling factor. Wouldn't it be more precise to calculate using the distinct oversampling factors per axis, likexnew = xarr / osamp_x + xnew_cen
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I originally tried doing it per-axis, but
test_apply_distortion_pixel_scale()
would fail. I did not have time to look into why the test was failing, as I didn't quite understand the logic behind the test. Reverting to a single oversampling applied across both axes fixed the issue. Need to investigate further.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, yeah, now that I look at that test... I do not understand the logic either. 🤣