This commit is contained in:
liangyuxuan
2025-12-12 15:47:41 +08:00
parent c5a4b5afed
commit 9fd8951fae
3 changed files with 18 additions and 2 deletions

1
.gitignore vendored
View File

@@ -3,4 +3,3 @@
**/build/
**/install/
**/log/

View File

@@ -1,4 +1,13 @@
void
void seg_postprocess(
const float* predictions,
const float* proto,
int height,
int width,
int num_classes=80,
int mask_dim=32,
float conf_threshold=0.25,
float iou_threshold=0.25
);

View File

@@ -3,3 +3,11 @@
#include "vision_test/ultralytics/get_masks.hpp"
void seg_postprocess(
int num_classes,
int mask_dim,
float conf_threshold,
float iou_threshold
) {
// Function implementation goes here
}