Skip to content

Commit d818c72

Browse files
committed
Initial detection impl
0 parents  commit d818c72

10 files changed

+628
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
data/* filter=lfs diff=lfs merge=lfs -text

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

Cargo.lock

+363
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "ncnn-nanodet-rs"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
ncnn-rs = { path = "../rust-ncnn/ncnn-rs" }
10+
opencv = "0.68"
11+
anyhow = "1.0"

data/coco_test.jpg

+3
Loading

data/nanodet-plus-m_416.bin

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f7555ca6cb9650ee41e2f0a53fdf46b6e187a2a09792208d8c3eec033b6ac615
3+
size 2397184

data/nanodet-plus-m_416.param

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d79e18ecd8595081bb29fdf0c790a47fcea96fbf58598350569a92e71e915b72
3+
size 23123

0 commit comments

Comments
 (0)