mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
fix namespace conflicts (like cv::inpaint and cv::xphoto::inpaint)
whitespace fix
This commit is contained in:
parent
74c77d826f
commit
2a9e252f77
@ -509,7 +509,7 @@ class FuncInfo(object):
|
||||
name = "getelem"
|
||||
else:
|
||||
classname = ""
|
||||
return "pyopencv_" + classname + name
|
||||
return "pyopencv_" + self.namespace.replace('.','_') + '_' + classname + name
|
||||
|
||||
def get_wrapper_prototype(self):
|
||||
full_fname = self.get_wrapper_name()
|
||||
|
Loading…
Reference in New Issue
Block a user