rvlib/
lib.rs

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
mod cache;
pub mod cfg;
pub mod control;
mod drawme;
mod events;
pub mod file_util;
pub mod history;
pub mod httpserver;
mod image_reader;
pub mod image_util;
pub mod main_loop;
pub mod menu;
mod meta_data;
mod paths_selector;
pub mod result;
mod ssh;
mod threadpool;
pub mod tools;
mod tools_data;
pub mod tracing_setup;
mod types;
mod util;
mod view;
pub mod world;
pub use cfg::read_darkmode;
pub use drawme::{
    Annotation, BboxAnnotation, BrushAnnotation, Stroke, UpdateImage, UpdatePermAnnos,
    UpdateTmpAnno, UpdateView, UpdateZoomBox,
};
pub use events::{Event, Events, KeyCode, ZoomAmount};
pub use file_util::get_test_folder;
pub use main_loop::MainEventLoop;
pub use meta_data::MetaData;
pub use rvimage_domain::{
    bresenham_iter, color_with_intensity, BbI, BrushLine, GeoFig, Line, Polygon, ShapeI,
};
pub use tools_data::{
    coco_io::{read_coco, to_per_file_crowd, write_coco},
    InstanceAnnotate, Rot90ToolData,
};
pub use view::{
    orig_2_view, orig_pos_2_view_pos, project_on_bb, scale_coord, view_pos_2_orig_pos, ImageU8,
};