gen_dict.json 1.5 KB

1234567891011121314151617181920212223242526272829
  1. {
  2. "ManualFuncs" : {
  3. "SimpleBlobDetector": {
  4. "setParams": { "declaration" : [""], "implementation" : [""] },
  5. "getParams": { "declaration" : [""], "implementation" : [""] }
  6. }
  7. },
  8. "enum_fix" : {
  9. "FastFeatureDetector" : { "DetectorType": "FastDetectorType" },
  10. "AgastFeatureDetector" : { "DetectorType": "AgastDetectorType" }
  11. },
  12. "func_arg_fix" : {
  13. "Feature2D": {
  14. "(void)compute:(NSArray<Mat*>*)images keypoints:(NSMutableArray<NSMutableArray<KeyPoint*>*>*)keypoints descriptors:(NSMutableArray<Mat*>*)descriptors" : { "compute" : {"name" : "compute2"} },
  15. "(void)detect:(NSArray<Mat*>*)images keypoints:(NSMutableArray<NSMutableArray<KeyPoint*>*>*)keypoints masks:(NSArray<Mat*>*)masks" : { "detect" : {"name" : "detect2"} }
  16. },
  17. "DescriptorMatcher": {
  18. "(DescriptorMatcher*)create:(NSString*)descriptorMatcherType" : { "create" : {"name" : "create2"} }
  19. },
  20. "FlannBasedMatcher": {
  21. "FlannBasedMatcher": { "indexParams" : {"defval" : "cv::makePtr<cv::flann::KDTreeIndexParams>()"}, "searchParams" : {"defval" : "cv::makePtr<cv::flann::SearchParams>()"} }
  22. },
  23. "BFMatcher": {
  24. "BFMatcher" : { "normType" : {"ctype" : "NormTypes"} },
  25. "(BFMatcher*)create:(int)normType crossCheck:(BOOL)crossCheck" : { "create" : {"name" : "createBFMatcher"},
  26. "normType" : {"ctype" : "NormTypes"} }
  27. }
  28. }
  29. }