mirror of
https://github.com/eddyem/astrovideoguide_v3.git
synced 2025-12-06 18:55:11 +03:00
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
/*
|
|
* This file is part of the loccorr project.
|
|
* Copyright 2021 Edward V. Emelianov <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 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
#ifndef IMAGEFILE_H__
|
|
#define IMAGEFILE_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h> // size_t
|
|
|
|
#ifndef OMP_FOR
|
|
#define Stringify(x) #x
|
|
#define OMP_FOR(x) _Pragma(Stringify(omp parallel for x))
|
|
#endif
|
|
|
|
#ifdef THREAD_NUMBER
|
|
#define OMP_NUM_THREADS THREAD_NUMBER
|
|
#endif
|
|
|
|
typedef uint8_t Imtype; // maybe float or double only
|
|
|
|
typedef struct{
|
|
int width; // width
|
|
int height; // height
|
|
Imtype *data; // picture data
|
|
Imtype minval; // extremal data values
|
|
Imtype maxval;
|
|
char **keylist; // list of options for each key
|
|
size_t keynum; // full number of keys (size of *keylist)
|
|
} 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
|
|
} 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);
|
|
size_t *get_histogram(const Image *I);
|
|
int calc_background(const Image *img, Imtype *bk);
|
|
|
|
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__
|