gen_dict.json 1.3 KB

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