mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 02:35:12 +03:00
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
* main.c
|
|
*
|
|
* Copyright 2015 Edward V. Emelianov <eddy@sao.ru, edward.emelianoff@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "usefull_macros.h"
|
|
#include "fits.h"
|
|
|
|
void signals(int signo){
|
|
exit(signo);
|
|
}
|
|
|
|
int main(int argc, char **argv){
|
|
IMAGE *fits;
|
|
//size_t i, s;
|
|
initial_setup();
|
|
if(argc != 3) ERRX("Usage: %s infile outfile", argv[0]);
|
|
readFITS(argv[1], &fits);
|
|
DBG("ima: %dx%d", fits->width, fits->height);
|
|
//s = fits->width * fits->height;
|
|
//double *img = fits->data;
|
|
//for(i = 0; i < s; ++i) *img++ /= 2.;
|
|
unlink(argv[2]);
|
|
writeFITS(argv[2], fits);
|
|
imfree(&fits);
|
|
return 0;
|
|
}
|