Skip to content

Commit

Permalink
new screenshot and smaller it/s cut off
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed Dec 20, 2024
1 parent 646261b commit f2e97c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

RV Image is a **r**emote **v**iewer for **image**s written in Rust. You can view images, e.g., on remote SSH servers or Azure blob storages. Further, RV Image comes with a bounding box, polygon, and brush labeling tool supporting import and export of the [Coco-format](https://cocodataset.org/#home). So far tested on Windows 10, and Mac OS. RV Image is mainly based on [`egui`](https://crates.io/crates/egui) and [`image`](https://crates.io/crates/image).

![rvimage_screen](https://github.com/bertiqwerty/rvimage/assets/50267830/0a03cf5b-3515-4550-b701-9f62a53447ee)
![rvimage_screen](screenshot.png)


## Installation
Expand Down
4 changes: 2 additions & 2 deletions rvimage/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,8 @@ impl eframe::App for RvImageApp {
let it_per_s = 1.0
/ (self.t_last_iterations.iter().sum::<f64>()
/ self.t_last_iterations.len() as f64);
let it_str = if it_per_s > 1000.0 {
"1000+".to_string()
let it_str = if it_per_s > 200.0 {
"200+".to_string()
} else {
format!("{}", it_per_s.round())
};
Expand Down
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f2e97c8

Please # to comment.