Open stylevip opened 1 day ago
class Yolov8Seg { public: Yolov8Seg() { } ~Yolov8Seg() {}
bool ReadModel(cv::dnn::Net& net, std::string& netPath, bool isCuda); bool Detect(cv::Mat& srcImg, cv::dnn::Net& net, std::vector<OutputParams>& output); //类别名,自己的模型需要修改此项 std::vector<std::string> _className = { "person", "bicycle", "car", "motorcycle", "airplane", "bus", "train", "truck", "boat", "traffic light", "fire hydrant", "stop sign", "parking meter", "bench", "bird", "cat", "dog", "horse", "sheep", "cow", "elephant", "bear", "zebra", "giraffe", "backpack", "umbrella", "handbag", "tie", "suitcase", "frisbee", "skis", "snowboard", "sports ball", "kite", "baseball bat", "baseball glove", "skateboard", "surfboard", "tennis racket", "bottle", "wine glass", "cup", "fork", "knife", "spoon", "bowl", "banana", "apple", "sandwich", "orange", "broccoli", "carrot", "hot dog", "pizza", "donut", "cake", "chair", "couch", "potted plant", "bed", "dining table", "toilet", "tv", "laptop", "mouse", "remote", "keyboard", "cell phone", "microwave", "oven", "toaster", "sink", "refrigerator", "book", "clock", "vase", "scissors", "teddy bear", "hair drier", "toothbrush" }; int _netWidth = 640; //ONNX图片输入宽度 int _netHeight = 640; //ONNX图片输入高度
private: float _classThreshold = 0.25; float _nmsThreshold = 0.45; float _maskThreshold = 0.5; };
这段代码多次报错
语法错误:"private" 语法错误:“}” 语法错误:缺少“;”在“}”前
修改下换行符,具体看下readme中关于换行符的更改
class Yolov8Seg { public: Yolov8Seg() { } ~Yolov8Seg() {}
private: float _classThreshold = 0.25; float _nmsThreshold = 0.45; float _maskThreshold = 0.5; };
这段代码多次报错
语法错误:"private" 语法错误:“}” 语法错误:缺少“;”在“}”前