Skip to content
Snippets Groups Projects
Commit 5b1c6724 authored by Stephen D's avatar Stephen D
Browse files

allow configuring image size

parent dcb61bdd
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@ paths = [
# must be 6 characters or less
callsign = "NOCALL"
# Max image dimension. Comment this out to send full-sized images
max_img_dimension = 1024
# Comment this section out if you're not using
# APRS for control
[control]
......
......@@ -14,6 +14,7 @@ pub struct ControlConfig {
pub struct Config {
pub paths: Vec<PathBuf>,
pub callsign: String,
pub max_img_dimension: Option<u32>,
pub control: Option<ControlConfig>,
}
......
......@@ -41,7 +41,7 @@ impl Controller {
let mut manager = ImgManager::new(self.config.paths.clone(), cmd_rx);
loop {
while let Some((idx, bytes)) = manager.next() {
while let Some((idx, bytes)) = manager.next(self.config.max_img_dimension) {
if let Err(e) = self.process_image(&bytes, idx, &img_tx) {
eprintln!("Error processing image: {e}");
}
......
use image::{imageops::FilterType, io::Reader as ImageReader, ImageOutputFormat};
use std::{cmp::max, fs, io::Cursor, path::PathBuf, sync::mpsc::Receiver};
const IMG_DIM: u32 = 1024;
const IMG_MAX_SIZE: u32 = 2048;
const JPEG_QUALITY: u8 = 100; // let ssdv do the compression
......@@ -15,12 +14,12 @@ struct ImgInfo {
}
impl ImgInfo {
pub fn compressed_jpeg_bytes(&self) -> anyhow::Result<Vec<u8>> {
pub fn compressed_jpeg_bytes(&self, dim: u32) -> anyhow::Result<Vec<u8>> {
let img = ImageReader::open(&self.path)?.decode()?;
// want a imagine that's 512 on one side
// resize so that the larger dimension is 512
let (mut w, mut h) = resize_dimensions(img.width(), img.height(), IMG_DIM, IMG_DIM, false);
let (mut w, mut h) = resize_dimensions(img.width(), img.height(), dim, dim, false);
let img = img.resize_exact(w, h, FilterType::Triangle);
......@@ -65,7 +64,7 @@ pub struct ImgManager {
path_idx: usize,
found: bool,
tx_idx: u8,
// map between sent image ids, the the images
// map between sent image ids, and the images
// in the array above
// used for decoding rx requests
img_map: [usize; 256],
......@@ -89,7 +88,7 @@ impl ImgManager {
// not making this an iterator since
// it's entirely valid to have a Some(...)
// after a None
pub fn next(&mut self) -> Option<(u8, Vec<u8>)> {
pub fn next(&mut self, dim: Option<u32>) -> Option<(u8, Vec<u8>)> {
loop {
if let Ok(req) = self.rx.try_recv() {
let img = self
......@@ -123,7 +122,10 @@ impl ImgManager {
if let Some((new_id, new)) = new {
new.txed = true;
let bytes = new.compressed_jpeg_bytes();
let bytes = match dim {
Some(d) => new.compressed_jpeg_bytes(d),
None => new.lossless_jpeg_bytes(),
};
self.inc_iter(true);
......@@ -145,7 +147,10 @@ impl ImgManager {
if let Some((old_idx, old)) = old {
old.txed = true;
let bytes = old.compressed_jpeg_bytes();
let bytes = match dim {
Some(d) => old.compressed_jpeg_bytes(d),
None => old.lossless_jpeg_bytes(),
};
self.inc_iter(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment