You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating System / Platform => Ubuntu 18.04 on Jetson Nano
Compiler => ❔
Detailed description
The cv::cuda::HOG class doesn't expose the detect and detectMultiScale methods to other languages (Java, Python, etc.) I think this is due to these methods missing a CV_WRAP in cudaobjdetect.hpp, however, I'm not a C++ expert so I wasn't sure about it.
Steps to reproduce
importcv2gpu_hog=cv2.cuda.HOG_create()
gpu_hog.setSVMDetector(gpu_hog.getDefaultPeopleDetector())
gpu_hog.detectMultiScale() # it doesn't matter that we're missing parameters, this will AttributeError
The text was updated successfully, but these errors were encountered:
System information (version)
Detailed description
The
cv::cuda::HOG
class doesn't expose thedetect
anddetectMultiScale
methods to other languages (Java, Python, etc.) I think this is due to these methods missing aCV_WRAP
incudaobjdetect.hpp
, however, I'm not a C++ expert so I wasn't sure about it.Steps to reproduce
The text was updated successfully, but these errors were encountered: