This file is indexed.

/usr/include/astrometry/coadd.h is in libastrometry-dev 0.70+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
 */
#include "astrometry/anwcs.h"
#include "astrometry/resample.h"

typedef float number;

/*
 typedef bool (*isbadpix)(const number* img, const number* weightimg, int ix, int iy, void* token)
 badpixfunc_t;
 */

typedef struct {
	number* img;
	number* weight;
	int W, H;
	anwcs_t* wcs;

	double (*resample_func)(double px, double py,
							const number* img, const number* weightimg,
							int W, int H,
							double* wt,
							//badpixfunc_t badpix,
							//void* isbadpix_token,
							void* resample_token);
	void* resample_token;
} coadd_t;

coadd_t* coadd_new(int W, int H);

coadd_t* coadd_new_from_wcs(anwcs_t* wcs);

void coadd_set_lanczos(coadd_t* co, int Lorder);

int coadd_add_image(coadd_t* c, const number* img, const number* weightimg,
					number weight, const anwcs_t* wcs);
//, badpixfunc_t badpix, void* badpix_token);

// divide "img" by "weight"; set img=badpix where weight=0.
void coadd_divide_by_weight(coadd_t* c, number badpix);

number* coadd_get_snapshot(coadd_t* c, number* outimg, number badpix);

void coadd_free(coadd_t* c);

void coadd_debug(coadd_t* co);

number* coadd_create_weight_image_from_range(const number* img, int W, int H,
											 number lowval, number highval);

void coadd_weight_image_mask_value(const number* img, int W, int H,
								   number* weight, number badval);