first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

5
nodes/infers/README.md Normal file
View File

@@ -0,0 +1,5 @@
# Summary
1. If the inference node works on the whole frame, let it derived from `vp_primary_infer_node` class.
2. If the inference node works on the small cropped images, let it derived from `vp_secondary_infer_node` class.
3. We can define multi derived classes to handle different types of dl models (`detector/pose estimation/classification`). Also, if they work on the same type of target AND with the same logic (for example, hava the same `preprocess/postprocess`), we can use a unique class to load different deep learning models (like resnet18 and resnet50).