Browse Source

Add apt_temperature to API

tags/v1.8.0
Jon Beniston 2 years ago
parent
commit
61c248b911
3 changed files with 5 additions and 11 deletions
  1. +3
    -7
      src/image.c
  2. +0
    -2
      src/image.h
  3. +2
    -2
      src/main.c

+ 3
- 7
src/image.c View File

@@ -395,18 +395,14 @@ static double tempcal(float Ce, int satnum, tempparam_t * rgpr) {
}

// Temperature calibration wrapper
void temperature(options_t *opts, apt_image_t *img, int offset, int width){
void apt_temperature(int satnum, apt_image_t *img, int offset, int width){
tempparam_t temp;

printf("Temperature... ");
fflush(stdout);

tempcomp(tele, img->chB, opts->satnum - 15, &temp);
tempcomp(tele, img->chB, satnum - 15, &temp);

for (int y = 0; y < img->nrow; y++) {
for (int x = 0; x < width; x++) {
img->prow[y][x + offset] = (float)tempcal(img->prow[y][x + offset], opts->satnum - 15, &temp);
img->prow[y][x + offset] = (float)tempcal(img->prow[y][x + offset], satnum - 15, &temp);
}
}
printf("Done\n");
}

+ 0
- 2
src/image.h View File

@@ -1,4 +1,2 @@
#include "apt.h"
#include "common.h"

void APT_API temperature(options_t *opts, apt_image_t *img, int offset, int width);

+ 2
- 2
src/main.c View File

@@ -221,7 +221,7 @@ static int processAudio(char *filename, options_t *opts){
}

// Perform temperature calibration
temperature(opts, &tmpimg, APT_CHB_OFFSET, APT_CH_WIDTH);
apt_temperature(opts->satnum, &tmpimg, APT_CHB_OFFSET, APT_CH_WIDTH);
ImageOut(opts, &tmpimg, APT_CHB_OFFSET, APT_CH_WIDTH, "Temperature", Temperature, (char *)apt_TempPalette);
}

@@ -251,7 +251,7 @@ static int processAudio(char *filename, options_t *opts){
if (CONTAINS(opts->type, Palleted)) {
img.palette = opts->palette;
strcpy(desc, "Palette composite");
ImageOut(opts, &img, APT_CHA_OFFSET, 909, desc, Palleted, NULL);
ImageOut(opts, &img, APT_CHA_OFFSET, APT_CH_WIDTH, desc, Palleted, NULL);
}

// Channel A


Loading…
Cancel
Save