Compare commits
No commits in common. "327cadd03ad51b6d948d30cbcbb27e3c756141da" and "6e6433368c07765fa014af4397cbc0053d691edb" have entirely different histories.
327cadd03a
...
6e6433368c
1
.gitignore
vendored
1
.gitignore
vendored
@ -52,7 +52,6 @@ v4l2/nc-camcontrol
|
|||||||
tools/fimg2png
|
tools/fimg2png
|
||||||
tools/fimg2pnm
|
tools/fimg2pnm
|
||||||
tools/fimg2tiff
|
tools/fimg2tiff
|
||||||
tools/fimg2fits
|
|
||||||
tools/fimg2text
|
tools/fimg2text
|
||||||
tools/fimgstats
|
tools/fimgstats
|
||||||
tools/mkfimg
|
tools/mkfimg
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* http://la.buvette.org/photos/cumul
|
* http://la.buvette.org/photos/cumul
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define FIMG_VERSION 131
|
#define FIMG_VERSION 130
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* in memory descriptor
|
* in memory descriptor
|
||||||
@ -174,7 +174,6 @@ int fimg_create_from_dump(char *fname, FloatImg *head);
|
|||||||
int fimg_save_R_as_fits(FloatImg *src, char *outname, int flags);
|
int fimg_save_R_as_fits(FloatImg *src, char *outname, int flags);
|
||||||
int fimg_save_G_as_fits(FloatImg *src, char *outname, int flags);
|
int fimg_save_G_as_fits(FloatImg *src, char *outname, int flags);
|
||||||
int fimg_save_B_as_fits(FloatImg *src, char *outname, int flags);
|
int fimg_save_B_as_fits(FloatImg *src, char *outname, int flags);
|
||||||
int fimg_save_plane_as_fits(FloatImg *src, char *oname, char plane, int flags);
|
|
||||||
|
|
||||||
int fimg_write_as_tiff(FloatImg *src, char *fname, int flags);
|
int fimg_write_as_tiff(FloatImg *src, char *fname, int flags);
|
||||||
int fimg_save_as_exr(FloatImg *src, char *outname, int flags);
|
int fimg_save_as_exr(FloatImg *src, char *outname, int flags);
|
||||||
|
@ -9,7 +9,7 @@ DEPS = ../floatimg.h ../libfloatimg.a Makefile
|
|||||||
# ----------
|
# ----------
|
||||||
|
|
||||||
all: fimg2pnm mkfimg png2fimg fimgstats fimg2png \
|
all: fimg2pnm mkfimg png2fimg fimgstats fimg2png \
|
||||||
fimg2tiff fimg2text fimg2fits \
|
fimg2tiff fimg2text \
|
||||||
addpnm2fimg cumulfimgs fimgops fimgfx
|
addpnm2fimg cumulfimgs fimgops fimgfx
|
||||||
|
|
||||||
fimgstats: fimgstats.c $(DEPS)
|
fimgstats: fimgstats.c $(DEPS)
|
||||||
@ -30,9 +30,6 @@ fimgfx: fimgfx.c $(DEPS)
|
|||||||
fimg2pnm: fimg2pnm.c $(DEPS)
|
fimg2pnm: fimg2pnm.c $(DEPS)
|
||||||
gcc $(COPT) $< ../libfloatimg.a -o $@
|
gcc $(COPT) $< ../libfloatimg.a -o $@
|
||||||
|
|
||||||
fimg2fits: fimg2fits.c $(DEPS)
|
|
||||||
gcc $(COPT) $< ../libfloatimg.a -lcfitsio -o $@
|
|
||||||
|
|
||||||
fimg2png: fimg2png.c $(DEPS)
|
fimg2png: fimg2png.c $(DEPS)
|
||||||
gcc $(COPT) $< ../libfloatimg.a -lpnglite -lz -o $@
|
gcc $(COPT) $< ../libfloatimg.a -lpnglite -lz -o $@
|
||||||
|
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
/*
|
|
||||||
* exporting a floatimg to a FITS file
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "../floatimg.h"
|
|
||||||
|
|
||||||
int verbosity;
|
|
||||||
|
|
||||||
/* ----------------------------------------------------------------- */
|
|
||||||
int export_fimg_plane_as_fits(char *infile, char *outfile, char plane)
|
|
||||||
{
|
|
||||||
FloatImg fimg;
|
|
||||||
int foo;
|
|
||||||
|
|
||||||
foo = fimg_create_from_dump(infile, &fimg);
|
|
||||||
if (foo) {
|
|
||||||
fprintf(stderr, "%s: create fimg from '%s' -> %d\n", __func__,
|
|
||||||
infile, foo);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
foo = fimg_save_plane_as_fits(&fimg, outfile, plane, 0);
|
|
||||||
if (foo) {
|
|
||||||
fprintf(stderr, "%s: err %d on fits export\n", __func__, foo);
|
|
||||||
return foo;
|
|
||||||
}
|
|
||||||
|
|
||||||
fimg_destroy(&fimg);
|
|
||||||
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
/* ----------------------------------------------------------------- */
|
|
||||||
static void help(int k)
|
|
||||||
{
|
|
||||||
puts("export to FITS format");
|
|
||||||
puts("\t-p select colorplane : R, G, B");
|
|
||||||
}
|
|
||||||
/* ----------------------------------------------------------------- */
|
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
int foo, opt;
|
|
||||||
int plane = '?';
|
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "p:hv")) != -1) {
|
|
||||||
switch(opt) {
|
|
||||||
case 'p': plane = optarg[0]; break;
|
|
||||||
case 'v': verbosity++; break;
|
|
||||||
case 'h': help(1); exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (2 != argc-optind) {
|
|
||||||
fprintf(stderr, "error: %s need two filenames\n", argv[0]);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
export_fimg_plane_as_fits(argv[optind], argv[optind+1], plane);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
/* ----------------------------------------------------------------- */
|
|
@ -23,8 +23,7 @@ fprintf(stderr, ">>> %25s ( '%s' '%s' %d )\n", __func__,
|
|||||||
|
|
||||||
foo = fimg_fileinfos(srcname, infos);
|
foo = fimg_fileinfos(srcname, infos);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
if (verbosity) fprintf(stderr, "'%s' get dims -> %d\n",
|
if (verbosity) fprintf(stderr, "'%s' get dims -> %d\n", srcname, foo);
|
||||||
srcname, foo);
|
|
||||||
return foo;
|
return foo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user