Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jamjamjon committed Jun 19, 2024
1 parent 701b4b3 commit bbaef09
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/face-parsing/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/fastsam/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolo-world/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov10/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use usls::{
models::{YOLOVersion, YOLO},
Annotator, DataLoader, Options,
Annotator, DataLoader, Options, Vision,
};

fn main() -> Result<(), Box<dyn std::error::Error>> {
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov5/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use usls::{
models::{YOLOTask, YOLOVersion, YOLO},
Annotator, DataLoader, Options,
Annotator, DataLoader, Options, Vision,
};

fn main() -> Result<(), Box<dyn std::error::Error>> {
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov8-face/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov8-falldown/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov8-head/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov8-trash/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use usls::{models::YOLO, Annotator, DataLoader, Options};
use usls::{models::YOLO, Annotator, DataLoader, Options, Vision};

fn main() -> Result<(), Box<dyn std::error::Error>> {
// 1.build model
Expand Down
2 changes: 1 addition & 1 deletion examples/yolov9/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use usls::{
models::{YOLOVersion, YOLO},
Annotator, DataLoader, Options,
Annotator, DataLoader, Options, Vision,
};

fn main() -> Result<(), Box<dyn std::error::Error>> {
Expand Down

0 comments on commit bbaef09

Please sign in to comment.