runarium 0.1.0

Generate animated videos from GPS running/cycling data with real-time statistics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
use anyhow::Result;
use opencv::{core, imgproc, prelude::*};

use crate::{
  config::RouteScale,
  configs::RouteImageConfig,
  types::{
    drawer_data::{PositionRect, Rect, SizeRect},
    fit_data::{LapData, RouteData},
  },
  utils::{
    converter::{
      convert_pace_to_sec, get_bounds, load_and_resize_image, pace_percentage,
      string_space,
    },
    creator::image_creator,
    element_drawer::Drawer,
    read_file::fit_reader,
  },
};

/// Generates a static route image from FIT file data.
///
/// Creates an image showing the complete route path overlaid on a background image.
///
/// # Arguments
/// * `route_scale` - Scale factor for route visualization (0.0-1.0 recommended)
/// * `offset_x_percent` - Horizontal offset as percentage of image width
/// * `offset_y_percent` - Vertical offset as percentage of image height
///
/// # Returns
/// * `Ok(())` - Image successfully created and saved
/// * `Err` - If FIT file reading, image loading, or drawing operations fail
///
/// # Output
/// Creates `outputs/route.png` with:
/// - Complete route path (red line)
/// - Route overlaid on background image
pub fn route_image(route_scale: RouteScale) -> Result<()> {
  let RouteScale {
    scale,
    offset_x_percent,
    offset_y_percent,
  } = route_scale;

  #[rustfmt::skip]
  let (route, lap) = fit_reader("source/example.fit")?;
  let RouteData {
    paces: _,
    gps_points: points,
    distances: _,
  } = route;
  let LapData {
    avg_heart_rate,
    enhanced_avg_speed,
    avg_step_length,
  } = lap;

  // -------- Normalize coordinates --------
  #[rustfmt::skip]
  let (
    (lat_min, lat_max),
    (lon_min, lon_max)
  ) = get_bounds(&points);

  // -------- Use background image ----------
  let (bg_image, width, height) =
    load_and_resize_image("source/example.jpg", 1080)?;
  let output_file = "outputs/route.png";

  // --- Coordinate normalization to image space ---
  let to_px = |lat: f64, lon: f64| -> core::Point {
    let nx = if lon_max != lon_min {
      (lon - lon_min) / (lon_max - lon_min)
    } else {
      0.5
    };
    let ny = if lat_max != lat_min {
      (lat - lat_min) / (lat_max - lat_min)
    } else {
      0.5
    };

    let x = ((offset_x_percent + nx * scale) * width as f64) as i32;
    #[rustfmt::skip]
    let y = ((offset_y_percent + (1.0 - ny) * scale) * width as f64) as i32;
    core::Point::new(x, y)
  };

  #[rustfmt::skip]
  let pixel_points: Vec<core::Point> = points
    .iter()
    .map(|&(la, lo)| to_px(la, lo))
    .collect();

  // -------- Initialize image --------
  let mut resized = Mat::default();
  imgproc::resize(
    &bg_image,
    &mut resized,
    core::Size::new(width, height),
    0.0,
    0.0,
    imgproc::INTER_LANCZOS4,
  )?;

  let mut route_image = resized.clone();
  let drawer = Drawer::new(width, height);

  let font = crate::configs::video_config::Font::Simplex;
  let font_scale = 0.5;
  let thickness = 1;

  let pace_seconds: Vec<f32> = enhanced_avg_speed
    .iter()
    .map(|p| convert_pace_to_sec(p))
    .collect();

  let start_x = width / 2;
  let start_y = 100;
  let min_val = *pace_seconds
    .iter()
    .min_by(|a, b| a.total_cmp(b))
    .expect("Failed to find min pace");
  let min_denominator = (min_val / 30.0).floor() * 30.0;
  let bar_max_width = 200;

  // Create lap data
  drawer
    .header(
      &mut route_image,
      start_x,
      start_y,
      font_scale,
      2,
      font,
    )
    .expect("Failed to draw header!");

  let green_color = drawer.color([0.0, 255.0, 0.0, 0.0]);
  let white_color = drawer.color([255.0, 255.0, 255.0, 0.0]);
  let size_of_speeds = enhanced_avg_speed.len();
  for (i, pace) in enhanced_avg_speed.iter().enumerate() {
    let size = drawer.text_size(pace, font_scale, thickness, font)?;
    let x = start_x - size.width / 2;
    let y = start_y + i as i32 * (size.height + 5);

    let pace_space = string_space(size_of_speeds, i + 1, pace);
    drawer
      .text(
        &mut route_image,
        &pace_space,
        x,
        y,
        font_scale,
        thickness,
        font,
        white_color,
      )
      .expect("Failed to draw pace");

    let hr = &format!("{}", avg_heart_rate[i]);
    drawer
      .text(
        &mut route_image,
        hr,
        x + 300,
        y,
        font_scale,
        thickness,
        font,
        white_color,
      )
      .expect("Failed to draw heart rate");

    let lenght_meters = avg_step_length[i] / 10.0;
    let stride_length = &format!("{}", lenght_meters);
    drawer
      .text(
        &mut route_image,
        stride_length,
        x + 350,
        y,
        font_scale,
        thickness,
        font,
        white_color,
      )
      .expect("Failed to draw stride length");

    let percent = pace_percentage(min_denominator, pace_seconds[i]);
    let bar_width = (percent * bar_max_width as f32) as i32;
    let bar_height = size.height;
    let bar_x = x + size.width + 60;
    let bar_y = y - size.height;
    let rect = Rect {
      pos: PositionRect { x: bar_x, y: bar_y },
      size: SizeRect {
        width: bar_width,
        height: bar_height,
      },
    };
    drawer
      .rectangle(&mut route_image, rect, green_color)
      .expect("Failed to draw bar");
  }

  // Draw route path
  let red_color = drawer.color([0.0, 0.0, 255.0, 0.0]);
  let pts = core::Vector::<core::Point>::from_iter(pixel_points.clone());
  let mut all_pts = core::Vector::<core::Vector<core::Point>>::new();
  all_pts.push(pts);

  imgproc::polylines(
    &mut route_image,
    &all_pts,
    false,
    red_color,
    2,
    imgproc::LINE_AA,
    0,
  )?;

  image_creator(output_file, &route_image)?;

  println!(
    "✅ Image created: {} with {} points",
    output_file,
    pixel_points.len()
  );

  Ok(())
}

/// Generates a static route image from FIT file data using custom configuration.
///
/// Creates an image showing the complete route path overlaid on a background image,
/// with customizable colors, scaling, and positioning.
///
/// # Arguments
/// * `config` - Route image configuration containing:
///   - `route_scale` - Scale and positioning settings
///   - `colors` - Color scheme for route elements
///   - `file_config` - Input/output file paths
///   - `line_thickness` - Thickness of the route line
///
/// # Returns
/// * `Ok(())` - Image successfully created and saved
/// * `Err` - If FIT file reading, image loading, or drawing operations fail
///
/// # Output
/// Creates an image file at the configured output path with:
/// - Complete route path with custom color and thickness
/// - Route overlaid on background image
/// - Customizable route positioning and scale
pub fn image_route_with_config(config: RouteImageConfig) -> Result<()> {
  // Read FIT file
  let (route, lap) = fit_reader(&config.file_config.fit_file)?;
  let RouteData {
    paces: _,
    gps_points: points,
    distances: _,
  } = route;
  let LapData {
    avg_heart_rate,
    enhanced_avg_speed,
    avg_step_length,
  } = lap;

  // Normalize coordinates
  let ((lat_min, lat_max), (lon_min, lon_max)) = get_bounds(&points);

  // Load background image
  let (bg_image, width, height) = load_and_resize_image(
    &config.file_config.background_image,
    1080,
  )?;

  // Coordinate normalization to image space
  let to_px = |lat: f64, lon: f64| -> core::Point {
    let nx = if lon_max != lon_min {
      (lon - lon_min) / (lon_max - lon_min)
    } else {
      0.5
    };
    let ny = if lat_max != lat_min {
      (lat - lat_min) / (lat_max - lat_min)
    } else {
      0.5
    };

    let x = ((config.route_scale.offset_x_percent
      + nx * config.route_scale.scale)
      * width as f64) as i32;
    let y = ((config.route_scale.offset_y_percent
      + (1.0 - ny) * config.route_scale.scale)
      * width as f64) as i32;
    core::Point::new(x, y)
  };

  let pixel_points: Vec<core::Point> =
    points.iter().map(|&(la, lo)| to_px(la, lo)).collect();

  // Initialize image
  let mut resized = Mat::default();
  imgproc::resize(
    &bg_image,
    &mut resized,
    core::Size::new(width, height),
    0.0,
    0.0,
    imgproc::INTER_LANCZOS4,
  )?;

  let mut route_image = resized.clone();
  let drawer = Drawer::new(width, height);

  // Draw lap data if enabled
  if config.show_lap_data {
    if let Some(lap_config) = &config.lap_data {
      let pace_seconds: Vec<f32> = enhanced_avg_speed
        .iter()
        .map(|p| convert_pace_to_sec(p))
        .collect();

      let start_x = (lap_config.position.0 * width as f64) as i32;
      let start_y = (lap_config.position.1 * height as f64) as i32;
      let min_val = *pace_seconds
        .iter()
        .min_by(|a, b| a.total_cmp(b))
        .expect("Failed to find min pace");
      let min_denominator = (min_val / 30.0).floor() * 30.0;

      // Draw header
      drawer
        .header(
          &mut route_image,
          start_x,
          start_y,
          lap_config.font_scale,
          2,
          lap_config.font,
        )
        .expect("Failed to draw header!");

      let text_color = drawer.color(lap_config.text_color.to_bgra());
      let bar_color = drawer.color(config.colors.lap_bars);
      let size_of_speeds = enhanced_avg_speed.len();

      for (i, pace) in enhanced_avg_speed.iter().enumerate() {
        let size = drawer.text_size(
          pace,
          lap_config.font_scale,
          lap_config.thickness,
          lap_config.font,
        )?;
        let x = start_x - size.width / 2;
        let y = start_y + i as i32 * (size.height + 5);

        // Draw pace
        let pace_space = string_space(size_of_speeds, i + 1, pace);
        drawer
          .text(
            &mut route_image,
            &pace_space,
            x,
            y,
            lap_config.font_scale,
            lap_config.thickness,
            lap_config.font,
            text_color,
          )
          .expect("Failed to draw pace");

        // Draw heart rate if enabled
        if lap_config.show_heart_rate {
          let hr = &format!("{}", avg_heart_rate[i]);
          drawer
            .text(
              &mut route_image,
              hr,
              x + 300,
              y,
              lap_config.font_scale,
              lap_config.thickness,
              lap_config.font,
              text_color,
            )
            .expect("Failed to draw heart rate");
        }

        // Draw stride length if enabled
        if lap_config.show_stride_length {
          let length_meters = avg_step_length[i] / 10.0;
          let stride_length = &format!("{}", length_meters);
          drawer
            .text(
              &mut route_image,
              stride_length,
              x + 350,
              y,
              lap_config.font_scale,
              lap_config.thickness,
              lap_config.font,
              text_color,
            )
            .expect("Failed to draw stride length");
        }

        // Draw pace bars if enabled
        if lap_config.show_pace_bars {
          let percent = pace_percentage(min_denominator, pace_seconds[i]);
          let bar_width = (percent * 200.0) as i32;
          let bar_height = size.height;
          let bar_x = x + size.width + 60;
          let bar_y = y - size.height;
          let rect = Rect {
            pos: PositionRect { x: bar_x, y: bar_y },
            size: SizeRect {
              width: bar_width,
              height: bar_height,
            },
          };
          drawer
            .rectangle(&mut route_image, rect, bar_color)
            .expect("Failed to draw bar");
        }
      }
    }
  }

  // Draw route path with configured color
  let route_color = drawer.color(config.colors.route_line);
  let pts = core::Vector::<core::Point>::from_iter(pixel_points.clone());
  let mut all_pts = core::Vector::<core::Vector<core::Point>>::new();
  all_pts.push(pts);

  imgproc::polylines(
    &mut route_image,
    &all_pts,
    false,
    route_color,
    config.line_thickness,
    imgproc::LINE_AA,
    0,
  )?;

  // Save image
  image_creator(
    &config.file_config.output_file,
    &route_image,
  )?;

  println!(
    "✅ Image created: {} with {} points",
    config.file_config.output_file,
    pixel_points.len()
  );

  Ok(())
}