mirror of
https://github.com/eddyem/improclib.git
synced 2025-12-06 02:35:15 +03:00
744 lines
21 KiB
C
744 lines
21 KiB
C
/*
|
|
* This file is part of the improclib project.
|
|
* Copyright 2023 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/>.
|
|
*/
|
|
|
|
#include <dirent.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#include "stb/stb_image.h"
|
|
#include "stb/stb_image_write.h"
|
|
|
|
#include "improclib.h"
|
|
#include "openmp.h"
|
|
|
|
typedef struct{
|
|
const char signature[8];
|
|
uint8_t len;
|
|
il_InputType it;
|
|
} imsign;
|
|
|
|
const imsign signatures[] = {
|
|
{"BM", 2, T_BMP},
|
|
{"SIMPLE", 6, T_FITS},
|
|
{{0x1f, 0x8b, 0x08}, 3, T_GZIP},
|
|
{"GIF8", 4, T_GIF},
|
|
{{0xff, 0xd8, 0xff, 0xdb}, 4, T_JPEG},
|
|
{{0xff, 0xd8, 0xff, 0xe0}, 4, T_JPEG},
|
|
{{0xff, 0xd8, 0xff, 0xe1}, 4, T_JPEG},
|
|
{{0x89, 0x50, 0x4e, 0x47}, 4, T_PNG},
|
|
// {{0x49, 0x49, 0x2a, 0x00}, 4, T_TIFF},
|
|
{"", 0, T_WRONG}
|
|
};
|
|
|
|
#ifdef EBUG
|
|
static char *hexdmp(const char sig[8]){
|
|
static char buf[128];
|
|
char *bptr = buf;
|
|
bptr += sprintf(bptr, "[ ");
|
|
for(int i = 0; i < 7; ++i){
|
|
bptr += sprintf(bptr, "%02X ", (uint8_t)sig[i]);
|
|
}
|
|
bptr += sprintf(bptr, "]");
|
|
return buf;
|
|
}
|
|
#endif
|
|
|
|
static const int bytes[IMTYPE_AMOUNT] = {
|
|
[IMTYPE_U8] = 1,
|
|
[IMTYPE_U16] = 2,
|
|
[IMTYPE_U32] = 4,
|
|
[IMTYPE_F] = sizeof(float),
|
|
[IMTYPE_D] = sizeof(double)
|
|
};
|
|
|
|
// return amount of bytes per pixel for given image type
|
|
int il_getpixbytes(il_imtype_t type){
|
|
if(type >= IMTYPE_AMOUNT) return -1;
|
|
return bytes[type];
|
|
}
|
|
|
|
/**
|
|
* @brief imtype - check image type of given file
|
|
* @param f - opened image file structure
|
|
* @return image type or T_WRONG
|
|
*/
|
|
static il_InputType imtype(FILE *f){
|
|
char signature[8];
|
|
int x = fread(signature, 1, 7, f);
|
|
DBG("x=%d", x);
|
|
if(7 != x){
|
|
WARN("Can't read file signature");
|
|
return T_WRONG;
|
|
}
|
|
signature[7] = 0;
|
|
const imsign *s = signatures;
|
|
DBG("Got signature: %s (%s)", hexdmp(signature), signature);
|
|
while(s->len){
|
|
DBG("Check %s", s->signature);
|
|
if(0 == memcmp(s->signature, signature, s->len)){
|
|
DBG("Found signature %s", s->signature);
|
|
return s->it;
|
|
}
|
|
++s;
|
|
}
|
|
return T_WRONG;
|
|
}
|
|
|
|
/**
|
|
* @brief il_chkinput - check file/directory name
|
|
* @param name - name of file or directory
|
|
* @return type of `name`
|
|
*/
|
|
il_InputType il_chkinput(const char *name){
|
|
DBG("input name: %s", name);
|
|
struct stat fd_stat;
|
|
if(stat(name, &fd_stat)){
|
|
WARN("Can't stat() %s", name);
|
|
return T_WRONG;
|
|
}
|
|
if(S_ISDIR(fd_stat.st_mode)){
|
|
DBG("%s is a directory", name);
|
|
DIR *d = opendir(name);
|
|
if(!d){
|
|
WARN("Can't open directory %s", name);
|
|
return T_WRONG;
|
|
}
|
|
closedir(d);
|
|
return T_DIRECTORY;
|
|
}
|
|
FILE *f = fopen(name, "r");
|
|
if(!f){
|
|
WARN("Can't open file %s", name);
|
|
return T_WRONG;
|
|
}
|
|
il_InputType tp = imtype(f);
|
|
DBG("Image type of %s is %d", name, tp);
|
|
fclose(f);
|
|
return tp;
|
|
}
|
|
|
|
/**
|
|
* @brief il_u8toImage - convert uint8_t data to Image structure
|
|
* @param data - original image data
|
|
* @param width - image width
|
|
* @param height - image height
|
|
* @param stride - image width with alignment
|
|
* @return Image structure (fully allocated, you can FREE(data) after it)
|
|
*/
|
|
il_Image *il_u82Image(const uint8_t *data, int width, int height){
|
|
FNAME();
|
|
il_Image *outp = il_Image_new(width, height, IMTYPE_U8);
|
|
memcpy(outp->data, data, width*height);
|
|
il_Image_minmax(outp);
|
|
return outp;
|
|
}
|
|
|
|
/**
|
|
* @brief im_loadmono - load image file
|
|
* @param name - filename
|
|
* @return Image structure or NULL
|
|
*/
|
|
static inline il_Image *im_loadmono(const char *name){
|
|
int width, height, channels;
|
|
int is16 = stbi_is_16_bit(name);
|
|
#ifdef EBUG
|
|
int x,y,n,ok;
|
|
ok = stbi_info(name, &x, &y, &n);
|
|
if(ok){
|
|
green("%s: %dx%d pix, %d channels", name, x,y, n);
|
|
if(is16) green("\t16bit!");
|
|
printf("\n");
|
|
}
|
|
#endif
|
|
void *img;
|
|
if(is16) img = stbi_load_16(name, &width, &height, &channels, 1);
|
|
else img = stbi_load(name, &width, &height, &channels, 1);
|
|
if(!img){
|
|
WARNX("Error in loading the image %s\n", name);
|
|
return NULL;
|
|
}
|
|
il_Image *I = MALLOC(il_Image, 1);
|
|
I->data = img;
|
|
I->width = width;
|
|
I->height = height;
|
|
I->type = is16 ? IMTYPE_U16 : IMTYPE_U8;
|
|
I->pixbytes = bytes[I->type];
|
|
il_Image_minmax(I);
|
|
return I;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Image_read - read image from any supported file type
|
|
* @param name - path to image
|
|
* @return image or NULL if failed
|
|
*/
|
|
il_Image *il_Image_read(const char *name){
|
|
il_InputType tp = il_chkinput(name);
|
|
if(tp == T_DIRECTORY || tp == T_WRONG){
|
|
WARNX("Bad file type to read");
|
|
return NULL;
|
|
}
|
|
il_Image *outp = im_loadmono(name);
|
|
return outp;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Img3_read - read color image from file 'name'
|
|
* @param name - input file name
|
|
* @return image read or NULL if error
|
|
*/
|
|
il_Img3 *il_Img3_read(const char *name){
|
|
il_InputType tp = il_chkinput(name);
|
|
if(tp == T_DIRECTORY || tp == T_WRONG){
|
|
WARNX("Bad file type to read");
|
|
return NULL;
|
|
}
|
|
il_Img3 *I = MALLOC(il_Img3, 1);
|
|
int channels;
|
|
I->data = stbi_load(name, &I->width, &I->height, &channels, 3);
|
|
if(!I->data){
|
|
FREE(I);
|
|
return NULL;
|
|
}
|
|
return I;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Image_new - allocate memory for new struct Image & Image->data
|
|
* @param w, h - image size
|
|
* @return data allocated here
|
|
*/
|
|
il_Image *il_Image_new(int w, int h, il_imtype_t type){
|
|
if(w < 1 || h < 1) return NULL;
|
|
if(type >= IMTYPE_AMOUNT) return NULL;
|
|
il_Image *o = MALLOC(il_Image, 1);
|
|
o->width = w;
|
|
o->height = h;
|
|
o->type = type;
|
|
o->pixbytes = il_getpixbytes(type);
|
|
o->data = calloc(w*h, o->pixbytes);
|
|
if(!o->data) ERR("calloc()");
|
|
return o;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Image_sim - allocate memory for new empty Image with similar size & data type
|
|
* @param i - sample image
|
|
* @return data allocated here (with empty keylist & zeros in data)
|
|
*/
|
|
il_Image *il_Image_sim(const il_Image *i){
|
|
if(!i) return NULL;
|
|
il_Image *outp = il_Image_new(i->width, i->height, i->type);
|
|
return outp;
|
|
}
|
|
|
|
// free image data
|
|
void il_Image_free(il_Image **img){
|
|
if(!img || !*img) return;
|
|
FREE((*img)->data);
|
|
FREE(*img);
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief il_histogram8 - calculate image histogram for 8-bit image
|
|
* @param I - orig
|
|
* @return 256 byte array
|
|
*/
|
|
size_t *il_histogram8(const il_Image *I){
|
|
if(!I || !I->data || I->type != IMTYPE_U8) return NULL;
|
|
size_t *histogram = MALLOC(size_t, 256);
|
|
int wh = I->width * I->height;
|
|
uint8_t *data = (uint8_t*)I->data;
|
|
#pragma omp parallel
|
|
{
|
|
size_t histogram_private[256] = {0};
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
++histogram_private[data[i]];
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
for(int i = 0; i < 256; ++i) histogram[i] += histogram_private[i];
|
|
}
|
|
}
|
|
#if 0
|
|
for(int i = 0; i < wh; ++i){
|
|
++histogram[data[i]];
|
|
}
|
|
#endif
|
|
return histogram;
|
|
}
|
|
|
|
/**
|
|
* @brief il_histogram16 - calculate image histogram for 16-bit image
|
|
* @param I - orig
|
|
* @return 65536 byte array
|
|
*/
|
|
size_t *il_histogram16(const il_Image *I){
|
|
if(!I || !I->data || I->type != IMTYPE_U16) return NULL;
|
|
size_t *histogram = MALLOC(size_t, 65536);
|
|
int wh = I->width * I->height;
|
|
uint16_t *data = (uint16_t*)I->data;
|
|
#pragma omp parallel
|
|
{
|
|
size_t histogram_private[65536] = {0};
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
++histogram_private[data[i]];
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
for(int i = 0; i < 65536; ++i) histogram[i] += histogram_private[i];
|
|
}
|
|
}
|
|
return histogram;
|
|
}
|
|
// near-zero threshold to find 2nd derivative bend-point
|
|
#define DERIV_THRESHOLD (5)
|
|
|
|
/**
|
|
* @brief calc_background - Simple background calculation by histogram
|
|
* @param img (i) - input image (here will be modified its top2proc field)
|
|
* @param bk (o) - background value
|
|
* @return 0 if error
|
|
*/
|
|
int il_Image_background(il_Image *img, double *bkg){
|
|
if(!img || !img->data || !bkg) return FALSE;
|
|
il_Image_minmax(img);
|
|
if(img->maxval == img->minval){
|
|
WARNX("Zero or overilluminated image!");
|
|
return FALSE;
|
|
}
|
|
size_t *histogram = NULL;
|
|
int histosize = 0;
|
|
switch(img->type){
|
|
case IMTYPE_U8:
|
|
histogram = il_histogram8(img);
|
|
histosize = 256;
|
|
break;
|
|
case IMTYPE_U16:
|
|
histogram = il_histogram16(img);
|
|
histosize = 65536;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if(!histogram){
|
|
WARNX("calc_background() supported only 8- and 16-bit images");
|
|
return FALSE;
|
|
}
|
|
|
|
size_t modeidx = 0, modeval = 0;
|
|
for(int i = 0; i < histosize; ++i)
|
|
if(modeval < histogram[i]){
|
|
modeval = histogram[i];
|
|
modeidx = i;
|
|
}
|
|
//DBG("Mode=%g @ idx%d (N=%d)", ((Imtype)modeidx / 255.)*ampl, modeidx, modeval);
|
|
ssize_t *diff2 = MALLOC(ssize_t, histosize);
|
|
int lastidx = histosize - 1;
|
|
OMP_FOR()
|
|
for(int i = 2; i < lastidx; ++i)
|
|
diff2[i] = ((ssize_t)histogram[i+2]+(ssize_t)histogram[i-2]-2*(ssize_t)histogram[i])/4;
|
|
//green("HISTO:\n");
|
|
//for(int i = 0; i < 256; ++i) printf("%d:\t%zd\t%zd\n", i, histogram[i], diff2[i]);
|
|
FREE(histogram);
|
|
if(modeidx < 2) modeidx = 2;
|
|
if((int)modeidx > lastidx-1){
|
|
WARNX("Overilluminated image");
|
|
FREE(diff2);
|
|
return FALSE; // very bad image: overilluminated
|
|
}
|
|
size_t borderidx = modeidx;
|
|
for(int i = modeidx; i < lastidx; ++i){ // search bend-point by second derivate
|
|
//if(diff2[i] <= 0 && diff2[i+1] <= 0){
|
|
if(diff2[i] < DERIV_THRESHOLD && diff2[i] > -DERIV_THRESHOLD && diff2[i+1] < DERIV_THRESHOLD && diff2[i+1] > -DERIV_THRESHOLD){
|
|
//DBG("i=%d, diff=%zd, next=%zd", i, diff2[i], diff2[i+1]);
|
|
borderidx = i; break;
|
|
}
|
|
}
|
|
DBG("borderidx=%zd, modeidx=%zd, avr=%zd", borderidx, modeidx, (borderidx+modeidx)/2);
|
|
//*bk = (borderidx + modeidx) / 2;
|
|
*bkg = borderidx;
|
|
FREE(diff2);
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* @brief equalize8 - 8bit image hystogram equalization
|
|
* @param I - input image
|
|
* @param nchannels - 1 or 3 colour channels
|
|
* @param throwpart - which part of black pixels (from all amount) to throw away
|
|
* @return allocated here image for jpeg/png storing
|
|
*/
|
|
uint8_t *il_equalize8(il_Image *I, int nchannels, double throwpart){
|
|
if(!I || !I->data || (nchannels != 1 && nchannels != 3)) return NULL;
|
|
il_Image_minmax(I);
|
|
int width = I->width, height = I->height;
|
|
size_t stride = width*nchannels, S = height*stride;
|
|
size_t *orig_histo = il_histogram8(I); // original hystogram (linear)
|
|
if(!orig_histo) return NULL;
|
|
uint8_t *outp = MALLOC(uint8_t, S);
|
|
uint8_t eq_levls[256] = {0}; // levels to convert: newpix = eq_levls[oldpix]
|
|
int s = width*height;
|
|
int Nblack = 0, bpart = (int)(throwpart * (double)s);
|
|
int startidx;
|
|
// remove first part of black pixels
|
|
for(startidx = 0; startidx < 256; ++startidx){
|
|
Nblack += orig_histo[startidx];
|
|
if(Nblack >= bpart) break;
|
|
}
|
|
++startidx;
|
|
//DBG("Throw %d (real: %d black) pixels, startidx=%d", bpart, Nblack, startidx);
|
|
double part = (double)(s + 1. - Nblack) / 256., N = 0.;
|
|
for(int i = startidx; i < 256; ++i){
|
|
N += orig_histo[i];
|
|
eq_levls[i] = (uint8_t)(N/part);
|
|
}
|
|
//for(int i = stopidx; i < 256; ++i) eq_levls[i] = 255;
|
|
#if 0
|
|
DBG("Original / new histogram");
|
|
for(int i = 0; i < 256; ++i) printf("%d\t%d\t%d\n", i, orig_hysto[i], eq_levls[i]);
|
|
#endif
|
|
uint8_t *Idata = (uint8_t*)I->data;
|
|
if(nchannels == 3){
|
|
OMP_FOR()
|
|
for(int y = 0; y < height; ++y){
|
|
uint8_t *Out = &outp[y*stride];
|
|
uint8_t *In = &Idata[y*width];
|
|
for(int x = 0; x < width; ++x){
|
|
Out[0] = Out[1] = Out[2] = eq_levls[*In++];
|
|
Out += 3;
|
|
}
|
|
}
|
|
}else{
|
|
OMP_FOR()
|
|
for(int y = 0; y < height; ++y){
|
|
uint8_t *Out = &outp[y*width];
|
|
uint8_t *In = &Idata[y*width];
|
|
for(int x = 0; x < width; ++x){
|
|
*Out++ = eq_levls[*In++];
|
|
}
|
|
}
|
|
}
|
|
FREE(orig_histo);
|
|
return outp;
|
|
}
|
|
|
|
/**
|
|
* @brief equalize16 - 16bit image hystogram equalization
|
|
* @param I - input image
|
|
* @param nchannels - 1 or 3 colour channels
|
|
* @param throwpart - which part of black pixels (from all amount) to throw away
|
|
* @return allocated here image for jpeg/png storing
|
|
*/
|
|
uint8_t *il_equalize16(il_Image *I, int nchannels, double throwpart){
|
|
if(!I || !I->data || (nchannels != 1 && nchannels != 3)) return NULL;
|
|
il_Image_minmax(I);
|
|
int width = I->width, height = I->height;
|
|
size_t stride = width*nchannels, S = height*stride;
|
|
size_t *orig_histo = il_histogram8(I); // original hystogram (linear)
|
|
if(!orig_histo) return NULL;
|
|
uint8_t *outp = MALLOC(uint8_t, S);
|
|
uint16_t *eq_levls = MALLOC(uint16_t, 65536); // levels to convert: newpix = eq_levls[oldpix]
|
|
int s = width*height;
|
|
int Nblack = 0, bpart = (int)(throwpart * (double)s);
|
|
int startidx;
|
|
// remove first part of black pixels
|
|
for(startidx = 0; startidx < 65536; ++startidx){
|
|
Nblack += orig_histo[startidx];
|
|
if(Nblack >= bpart) break;
|
|
}
|
|
++startidx;
|
|
//DBG("Throw %d (real: %d black) pixels, startidx=%d", bpart, Nblack, startidx);
|
|
double part = (double)(s + 1. - Nblack) / 65536., N = 0.;
|
|
for(int i = startidx; i < 65536; ++i){
|
|
N += orig_histo[i];
|
|
eq_levls[i] = (uint8_t)(N/part);
|
|
}
|
|
uint8_t *Idata = (uint8_t*)I->data;
|
|
if(nchannels == 3){
|
|
OMP_FOR()
|
|
for(int y = 0; y < height; ++y){
|
|
uint8_t *Out = &outp[y*stride];
|
|
uint8_t *In = &Idata[y*width];
|
|
for(int x = 0; x < width; ++x){
|
|
Out[0] = Out[1] = Out[2] = eq_levls[*In++];
|
|
Out += 3;
|
|
}
|
|
}
|
|
}else{
|
|
OMP_FOR()
|
|
for(int y = 0; y < height; ++y){
|
|
uint8_t *Out = &outp[y*width];
|
|
uint8_t *In = &Idata[y*width];
|
|
for(int x = 0; x < width; ++x){
|
|
*Out++ = eq_levls[*In++];
|
|
}
|
|
}
|
|
}
|
|
FREE(orig_histo);
|
|
FREE(eq_levls);
|
|
return outp;
|
|
}
|
|
|
|
static void u8minmax(il_Image *I){
|
|
uint8_t *data = (uint8_t*)I->data;
|
|
double min = *data, max = min;
|
|
int wh = I->width * I->height;
|
|
#pragma omp parallel shared(min, max)
|
|
{
|
|
double min_p = min, max_p = max;
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
double pixval = (double)data[i];
|
|
if(pixval < min_p) min_p = pixval;
|
|
else if(pixval > max_p) max_p = pixval;
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
if(min > min_p) min = min_p;
|
|
if(max < max_p) max = max_p;
|
|
}
|
|
}
|
|
I->maxval = max;
|
|
I->minval = min;
|
|
}
|
|
static void u16minmax(il_Image *I){
|
|
uint16_t *data = (uint16_t*)I->data;
|
|
double min = *data, max = min;
|
|
int wh = I->width * I->height;
|
|
#pragma omp parallel shared(min, max)
|
|
{
|
|
double min_p = min, max_p = max;
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
double pixval = (double)data[i];
|
|
if(pixval < min_p) min_p = pixval;
|
|
else if(pixval > max_p) max_p = pixval;
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
if(min > min_p) min = min_p;
|
|
if(max < max_p) max = max_p;
|
|
}
|
|
}
|
|
I->maxval = max;
|
|
I->minval = min;
|
|
}
|
|
static void u32minmax(il_Image *I){
|
|
uint32_t *data = (uint32_t*)I->data;
|
|
double min = *data, max = min;
|
|
int wh = I->width * I->height;
|
|
#pragma omp parallel shared(min, max)
|
|
{
|
|
double min_p = min, max_p = max;
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
double pixval = (double)data[i];
|
|
if(pixval < min_p) min_p = pixval;
|
|
else if(pixval > max_p) max_p = pixval;
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
if(min > min_p) min = min_p;
|
|
if(max < max_p) max = max_p;
|
|
}
|
|
}
|
|
I->maxval = max;
|
|
I->minval = min;
|
|
}
|
|
static void fminmax(il_Image *I){
|
|
float *data = (float*)I->data;
|
|
double min = *data, max = min;
|
|
int wh = I->width * I->height;
|
|
#pragma omp parallel shared(min, max)
|
|
{
|
|
double min_p = min, max_p = max;
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
double pixval = (double)data[i];
|
|
if(pixval < min_p) min_p = pixval;
|
|
else if(pixval > max_p) max_p = pixval;
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
if(min > min_p) min = min_p;
|
|
if(max < max_p) max = max_p;
|
|
}
|
|
}
|
|
I->maxval = max;
|
|
I->minval = min;
|
|
}
|
|
static void dminmax(il_Image *I){
|
|
double *data = (double*)I->data;
|
|
double min = *data, max = min;
|
|
int wh = I->width * I->height;
|
|
#pragma omp parallel shared(min, max)
|
|
{
|
|
double min_p = min, max_p = max;
|
|
#pragma omp for nowait
|
|
for(int i = 0; i < wh; ++i){
|
|
double pixval = (double)data[i];
|
|
if(pixval < min_p) min_p = pixval;
|
|
else if(pixval > max_p) max_p = pixval;
|
|
}
|
|
#pragma omp critical
|
|
{
|
|
if(min > min_p) min = min_p;
|
|
if(max < max_p) max = max_p;
|
|
}
|
|
}
|
|
I->maxval = max;
|
|
I->minval = min;
|
|
}
|
|
|
|
// calculate extremal values of image data and store them in it
|
|
void il_Image_minmax(il_Image *I){
|
|
if(!I || !I->data) return;
|
|
#ifdef EBUG
|
|
double t0 = sl_dtime();
|
|
#endif
|
|
switch(I->type){
|
|
case IMTYPE_U8:
|
|
u8minmax(I);
|
|
break;
|
|
case IMTYPE_U16:
|
|
u16minmax(I);
|
|
break;
|
|
case IMTYPE_U32:
|
|
u32minmax(I);
|
|
break;
|
|
case IMTYPE_F:
|
|
fminmax(I);
|
|
break;
|
|
case IMTYPE_D:
|
|
dminmax(I);
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
DBG("Image_minmax(): Min=%g, Max=%g, time: %gms", I->minval, I->maxval, (sl_dtime()-t0)*1e3);
|
|
}
|
|
|
|
/*
|
|
* =================== SAVE IMAGES ===========================>
|
|
*/
|
|
|
|
/**
|
|
* @brief write_jpg - write jpeg file
|
|
* @param name - filename
|
|
* @param w - width
|
|
* @param h - height
|
|
* @param ncolors - 1 or 3 (mono/color)
|
|
* @param bytes - image data
|
|
* @param quality - jpeg quality
|
|
* @return FALSE if failed
|
|
*/
|
|
int il_write_jpg(const char *name, int w, int h, int ncolors, uint8_t *bytes, int quality){
|
|
if(!bytes || !name || quality < 5 || quality > 100 || (ncolors != 1 && ncolors != 3) || w < 1 || h < 1) return FALSE;
|
|
char *tmpnm = MALLOC(char, strlen(name) + 10);
|
|
sprintf(tmpnm, "%s-tmp.jpg", name);
|
|
int r = stbi_write_jpg(tmpnm, w, h, ncolors, bytes, quality);
|
|
if(r){
|
|
if(rename(tmpnm, name)){
|
|
WARN("rename()");
|
|
r = FALSE;
|
|
}
|
|
}
|
|
FREE(tmpnm);
|
|
return r;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Img3_jpg - save Img3 as jpeg
|
|
* @param name - output file name
|
|
* @param I3 - image
|
|
* @param quality - jpeg quality
|
|
* @return FALSE if failed
|
|
*/
|
|
int il_Img3_jpg(const char *name, il_Img3 *I3, int quality){
|
|
if(!name || quality < 5 || quality > 100 || !I3 || !I3->data || I3->width < 1 || I3->height < 1) return FALSE;
|
|
char *tmpnm = MALLOC(char, strlen(name) + 10);
|
|
sprintf(tmpnm, "%s-tmp.jpg", name);
|
|
int r = stbi_write_jpg(tmpnm, I3->width, I3->height, 3, I3->data, quality);
|
|
if(r){
|
|
if(rename(tmpnm, name)){
|
|
WARN("rename()");
|
|
r = FALSE;
|
|
}
|
|
}
|
|
FREE(tmpnm);
|
|
return r;
|
|
}
|
|
|
|
/**
|
|
* @brief write_png - write png file
|
|
* @param name - filename
|
|
* @param w - width
|
|
* @param h - height
|
|
* @param ncolors - 1 or 3 (mono/color)
|
|
* @param bytes - image data
|
|
* @return FALSE if failed
|
|
*/
|
|
int il_write_png(const char *name, int w, int h, int ncolors, uint8_t *bytes){
|
|
if(!bytes || !name || (ncolors != 1 && ncolors != 3) || w < 1 || h < 1) return FALSE;
|
|
char *tmpnm = MALLOC(char, strlen(name) + 10);
|
|
sprintf(tmpnm, "%s-tmp.jpg", name);
|
|
int r = stbi_write_png(tmpnm, w, h, ncolors, bytes, w);
|
|
if(r){
|
|
if(rename(tmpnm, name)){
|
|
WARN("rename()");
|
|
r = FALSE;
|
|
}
|
|
}
|
|
FREE(tmpnm);
|
|
return r;
|
|
}
|
|
|
|
/**
|
|
* @brief il_Img3_png - save Img3 as jpeg
|
|
* @param name - output file name
|
|
* @param I3 - image
|
|
* @param quality - jpeg quality
|
|
* @return FALSE if failed
|
|
*/
|
|
int il_Img3_png(const char *name, il_Img3 *I3){
|
|
if(!name || !I3 || !I3->data || I3->width < 1 || I3->height < 1) return FALSE;
|
|
char *tmpnm = MALLOC(char, strlen(name) + 10);
|
|
sprintf(tmpnm, "%s-tmp.png", name);
|
|
int r = stbi_write_png(tmpnm, I3->width, I3->height, 3, I3->data, 0);
|
|
if(r){
|
|
if(rename(tmpnm, name)){
|
|
WARN("rename()");
|
|
r = FALSE;
|
|
}
|
|
}
|
|
FREE(tmpnm);
|
|
return r;
|
|
}
|
|
|
|
|
|
/*
|
|
* <=================== SAVE IMAGES ===========================
|
|
*/
|