diff --git a/tools/src/main.rs b/tools/src/main.rs index 805b338..23f359f 100644 --- a/tools/src/main.rs +++ b/tools/src/main.rs @@ -40,7 +40,6 @@ fn write_mask_image( assert!(height <= MAX_IMAGE_DIM); let mut header = Header::from_dimensions(width as i32, height as i32); - // TODO this might just make the file bigger and not fix anything header.set_compression(Compression::No); header.channels_mut().insert("R", &non_color_channel()); @@ -73,7 +72,6 @@ fn write_point_image( ) -> Result<(), Box> { let mut header = Header::from_dimensions(width as i32, height as i32); - // TODO this might just make the file bigger and not fix anything header.set_compression(Compression::No); header.channels_mut().insert("R", &non_color_channel());