Kstars

imageautoguiding.h
1/*
2 SPDX-FileCopyrightText: 2017 Bob Majewski <cygnus257@yahoo.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9// Robert Majewski
10
11// ImageAutoGuiding1 is self contained
12// ref is the reference image
13// im is the test image
14// Image Size n x n
15
16// The Input Image and the Reference images are zero based one dimensional vectors
17// They MUST be Square Images
18// n MUST be a Power of 2 use 128,256,512
19// 256 X 256 is A good Choice
20// These should be portions of the camera imagery
21
22namespace ImageAutoGuiding
23{
24void ImageAutoGuiding1(float *ref, float *im, int n, float *xshift, float *yshift);
25}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:02 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.