OAID / TengineKit

TengineKit - Free, Fast, Easy, Real-Time Face Detection & Face Landmarks & Face Attributes & Hand Detection & Hand Landmarks & Body Detection & Body Landmarks & Iris Landmarks & Yolov5 SDK On Mobile.
Other
2.38k stars 318 forks source link

facesdk_handdetect API报错 #16

Closed create-li closed 3 years ago

create-li commented 3 years ago

facesdk_readModelFromFile(ModelType::Detect, "../models/palm_detection_builtin.bin", ImageFormat::RGB); //读取模型 std::cout << "handsdfd:" << std::endl; sdkHand3d hands = facesdk_handdetect(data);//手部检测 使用sdkHand3d hands = facesdk_handdetect(data);//手部检测但是会出现Segmentation fault (core dumped)错误? 请问这个如何解决

Crusoekid commented 3 years ago

ModelType::Detect 改为 ModelType::HandDetect

create-li commented 3 years ago

嗯谢谢