Skip to content

Commit

Permalink
Merge pull request #44 from SeverinDenisenko/43-add-new-tests-with-di…
Browse files Browse the repository at this point in the history
…fferent-images

43 add new tests with different images
  • Loading branch information
SeverinDenisenko authored Jan 21, 2025
2 parents e80112b + 16597fa commit 38c24b9
Show file tree
Hide file tree
Showing 35 changed files with 14,687 additions and 8 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
## About

![example](data/example.png)
![example](data/example2.png)
![example](data/example3.png)
![example](data/example4.png)

This tool can add images (in .fits format) with stars on them. Tool computes proper transform frame to frame, to make all sourses line up together.

Expand Down
4 changes: 4 additions & 0 deletions astroimsumlib/astrometric_reduction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ source_matcher::match(const array_t<point_t>& from, const array_t<point_t>& to)
vector_t y2(I1.size());

for (unsigned_integer_t i = 0; i < i1.size(); ++i) {
if (i1[i] >= from.size() || I1[i] >= to.size()) {
continue;
}

x1[i] = from[i1[i]][0];
y1[i] = from[i1[i]][1];

Expand Down
524 changes: 524 additions & 0 deletions data/Neptune_R_001.fits

Large diffs are not rendered by default.

592 changes: 592 additions & 0 deletions data/Neptune_R_002.fits

Large diffs are not rendered by default.

567 changes: 567 additions & 0 deletions data/Neptune_R_003.fits

Large diffs are not rendered by default.

649 changes: 649 additions & 0 deletions data/Neptune_R_004.fits

Large diffs are not rendered by default.

Loading

0 comments on commit 38c24b9

Please sign in to comment.