/* * This file is part of the loccorr project. * Copyright 2021 Edward V. Emelianov . * * 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 3 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, see . */ #pragma once #ifndef IMAGEFILE_H__ #define IMAGEFILE_H__ #include #include // size_t #ifndef OMP_FOR #define Stringify(x) #x #define OMP_FOR(x) _Pragma(Stringify(omp parallel for x)) #endif typedef uint8_t Imtype; // 65536 if Imtype is uint16_t // WARNING! Check code if you change Imtype: e.g. recalcexp() and other #define HISTOSZ (256) typedef struct{ // statistics: mean, RMS, area float xc; float yc; float xsigma; float ysigma; int area; } ptstat_t; typedef struct{ int width; // width int height; // height Imtype *data; // picture data Imtype minval; // extremal data values Imtype maxval; float avg_intensity; Imtype background; // background value ptstat_t stat; // image statistics uint64_t counter; // image counter } Image; // input file/directory type typedef enum{ T_WRONG, T_DIRECTORY, T_BMP, T_FITS, T_GZIP, T_GIF, T_JPEG, T_PNG, T_CAPT_GRASSHOPPER, // capture grasshopper T_CAPT_BASLER, T_CAPT_HIKROBOT } InputType; void Image_minmax(Image *I); uint8_t *linear(const Image *I, int nchannels); uint8_t *equalize(const Image *I, int nchannels, double throwpart); InputType chkinput(const char *name); Image *Image_read(const char *name); Image *Image_new(int w, int h); Image *Image_sim(const Image *i); void Image_free(Image **I); int Image_write_jpg(const Image *I, const char *name, int equalize); int get_histogram(const Image *I, size_t histo[HISTOSZ]); int calc_background(Image *img); Image *u8toImage(const uint8_t *data, int width, int height, int stride); Image *bin2Im(const uint8_t *image, int W, int H); uint8_t *Im2bin(const Image *im, Imtype bk); size_t *bin2ST(const uint8_t *image, int W, int H); //Image *ST2Im(const size_t *image, int W, int H); #endif // IMAGEFILE_H__