You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

352 lines
9.6 KiB

  1. /*
  2. * This file is part of Aptdec.
  3. * Copyright (c) 2004-2009 Thierry Leconte (F4DWV), Xerbo (xerbo@protonmail.com) 2019-2020
  4. *
  5. * Aptdec is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. *
  18. */
  19. #include <stdlib.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include <getopt.h>
  23. #include <libgen.h>
  24. #include <math.h>
  25. #include <sndfile.h>
  26. #include <errno.h>
  27. #include <time.h>
  28. #include "common.h"
  29. #include "offsets.h"
  30. // DSP
  31. extern int init_dsp(double F);
  32. extern int getpixelrow(float *pixelv, int nrow, int *zenith, int reset);
  33. // I/O
  34. extern int readRawImage(char *filename, float **prow, int *nrow);
  35. extern int ImageOut(options_t *opts, image_t *img, int offset, int width, char *desc, char chid, char *palette);
  36. extern int initWriter(options_t *opts, image_t *img, int width, int height, char *desc, char *chid);
  37. extern void pushRow(float *row, int width);
  38. extern void closeWriter();
  39. // Image functions
  40. extern int calibrate(float **prow, int nrow, int offset, int width);
  41. extern void histogramEqualise(float **prow, int nrow, int offset, int width);
  42. extern void linearEnhance(float **prow, int nrow, int offset, int width);
  43. extern void temperature(options_t *opts, image_t *img, int offset, int width);
  44. extern void denoise(float **prow, int nrow, int offset, int width);
  45. extern void distrib(options_t *opts, image_t *img, char chid);
  46. extern void flipImage(image_t *img, int width, int offset);
  47. extern void cropNoise(image_t *img);
  48. // Palettes
  49. extern char GviPalette[256*3];
  50. extern char TempPalette[256*3];
  51. // Audio file
  52. static SNDFILE *audioFile;
  53. // Number of channels in audio file
  54. int channels = 1;
  55. // Function declarations
  56. static int initsnd(char *filename);
  57. int getsample(float *sample, int nb);
  58. static int processAudio(char *filename, options_t *opts);
  59. static void usage(void);
  60. int main(int argc, char **argv) {
  61. fprintf(stderr, VERSION"\n");
  62. // Check if there are actually any input files
  63. if(argc == optind || argc == 1){
  64. fprintf(stderr, "No input files provided.\n");
  65. usage();
  66. }
  67. options_t opts = { "r", "", 19, "", ".", 0, "", "", 1.0 };
  68. // Parse arguments
  69. int opt;
  70. while ((opt = getopt(argc, argv, "o:m:d:i:s:e:p:g:r")) != EOF) {
  71. switch (opt) {
  72. case 'd':
  73. opts.path = optarg;
  74. break;
  75. case 'm':
  76. opts.map = optarg;
  77. break;
  78. case 'i':
  79. opts.type = optarg;
  80. break;
  81. case 's':
  82. opts.satnum = atoi(optarg);
  83. if(opts.satnum < 15 || opts.satnum > 19){
  84. fprintf(stderr, "Invalid satellite number, it must be the range 15-19\n");
  85. exit(EPERM);
  86. }
  87. break;
  88. case 'e':
  89. opts.effects = optarg;
  90. break;
  91. case 'r':
  92. opts.realtime = 1;
  93. break;
  94. case 'o':
  95. opts.filename = optarg;
  96. break;
  97. case 'p':
  98. opts.palette = optarg;
  99. break;
  100. case 'g':
  101. opts.gamma = atof(optarg);
  102. break;
  103. default:
  104. usage();
  105. }
  106. }
  107. // Process the files
  108. for (; optind < argc; optind++) {
  109. processAudio(argv[optind], &opts);
  110. }
  111. exit(0);
  112. }
  113. static int processAudio(char *filename, options_t *opts){
  114. // Image info struct
  115. image_t img;
  116. // Mapping between wedge value and channel ID
  117. static struct {
  118. char *id[7];
  119. char *name[7];
  120. } ch = {
  121. { "?", "1", "2", "3A", "4", "5", "3B" },
  122. { "unknown", "visble", "near-infrared", "mid-infrared", "thermal-infrared", "thermal-infrared", "mid-infrared" }
  123. };
  124. // Buffer for image channel
  125. char desc[60];
  126. // Parse file path
  127. char path[256], extension[32];
  128. strcpy(path, filename);
  129. strcpy(path, dirname(path));
  130. sscanf(basename(filename), "%255[^.].%31s", img.name, extension);
  131. if(opts->realtime){
  132. // Set output filename to current time when in realtime mode
  133. time_t t;
  134. time(&t);
  135. strncpy(img.name, ctime(&t), 24);
  136. // Init a row writer
  137. initWriter(opts, &img, IMG_WIDTH, MAX_HEIGHT, "Unprocessed realtime image", "r");
  138. }
  139. if(strcmp(extension, "png") == 0){
  140. // Read PNG into image buffer
  141. printf("Reading %s\n", filename);
  142. if(readRawImage(filename, img.prow, &img.nrow) == 0){
  143. exit(EPERM);
  144. }
  145. }else{
  146. // Attempt to open the audio file
  147. if (initsnd(filename) == 0)
  148. exit(EPERM);
  149. // Build image
  150. // TODO: multithreading, would require some sort of input buffer
  151. for (img.nrow = 0; img.nrow < MAX_HEIGHT; img.nrow++) {
  152. // Allocate memory for this row
  153. img.prow[img.nrow] = (float *) malloc(sizeof(float) * 2150);
  154. // Write into memory and break the loop when there are no more samples to read
  155. if (getpixelrow(img.prow[img.nrow], img.nrow, &img.zenith, (img.nrow == 0)) == 0)
  156. break;
  157. if(opts->realtime) pushRow(img.prow[img.nrow], IMG_WIDTH);
  158. fprintf(stderr, "Row: %d\r", img.nrow);
  159. fflush(stderr);
  160. }
  161. // Close stream
  162. sf_close(audioFile);
  163. }
  164. if(opts->realtime) closeWriter();
  165. printf("Total rows: %d\n", img.nrow);
  166. // Fallback for detecting the zenith
  167. // TODO: encode metadata in raw images
  168. if(opts->map != NULL && opts->map[0] != '\0' && img.zenith == 0){
  169. fprintf(stderr, "Guessing zenith in image, map will most likely be misaligned.\n");
  170. img.zenith = img.nrow / 2;
  171. }
  172. // Calibrate
  173. img.chA = calibrate(img.prow, img.nrow, CHA_OFFSET, CH_WIDTH);
  174. img.chB = calibrate(img.prow, img.nrow, CHB_OFFSET, CH_WIDTH);
  175. printf("Channel A: %s (%s)\n", ch.id[img.chA], ch.name[img.chA]);
  176. printf("Channel B: %s (%s)\n", ch.id[img.chB], ch.name[img.chB]);
  177. // Crop noise from start and end of image
  178. if(CONTAINS(opts->effects, Crop_Noise)){
  179. cropNoise(&img);
  180. }
  181. // Denoise
  182. if(CONTAINS(opts->effects, Denoise)){
  183. denoise(img.prow, img.nrow, CHA_OFFSET, CH_WIDTH);
  184. denoise(img.prow, img.nrow, CHB_OFFSET, CH_WIDTH);
  185. }
  186. // Flip, for southbound passes
  187. if(CONTAINS(opts->effects, Flip_Image)){
  188. flipImage(&img, CH_WIDTH, CHA_OFFSET);
  189. flipImage(&img, CH_WIDTH, CHB_OFFSET);
  190. }
  191. // Temperature
  192. if (CONTAINS(opts->type, Temperature) && img.chB >= 4) {
  193. temperature(opts, &img, CHB_OFFSET, CH_WIDTH);
  194. ImageOut(opts, &img, CHB_OFFSET, CH_WIDTH, "Temperature", Temperature, (char *)TempPalette);
  195. }
  196. // MCIR
  197. if (CONTAINS(opts->type, MCIR))
  198. ImageOut(opts, &img, CHA_OFFSET, CH_WIDTH, "MCIR", MCIR, NULL);
  199. // Linear equalise
  200. if(CONTAINS(opts->effects, Linear_Equalise)){
  201. linearEnhance(img.prow, img.nrow, CHA_OFFSET, CH_WIDTH);
  202. linearEnhance(img.prow, img.nrow, CHB_OFFSET, CH_WIDTH);
  203. }
  204. // Histogram equalise
  205. if(CONTAINS(opts->effects, Histogram_Equalise)){
  206. histogramEqualise(img.prow, img.nrow, CHA_OFFSET, CH_WIDTH);
  207. histogramEqualise(img.prow, img.nrow, CHB_OFFSET, CH_WIDTH);
  208. }
  209. // Raw image
  210. if (CONTAINS(opts->type, Raw_Image)) {
  211. sprintf(desc, "%s (%s) & %s (%s)", ch.id[img.chA], ch.name[img.chA], ch.id[img.chB], ch.name[img.chB]);
  212. ImageOut(opts, &img, 0, IMG_WIDTH, desc, Raw_Image, NULL);
  213. }
  214. // Palette image
  215. if (CONTAINS(opts->type, Palleted)) {
  216. img.palette = opts->palette;
  217. strcpy(desc, "Palette composite");
  218. ImageOut(opts, &img, CHA_OFFSET, 909, desc, Palleted, NULL);
  219. }
  220. // Channel A
  221. if (CONTAINS(opts->type, Channel_A)) {
  222. sprintf(desc, "%s (%s)", ch.id[img.chA], ch.name[img.chA]);
  223. ImageOut(opts, &img, CHA_OFFSET, CH_WIDTH, desc, Channel_A, NULL);
  224. }
  225. // Channel B
  226. if (CONTAINS(opts->type, Channel_B)) {
  227. sprintf(desc, "%s (%s)", ch.id[img.chB], ch.name[img.chB]);
  228. ImageOut(opts, &img, CHB_OFFSET, CH_WIDTH, desc, Channel_B, NULL);
  229. }
  230. // Value distribution image
  231. if (CONTAINS(opts->type, Distribution))
  232. distrib(opts, &img, Distribution);
  233. return 1;
  234. }
  235. static int initsnd(char *filename) {
  236. SF_INFO infwav;
  237. int res;
  238. // Open audio file
  239. infwav.format = 0;
  240. audioFile = sf_open(filename, SFM_READ, &infwav);
  241. if (audioFile == NULL) {
  242. fprintf(stderr, "Could not open %s\n", filename);
  243. return 0;
  244. }
  245. res = init_dsp(infwav.samplerate);
  246. printf("Input file: %s\n", filename);
  247. if(res < 0) {
  248. fprintf(stderr, "Input sample rate too low: %d\n", infwav.samplerate);
  249. return 0;
  250. }else if(res > 0) {
  251. fprintf(stderr, "Input sample rate too high: %d\n", infwav.samplerate);
  252. return 0;
  253. }
  254. printf("Input sample rate: %d\n", infwav.samplerate);
  255. channels = infwav.channels;
  256. return 1;
  257. }
  258. // Read samples from the audio file
  259. int getsample(float *sample, int nb) {
  260. if(channels == 1){
  261. return sf_read_float(audioFile, sample, nb);
  262. }else{
  263. /* Multi channel audio is encoded such as:
  264. * Ch1,Ch2,Ch1,Ch2,Ch1,Ch2
  265. */
  266. float buf[nb * channels]; // Something like BLKIN*2 could also be used
  267. int samples = sf_read_float(audioFile, buf, nb * channels);
  268. for(int i = 0; i < nb; i++) sample[i] = buf[i * channels];
  269. return samples / channels;
  270. }
  271. }
  272. static void usage(void) {
  273. fprintf(stderr,
  274. "Aptdec [options] audio files ...\n"
  275. "Options:\n"
  276. " -i [r|a|b|t|m|p] Output image\n"
  277. " r: Raw\n"
  278. " a: Channel A\n"
  279. " b: Channel B\n"
  280. " t: Temperature\n"
  281. " m: MCIR\n"
  282. " p: Paletted image\n"
  283. " -e [t|h|d|p|f|l] Effects\n"
  284. " t: Crop telemetry\n"
  285. " h: Histogram equalise\n"
  286. " d: Denoise\n"
  287. " p: Precipitation\n"
  288. " f: Flip image\n"
  289. " l: Linear equalise\n"
  290. " c: Crop noise\n"
  291. " -o <path> Output filename\n"
  292. " -d <path> Image destination directory.\n"
  293. " -s [15-19] Satellite number\n"
  294. " -m <path> Map file\n"
  295. " -p <path> Path to palette\n"
  296. " -r Realtime decode\n"
  297. " -g Gamma adjustment (1.0 = off)\n"
  298. "\nRefer to the README for more infomation\n");
  299. exit(EINVAL);
  300. }