Loading [MathJax]/extensions/tex2jax.js
LSST Applications g032c94a9f9+ac98094cfc,g04a91732dc+8f8ef39500,g07dc498a13+4eb283b00e,g0fba68d861+fe52cfea07,g1409bbee79+4eb283b00e,g1a7e361dbc+4eb283b00e,g1fd858c14a+21fedf7ac9,g208c678f98+a86e7897d4,g2c84ff76c0+22a6ac03ed,g35bb328faa+fcb1d3bbc8,g4d2262a081+a494e3f3d6,g4d39ba7253+3dc2658323,g4e0f332c67+c58e4b632d,g53246c7159+fcb1d3bbc8,g60b5630c4e+3dc2658323,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+24b38c285b,g89139ef638+4eb283b00e,g8d6b6b353c+3dc2658323,g9125e01d80+fcb1d3bbc8,g989de1cb63+4eb283b00e,g9f33ca652e+abcb26939a,ga9baa6287d+3dc2658323,gaaedd4e678+4eb283b00e,gabe3b4be73+1e0a283bba,gb1101e3267+f06a32901e,gb58c049af0+f03b321e39,gb90eeb9370+5737ae2691,gcf25f946ba+24b38c285b,gd315a588df+81e3241efa,gd6cbbdb0b4+75aa4b1db4,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+ac7491eacb,ge278dab8ac+c61fbefdff,ge82c20c137+e12a08b75a,gf4a8514506+3f9a146d29,w.2025.11
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
applyLookupTable.h
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2
3/*
4 * LSST Data Management System
5 * Copyright 2016 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#ifndef LSST_IP_ISR_APPLY_LOOKUP_TABLE
26#define LSST_IP_ISR_APPLY_LOOKUP_TABLE
27
28#include "ndarray.h"
29
30#include "lsst/afw/image.h"
31
32namespace lsst {
33namespace ip {
34namespace isr {
35
54 template<typename PixelT>
57 ndarray::Array<PixelT, 1, 1> const &table,
58 PixelT indOffset
59 );
60
61}}} // lsst::ip::isr
62
63#endif
A class to represent a 2-dimensional array of pixels.
Definition Image.h:51
int applyLookupTable(afw::image::Image< PixelT > &image, ndarray::Array< PixelT, 1, 1 > const &table, PixelT indOffset)
Add the values in a lookup table to an image, e.g.