Add GroundingDINO (#30)

This commit is contained in:
Jamjamjon
2024-08-09 19:06:30 +08:00
committed by GitHub
parent 53d14ee2fb
commit b81b5e3cf5
24 changed files with 536 additions and 131 deletions

View File

@ -5,6 +5,7 @@ mod clip;
mod db;
mod depth_anything;
mod dinov2;
mod grounding_dino;
mod modnet;
mod rtmo;
mod sam;
@ -18,6 +19,7 @@ pub use clip::Clip;
pub use db::DB;
pub use depth_anything::DepthAnything;
pub use dinov2::Dinov2;
pub use grounding_dino::GroundingDINO;
pub use modnet::MODNet;
pub use rtmo::RTMO;
pub use sam::{SamKind, SamPrompt, SAM};