File indexing completed on 2024-05-12 15:23:43

0001 /*
0002     SPDX-FileCopyrightText: 2017 Bob Majewski <cygnus257@yahoo.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 // Robert Majewski
0010 
0011 // ImageAutoGuiding1 is self contained
0012 // ref is the reference image
0013 // im is the test image
0014 // Image Size n x n
0015 
0016 // The Input Image and the Reference images are zero based one dimensional vectors
0017 // They MUST be Square Images
0018 // n MUST be a Power of 2  use 128,256,512
0019 // 256 X 256 is A good Choice
0020 // These should be portions of the camera imagery
0021 
0022 namespace ImageAutoGuiding
0023 {
0024 void ImageAutoGuiding1(float *ref, float *im, int n, float *xshift, float *yshift);
0025 }