LSST Applications g1653933729+a8ce1bb630,g1a997c3884+a8ce1bb630,g1b393d1bc7+82476ad7c1,g28da252d5a+3d3e1c4204,g2bbee38e9b+97aa061eef,g2bc492864f+97aa061eef,g2cdde0e794+3ad5f2bb52,g2f1216ac18+8615c5b65f,g3156d2b45e+07302053f8,g347aa1857d+97aa061eef,g35bb328faa+a8ce1bb630,g3a166c0a6a+97aa061eef,g3e281a1b8c+693a468c5f,g4005a62e65+17cd334064,g414038480c+56e3b84a79,g41af890bb2+e5200c8fd9,g65afce507f+0106b0cffc,g80478fca09+e9b577042c,g82479be7b0+a273c6d073,g858d7b2824+b43ab392d2,g9125e01d80+a8ce1bb630,ga5288a1d22+3199fccd69,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gbb4f38f987+b43ab392d2,gc28159a63d+97aa061eef,gcd3f1c0c93+2e89b03209,gcf0d15dbbd+a0207f3e71,gd35896b8e2+3e8344a67c,gda3e153d99+b43ab392d2,gda6a2b7d83+a0207f3e71,gdaeeff99f8+1711a396fd,ge2409df99d+e6e587e663,ge33fd446bb+b43ab392d2,ge79ae78c31+97aa061eef,gf0baf85859+5daf287408,gf5289d68f6+c4f2338d90,gfda6b12a05+3bcad770a9,w.2024.42
LSST Data Management Base Package
Loading...
Searching...
No Matches
ImageUtils.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2
3/*
4 * LSST Data Management System
5 * Copyright 2008, 2009, 2010 LSST Corporation.
6 *
7 * This product includes software developed by the
8 * LSST Project (http://www.lsst.org/).
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the LSST License Statement and
21 * the GNU General Public License along with this program. If not,
22 * see <http://www.lsstcorp.org/LegalNotices/>.
23 */
24
25/*
26 * Image utility functions
27 */
28#ifndef LSST_AFW_IMAGE_IMAGEUTILS_H
29#define LSST_AFW_IMAGE_IMAGEUTILS_H
30
31#include <cmath>
32
33namespace lsst {
34namespace afw {
35namespace image {
36enum xOrY { X, Y };
37
44const double PixelZeroPos = 0.0;
45
55inline double indexToPosition(double ind
56) {
57 return ind + PixelZeroPos;
58}
59
69inline int positionToIndex(double pos
70) {
71 return static_cast<int>(std::floor(pos + 0.5 - PixelZeroPos));
72}
73
85inline int positionToIndex(double &residual,
86 double pos
87) {
88 double fullIndex = pos - PixelZeroPos;
89 double roundedIndex = std::floor(fullIndex + 0.5);
90 residual = fullIndex - roundedIndex;
91 return static_cast<int>(roundedIndex);
92}
98inline std::pair<int, double> positionToIndex(double const pos,
99 bool
100) {
101 double residual; // fractional part of index
102 int const ind = positionToIndex(residual, pos); // integral part
103
104 return std::pair<int, double>(ind, residual);
105}
106} // namespace image
107} // namespace afw
108} // namespace lsst
109
110#endif // LSST_AFW_IMAGE_IMAGEUTILS_H
T floor(T... args)
const double PixelZeroPos
position of center of pixel 0
Definition ImageUtils.h:44
double indexToPosition(double ind)
Convert image index to image position.
Definition ImageUtils.h:55
int positionToIndex(double pos)
Convert image position to nearest integer index.
Definition ImageUtils.h:69