@bettergi/types 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1404) hide show
  1. package/LICENSE +20 -20
  2. package/bindings/AutoBossParam.d.ts +12 -0
  3. package/bindings/AutoDomainParam.d.ts +12 -0
  4. package/bindings/AutoFightParam.d.ts +12 -0
  5. package/bindings/AutoLeyLineOutcropParam.d.ts +13 -0
  6. package/bindings/AutoSkipConfig.d.ts +12 -0
  7. package/bindings/AutoStygianOnslaughtParam.d.ts +13 -0
  8. package/bindings/Avatar.d.ts +12 -0
  9. package/bindings/BvImage.d.ts +12 -0
  10. package/bindings/BvLocator.d.ts +12 -0
  11. package/bindings/BvPage.d.ts +12 -0
  12. package/bindings/CancellationToken.d.ts +12 -0
  13. package/bindings/CancellationTokenSource.d.ts +12 -0
  14. package/bindings/CombatScenes.d.ts +12 -0
  15. package/bindings/CountInventoryItemParam.d.ts +12 -0
  16. package/bindings/DesktopRegion.d.ts +12 -0
  17. package/bindings/GameCaptureRegion.d.ts +12 -0
  18. package/bindings/GridScreenName.d.ts +12 -0
  19. package/bindings/ImageRegion.d.ts +12 -0
  20. package/bindings/ItemIconRecognitionMode.d.ts +12 -0
  21. package/bindings/KeyMouseHook.d.ts +12 -0
  22. package/bindings/Mat.d.ts +12 -0
  23. package/bindings/OpenCvSharp.d.ts +1035 -0
  24. package/bindings/Point2f.d.ts +12 -0
  25. package/bindings/PostMessage.d.ts +12 -0
  26. package/bindings/RealtimeTimer.d.ts +12 -0
  27. package/bindings/RecognitionObject.d.ts +12 -0
  28. package/bindings/Region.d.ts +12 -0
  29. package/bindings/ServerTime.d.ts +12 -0
  30. package/bindings/SoloTask.d.ts +12 -0
  31. package/bindings/Task.d.ts +12 -0
  32. package/bindings/captureGameRegion.d.ts +17 -0
  33. package/bindings/click.d.ts +21 -0
  34. package/bindings/dispatcher.d.ts +11 -0
  35. package/bindings/file.d.ts +11 -0
  36. package/bindings/genshin.d.ts +11 -0
  37. package/bindings/getAvatars.d.ts +16 -0
  38. package/bindings/getGameMetrics.d.ts +16 -0
  39. package/bindings/getVersion.d.ts +16 -0
  40. package/bindings/host.d.ts +30 -0
  41. package/bindings/htmlMask.d.ts +11 -0
  42. package/bindings/http.d.ts +11 -0
  43. package/bindings/inputText.d.ts +17 -0
  44. package/bindings/keyDown.d.ts +18 -0
  45. package/bindings/keyMouseScript.d.ts +11 -0
  46. package/bindings/keyPress.d.ts +18 -0
  47. package/bindings/keyUp.d.ts +18 -0
  48. package/bindings/leftButtonClick.d.ts +17 -0
  49. package/bindings/leftButtonDown.d.ts +17 -0
  50. package/bindings/leftButtonUp.d.ts +17 -0
  51. package/bindings/log.d.ts +11 -0
  52. package/bindings/middleButtonClick.d.ts +17 -0
  53. package/bindings/middleButtonDown.d.ts +17 -0
  54. package/bindings/middleButtonUp.d.ts +17 -0
  55. package/bindings/moveMouseBy.d.ts +21 -0
  56. package/bindings/moveMouseTo.d.ts +21 -0
  57. package/bindings/notification.d.ts +11 -0
  58. package/bindings/pathingScript.d.ts +11 -0
  59. package/bindings/rightButtonClick.d.ts +17 -0
  60. package/bindings/rightButtonDown.d.ts +17 -0
  61. package/bindings/rightButtonUp.d.ts +17 -0
  62. package/bindings/setGameMetrics.d.ts +38 -0
  63. package/bindings/settings.d.ts +8 -0
  64. package/bindings/sleep.d.ts +20 -0
  65. package/bindings/strategyFile.d.ts +11 -0
  66. package/bindings/verticalScroll.d.ts +21 -0
  67. package/index.d.ts +104 -62
  68. package/package.json +15 -4
  69. package/types/BetterGI/ScriptSettings.d.ts +22 -0
  70. package/types/BetterGenshinImpact/Core/BgiVision/BvImage.d.ts +54 -0
  71. package/types/BetterGenshinImpact/Core/BgiVision/BvLocator.d.ts +202 -0
  72. package/types/BetterGenshinImpact/Core/BgiVision/BvPage.d.ts +145 -0
  73. package/types/BetterGenshinImpact/Core/Recognition/ONNX/BgiYoloPredictor.d.ts +54 -0
  74. package/types/BetterGenshinImpact/Core/Recognition/OcrEngineTypes.d.ts +39 -10
  75. package/types/BetterGenshinImpact/Core/Recognition/RecognitionObject.d.ts +290 -190
  76. package/types/BetterGenshinImpact/Core/Recognition/RecognitionTypes.d.ts +59 -21
  77. package/types/BetterGenshinImpact/Core/Recognition/SearchOptions.d.ts +100 -0
  78. package/types/BetterGenshinImpact/Core/Script/Dependence/AutoPathingScript.d.ts +91 -0
  79. package/types/BetterGenshinImpact/Core/Script/Dependence/CustomHostFunctions.d.ts +48 -0
  80. package/types/BetterGenshinImpact/Core/Script/Dependence/Dispatcher.d.ts +203 -0
  81. package/types/BetterGenshinImpact/Core/Script/Dependence/Genshin.d.ts +438 -0
  82. package/types/BetterGenshinImpact/Core/Script/Dependence/HtmlMask.d.ts +203 -0
  83. package/types/BetterGenshinImpact/Core/Script/Dependence/Http.d.ts +102 -0
  84. package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseHook.d.ts +106 -68
  85. package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseScript.d.ts +45 -0
  86. package/types/BetterGenshinImpact/Core/Script/Dependence/LimitedFile.d.ts +180 -0
  87. package/types/BetterGenshinImpact/Core/Script/Dependence/Log.d.ts +72 -0
  88. package/types/BetterGenshinImpact/Core/Script/Dependence/Model/RealtimeTimer.d.ts +55 -28
  89. package/types/BetterGenshinImpact/Core/Script/Dependence/Model/SoloTask.d.ts +51 -14
  90. package/types/BetterGenshinImpact/Core/Script/Dependence/Notification.d.ts +49 -0
  91. package/types/BetterGenshinImpact/Core/Script/Dependence/ServerTime.d.ts +25 -5
  92. package/types/BetterGenshinImpact/Core/Script/Dependence/Simulator/PostMessage.d.ts +57 -12
  93. package/types/BetterGenshinImpact/Core/Script/Dependence/StrategyFile.d.ts +66 -0
  94. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossConfig.d.ts +102 -0
  95. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossParam.d.ts +135 -0
  96. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossTask.d.ts +55 -0
  97. package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainParam.d.ts +160 -66
  98. package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainTask.d.ts +89 -30
  99. package/types/BetterGenshinImpact/GameTask/AutoFight/Assets/AutoFightAssets.d.ts +144 -0
  100. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightConfig.d.ts +266 -0
  101. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightParam.d.ts +252 -105
  102. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightTask.d.ts +69 -31
  103. package/types/BetterGenshinImpact/GameTask/AutoFight/Config/CombatAvatar.d.ts +67 -25
  104. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/Avatar.d.ts +373 -161
  105. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/AvatarActiveCheckContext.d.ts +39 -5
  106. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/CombatScenes.d.ts +237 -58
  107. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/MultiGameStatus.d.ts +48 -13
  108. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatCommand.d.ts +82 -0
  109. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatScript.d.ts +63 -0
  110. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/Method.d.ts +171 -0
  111. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropConfig.d.ts +141 -0
  112. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropFightConfig.d.ts +252 -0
  113. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropParam.d.ts +174 -0
  114. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropTask.d.ts +57 -0
  115. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/MaterialInfo.d.ts +49 -0
  116. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/Waypoint.d.ts +173 -0
  117. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/WaypointForTrack.d.ts +105 -0
  118. package/types/BetterGenshinImpact/GameTask/AutoPathing/NavigationInstance.d.ts +102 -0
  119. package/types/BetterGenshinImpact/GameTask/AutoPathing/PathingScriptNames.d.ts +82 -0
  120. package/types/BetterGenshinImpact/GameTask/AutoSkip/AutoSkipConfig.d.ts +212 -107
  121. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtConfig.d.ts +104 -0
  122. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtParam.d.ts +143 -0
  123. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtTask.d.ts +191 -0
  124. package/types/BetterGenshinImpact/GameTask/CaptureContent.d.ts +87 -0
  125. package/types/BetterGenshinImpact/GameTask/Common/BgiVision/BvStatus.d.ts +50 -0
  126. package/types/BetterGenshinImpact/GameTask/Common/Job/CountInventoryItemParam.d.ts +70 -0
  127. package/types/BetterGenshinImpact/GameTask/Common/Job/CraftMaterialTask.d.ts +85 -0
  128. package/types/BetterGenshinImpact/GameTask/Common/Job/ItemIconRecognitionMode.d.ts +43 -0
  129. package/types/BetterGenshinImpact/GameTask/Common/Map/MapScriptNames.d.ts +46 -0
  130. package/types/BetterGenshinImpact/GameTask/Common/Reward/RewardItem.d.ts +80 -0
  131. package/types/BetterGenshinImpact/GameTask/Common/StateMachine/StateMachineBase.d.ts +43 -0
  132. package/types/BetterGenshinImpact/GameTask/ISoloTask.d.ts +76 -4
  133. package/types/BetterGenshinImpact/GameTask/Model/Area/Converter/INodeConverter.d.ts +43 -9
  134. package/types/BetterGenshinImpact/GameTask/Model/Area/DesktopRegion.d.ts +134 -51
  135. package/types/BetterGenshinImpact/GameTask/Model/Area/GameCaptureRegion.d.ts +184 -71
  136. package/types/BetterGenshinImpact/GameTask/Model/Area/ImageRegion.d.ts +171 -95
  137. package/types/BetterGenshinImpact/GameTask/Model/Area/Region.d.ts +471 -226
  138. package/types/BetterGenshinImpact/GameTask/Model/BaseTaskParam.d.ts +37 -5
  139. package/types/BetterGenshinImpact/GameTask/Model/GameUI/GridScreenName.d.ts +95 -0
  140. package/types/BetterGenshinImpact/GameTask/Model/ISystemInfo.d.ts +90 -0
  141. package/types/BetterGenshinImpact/Helpers/User32Helper.d.ts +223 -224
  142. package/types/BetterGenshinImpact/View/Drawable/DrawContent.d.ts +112 -35
  143. package/types/BetterGenshinImpact/View/Drawable/LineDrawable.d.ts +67 -12
  144. package/types/BetterGenshinImpact/View/Drawable/RectDrawable.d.ts +71 -20
  145. package/types/BetterGenshinImpact/View/Drawable/TextDrawable.d.ts +59 -0
  146. package/types/CommunityToolkit/Mvvm/ComponentModel/ObservableObject.d.ts +35 -0
  147. package/types/Compunet/YoloSharp/Metadata/YoloArchitecture.d.ts +28 -0
  148. package/types/Compunet/YoloSharp/Metadata/YoloMetadata.d.ts +38 -0
  149. package/types/Compunet/YoloSharp/Metadata/YoloName.d.ts +27 -0
  150. package/types/Compunet/YoloSharp/Metadata/YoloTask.d.ts +31 -0
  151. package/types/Compunet/YoloSharp/YoloConfiguration.d.ts +36 -0
  152. package/types/Compunet/YoloSharp/YoloPredictor.d.ts +39 -0
  153. package/types/Compunet/YoloSharp/YoloPredictorOptions.d.ts +33 -0
  154. package/types/Fischless/WindowsInput/IKeyboardSimulator.d.ts +83 -56
  155. package/types/Fischless/WindowsInput/IMouseSimulator.d.ts +65 -51
  156. package/types/Microsoft/ClearScript/AsyncDocumentLoadCallback.d.ts +39 -0
  157. package/types/Microsoft/ClearScript/ContinuationCallback.d.ts +29 -0
  158. package/types/Microsoft/ClearScript/CustomAttributeLoader.d.ts +34 -0
  159. package/types/Microsoft/ClearScript/Document.d.ts +22 -0
  160. package/types/Microsoft/ClearScript/DocumentAccessFlags.d.ts +29 -0
  161. package/types/Microsoft/ClearScript/DocumentCategory.d.ts +20 -0
  162. package/types/Microsoft/ClearScript/DocumentContextCallback.d.ts +35 -0
  163. package/types/Microsoft/ClearScript/DocumentFlags.d.ts +25 -0
  164. package/types/Microsoft/ClearScript/DocumentInfo.d.ts +31 -0
  165. package/types/Microsoft/ClearScript/DocumentLoadCallback.d.ts +32 -0
  166. package/types/Microsoft/ClearScript/DocumentLoader.d.ts +47 -0
  167. package/types/Microsoft/ClearScript/DocumentSettings.d.ts +54 -0
  168. package/types/Microsoft/ClearScript/HostEvent.d.ts +27 -0
  169. package/types/Microsoft/ClearScript/HostFunctions.d.ts +109 -0
  170. package/types/Microsoft/ClearScript/HostItemFlags.d.ts +27 -0
  171. package/types/Microsoft/ClearScript/HostType.d.ts +181 -0
  172. package/types/Microsoft/ClearScript/HostTypeCollection.d.ts +11 -0
  173. package/types/Microsoft/ClearScript/HostVariable.d.ts +66 -0
  174. package/types/Microsoft/ClearScript/IScriptEngine.d.ts +207 -0
  175. package/types/Microsoft/ClearScript/IScriptObject.d.ts +55 -0
  176. package/types/Microsoft/ClearScript/IScriptableObject.d.ts +32 -0
  177. package/types/Microsoft/ClearScript/PropertyBag.d.ts +28 -0
  178. package/types/Microsoft/ClearScript/ScriptAccess.d.ts +25 -0
  179. package/types/Microsoft/ClearScript/ScriptEngine.d.ts +202 -0
  180. package/types/Microsoft/ClearScript/ScriptObject.d.ts +69 -0
  181. package/types/Microsoft/ClearScript/Undefined.d.ts +15 -0
  182. package/types/Microsoft/ClearScript/V8/V8ProxyHelpers.d.ts +7 -0
  183. package/types/Microsoft/ClearScript/ValueRef.d.ts +25 -0
  184. package/types/Microsoft/ClearScript/VoidResult.d.ts +15 -0
  185. package/types/Microsoft/Extensions/Localization/IStringLocalizer.d.ts +71 -6
  186. package/types/Microsoft/Extensions/Localization/LocalizedString.d.ts +24 -20
  187. package/types/Microsoft/Extensions/Logging/EventId.d.ts +33 -0
  188. package/types/Microsoft/Extensions/Logging/ILogger.d.ts +42 -0
  189. package/types/Microsoft/Extensions/Logging/LogLevel.d.ts +29 -0
  190. package/types/Microsoft/ML/OnnxRuntime/CoreMLFlags.d.ts +30 -0
  191. package/types/Microsoft/ML/OnnxRuntime/DisposableNamedOnnxValue.d.ts +28 -0
  192. package/types/Microsoft/ML/OnnxRuntime/ExecutionMode.d.ts +24 -0
  193. package/types/Microsoft/ML/OnnxRuntime/FixedBufferOnnxValue.d.ts +47 -0
  194. package/types/Microsoft/ML/OnnxRuntime/GraphOptimizationLevel.d.ts +29 -0
  195. package/types/Microsoft/ML/OnnxRuntime/IDisposableReadOnlyCollection.d.ts +51 -0
  196. package/types/Microsoft/ML/OnnxRuntime/InferenceSession.d.ts +200 -0
  197. package/types/Microsoft/ML/OnnxRuntime/MapMetadata.d.ts +20 -0
  198. package/types/Microsoft/ML/OnnxRuntime/ModelMetadata.d.ts +24 -0
  199. package/types/Microsoft/ML/OnnxRuntime/NamedOnnxValue.d.ts +46 -0
  200. package/types/Microsoft/ML/OnnxRuntime/NnapiFlags.d.ts +28 -0
  201. package/types/Microsoft/ML/OnnxRuntime/NodeMetadata.d.ts +37 -0
  202. package/types/Microsoft/ML/OnnxRuntime/OnnxValueType.d.ts +29 -0
  203. package/types/Microsoft/ML/OnnxRuntime/OptionalMetadata.d.ts +18 -0
  204. package/types/Microsoft/ML/OnnxRuntime/OrtAllocator.d.ts +38 -0
  205. package/types/Microsoft/ML/OnnxRuntime/OrtAllocatorType.d.ts +24 -0
  206. package/types/Microsoft/ML/OnnxRuntime/OrtCUDAProviderOptions.d.ts +35 -0
  207. package/types/Microsoft/ML/OnnxRuntime/OrtExternalAllocation.d.ts +43 -0
  208. package/types/Microsoft/ML/OnnxRuntime/OrtIoBinding.d.ts +74 -0
  209. package/types/Microsoft/ML/OnnxRuntime/OrtLoggingLevel.d.ts +27 -0
  210. package/types/Microsoft/ML/OnnxRuntime/OrtLoraAdapter.d.ts +36 -0
  211. package/types/Microsoft/ML/OnnxRuntime/OrtMapTypeInfo.d.ts +21 -0
  212. package/types/Microsoft/ML/OnnxRuntime/OrtMemType.d.ts +26 -0
  213. package/types/Microsoft/ML/OnnxRuntime/OrtMemoryAllocation.d.ts +28 -0
  214. package/types/Microsoft/ML/OnnxRuntime/OrtMemoryInfo.d.ts +61 -0
  215. package/types/Microsoft/ML/OnnxRuntime/OrtROCMProviderOptions.d.ts +35 -0
  216. package/types/Microsoft/ML/OnnxRuntime/OrtSequenceOrOptionalTypeInfo.d.ts +23 -0
  217. package/types/Microsoft/ML/OnnxRuntime/OrtTensorRTProviderOptions.d.ts +40 -0
  218. package/types/Microsoft/ML/OnnxRuntime/OrtTensorTypeAndShapeInfo.d.ts +27 -0
  219. package/types/Microsoft/ML/OnnxRuntime/OrtTypeInfo.d.ts +25 -0
  220. package/types/Microsoft/ML/OnnxRuntime/OrtValue.d.ts +184 -0
  221. package/types/Microsoft/ML/OnnxRuntime/PrePackedWeightsContainer.d.ts +30 -0
  222. package/types/Microsoft/ML/OnnxRuntime/RunOptions.d.ts +49 -0
  223. package/types/Microsoft/ML/OnnxRuntime/SequenceMetadata.d.ts +18 -0
  224. package/types/Microsoft/ML/OnnxRuntime/SessionOptions.d.ts +170 -0
  225. package/types/Microsoft/ML/OnnxRuntime/Tensors/DenseTensor.d.ts +64 -0
  226. package/types/Microsoft/ML/OnnxRuntime/Tensors/Tensor.d.ts +117 -0
  227. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorBase.d.ts +31 -0
  228. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementType.d.ts +39 -0
  229. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementTypeInfo.d.ts +31 -0
  230. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorTypeInfo.d.ts +32 -0
  231. package/types/Microsoft/Win32/SafeHandles/SafeFileHandle.d.ts +33 -0
  232. package/types/Microsoft/Win32/SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.d.ts +24 -0
  233. package/types/Microsoft/Win32/SafeHandles/SafeProcessHandle.d.ts +30 -0
  234. package/types/Microsoft/Win32/SafeHandles/SafeWaitHandle.d.ts +30 -0
  235. package/types/OpenCvSharp/AKAZE.d.ts +90 -0
  236. package/types/OpenCvSharp/AKAZEDescriptorType.d.ts +26 -0
  237. package/types/OpenCvSharp/AccessFlag.d.ts +27 -0
  238. package/types/OpenCvSharp/AdaptiveThresholdTypes.d.ts +27 -0
  239. package/types/OpenCvSharp/AgastFeatureDetector.d.ts +76 -0
  240. package/types/OpenCvSharp/Algorithm.d.ts +31 -0
  241. package/types/OpenCvSharp/AlgorithmParamType.d.ts +34 -0
  242. package/types/OpenCvSharp/Aruco/CornerRefineMethod.d.ts +26 -0
  243. package/types/OpenCvSharp/Aruco/CvAruco.d.ts +118 -0
  244. package/types/OpenCvSharp/Aruco/DetectorParameters.d.ts +60 -0
  245. package/types/OpenCvSharp/Aruco/Dictionary.d.ts +74 -0
  246. package/types/OpenCvSharp/Aruco/PredefinedDictionaryName.d.ts +46 -0
  247. package/types/OpenCvSharp/BFMatcher.d.ts +29 -0
  248. package/types/OpenCvSharp/BOWImgDescriptorExtractor.d.ts +76 -0
  249. package/types/OpenCvSharp/BOWKMeansTrainer.d.ts +52 -0
  250. package/types/OpenCvSharp/BOWTrainer.d.ts +34 -0
  251. package/types/OpenCvSharp/BRISK.d.ts +91 -0
  252. package/types/OpenCvSharp/BackgroundSubtractor.d.ts +41 -0
  253. package/types/OpenCvSharp/BackgroundSubtractorGMG.d.ts +63 -0
  254. package/types/OpenCvSharp/BackgroundSubtractorKNN.d.ts +60 -0
  255. package/types/OpenCvSharp/BackgroundSubtractorMOG.d.ts +57 -0
  256. package/types/OpenCvSharp/BackgroundSubtractorMog2.d.ts +70 -0
  257. package/types/OpenCvSharp/BorderTypes.d.ts +30 -0
  258. package/types/OpenCvSharp/BroxOpticalFlow.d.ts +32 -0
  259. package/types/OpenCvSharp/ButtonType.d.ts +25 -0
  260. package/types/OpenCvSharp/CLAHE.d.ts +44 -0
  261. package/types/OpenCvSharp/CalibrateCRF.d.ts +32 -0
  262. package/types/OpenCvSharp/CalibrateDebevec.d.ts +44 -0
  263. package/types/OpenCvSharp/CalibrateRobertson.d.ts +43 -0
  264. package/types/OpenCvSharp/CalibrationFlags.d.ts +40 -0
  265. package/types/OpenCvSharp/CameraChannels.d.ts +27 -0
  266. package/types/OpenCvSharp/CapturePosRatio.d.ts +24 -0
  267. package/types/OpenCvSharp/CaptureType.d.ts +25 -0
  268. package/types/OpenCvSharp/CascadeClassifier.d.ts +147 -0
  269. package/types/OpenCvSharp/ChessboardFlags.d.ts +29 -0
  270. package/types/OpenCvSharp/CircleSegment.d.ts +33 -0
  271. package/types/OpenCvSharp/CmpType.d.ts +28 -0
  272. package/types/OpenCvSharp/ColorConversionCodes.d.ts +223 -0
  273. package/types/OpenCvSharp/ColormapTypes.d.ts +44 -0
  274. package/types/OpenCvSharp/ConnectedComponent.d.ts +86 -0
  275. package/types/OpenCvSharp/ConnectedComponentsAlgorithmsTypes.d.ts +33 -0
  276. package/types/OpenCvSharp/ConnectedComponentsTypes.d.ts +30 -0
  277. package/types/OpenCvSharp/ContourApproximationModes.d.ts +30 -0
  278. package/types/OpenCvSharp/ConvertImageModes.d.ts +25 -0
  279. package/types/OpenCvSharp/CovarFlags.d.ts +28 -0
  280. package/types/OpenCvSharp/CpuFeatures.d.ts +61 -0
  281. package/types/OpenCvSharp/CriteriaTypes.d.ts +25 -0
  282. package/types/OpenCvSharp/Cv2.d.ts +6773 -0
  283. package/types/OpenCvSharp/CvErrorCallback.d.ts +48 -0
  284. package/types/OpenCvSharp/CvObject.d.ts +19 -0
  285. package/types/OpenCvSharp/CvTrackbar.d.ts +38 -0
  286. package/types/OpenCvSharp/DMatch.d.ts +58 -0
  287. package/types/OpenCvSharp/DctFlags.d.ts +25 -0
  288. package/types/OpenCvSharp/DecompTypes.d.ts +28 -0
  289. package/types/OpenCvSharp/DenseOpticalFlowExt.d.ts +48 -0
  290. package/types/OpenCvSharp/DescriptorMatcher.d.ts +133 -0
  291. package/types/OpenCvSharp/Detail/AffineBestOf2NearestMatcher.d.ts +48 -0
  292. package/types/OpenCvSharp/Detail/BestOf2NearestMatcher.d.ts +49 -0
  293. package/types/OpenCvSharp/Detail/CvDetail.d.ts +45 -0
  294. package/types/OpenCvSharp/Detail/FeaturesMatcher.d.ts +41 -0
  295. package/types/OpenCvSharp/Detail/ImageFeatures.d.ts +60 -0
  296. package/types/OpenCvSharp/Detail/MatchesInfo.d.ts +47 -0
  297. package/types/OpenCvSharp/Detail/Stitcher.d.ts +156 -0
  298. package/types/OpenCvSharp/DftFlags.d.ts +28 -0
  299. package/types/OpenCvSharp/DisposableCvObject.d.ts +28 -0
  300. package/types/OpenCvSharp/DisposableObject.d.ts +22 -0
  301. package/types/OpenCvSharp/DistanceTransformLabelTypes.d.ts +28 -0
  302. package/types/OpenCvSharp/DistanceTransformMasks.d.ts +28 -0
  303. package/types/OpenCvSharp/DistanceTypes.d.ts +30 -0
  304. package/types/OpenCvSharp/DistributionType.d.ts +24 -0
  305. package/types/OpenCvSharp/Dnn/Backend.d.ts +28 -0
  306. package/types/OpenCvSharp/Dnn/CvDnn.d.ts +228 -0
  307. package/types/OpenCvSharp/Dnn/Net.d.ts +126 -0
  308. package/types/OpenCvSharp/Dnn/Target.d.ts +31 -0
  309. package/types/OpenCvSharp/DnnSuperres/DnnSuperResImpl.d.ts +69 -0
  310. package/types/OpenCvSharp/DrawMatchesFlags.d.ts +26 -0
  311. package/types/OpenCvSharp/DualTVL1OpticalFlow.d.ts +44 -0
  312. package/types/OpenCvSharp/EM.d.ts +171 -0
  313. package/types/OpenCvSharp/EdgePreservingMethods.d.ts +27 -0
  314. package/types/OpenCvSharp/ErrorCode.d.ts +77 -0
  315. package/types/OpenCvSharp/EssentialMatMethod.d.ts +24 -0
  316. package/types/OpenCvSharp/FASTType.d.ts +25 -0
  317. package/types/OpenCvSharp/Face/BasicFaceRecognizer.d.ts +55 -0
  318. package/types/OpenCvSharp/Face/EigenFaceRecognizer.d.ts +39 -0
  319. package/types/OpenCvSharp/Face/FaceRecognizer.d.ts +72 -0
  320. package/types/OpenCvSharp/Face/Facemark.d.ts +33 -0
  321. package/types/OpenCvSharp/Face/FacemarkAAM.d.ts +67 -0
  322. package/types/OpenCvSharp/Face/FacemarkLBF.d.ts +96 -0
  323. package/types/OpenCvSharp/Face/FisherFaceRecognizer.d.ts +39 -0
  324. package/types/OpenCvSharp/Face/LBPHFaceRecognizer.d.ts +86 -0
  325. package/types/OpenCvSharp/FarnebackOpticalFlow.d.ts +36 -0
  326. package/types/OpenCvSharp/FastFeatureDetector.d.ts +41 -0
  327. package/types/OpenCvSharp/Feature2D.d.ts +86 -0
  328. package/types/OpenCvSharp/Features2D/SIFT.d.ts +51 -0
  329. package/types/OpenCvSharp/FileNode.d.ts +274 -0
  330. package/types/OpenCvSharp/FileNodeIterator.d.ts +73 -0
  331. package/types/OpenCvSharp/FileStorage.d.ts +240 -0
  332. package/types/OpenCvSharp/FindCirclesGridFlags.d.ts +28 -0
  333. package/types/OpenCvSharp/FishEyeCalibrationFlags.d.ts +36 -0
  334. package/types/OpenCvSharp/Flann/AutotunedIndexParams.d.ts +46 -0
  335. package/types/OpenCvSharp/Flann/CompositeIndexParams.d.ts +56 -0
  336. package/types/OpenCvSharp/Flann/FlannCentersInit.d.ts +25 -0
  337. package/types/OpenCvSharp/Flann/FlannDistance.d.ts +35 -0
  338. package/types/OpenCvSharp/Flann/Index.d.ts +92 -0
  339. package/types/OpenCvSharp/Flann/IndexParams.d.ts +60 -0
  340. package/types/OpenCvSharp/Flann/KDTreeIndexParams.d.ts +28 -0
  341. package/types/OpenCvSharp/Flann/KMeansIndexParams.d.ts +46 -0
  342. package/types/OpenCvSharp/Flann/LinearIndexParams.d.ts +29 -0
  343. package/types/OpenCvSharp/Flann/LshIndexParams.d.ts +31 -0
  344. package/types/OpenCvSharp/Flann/SavedIndexParams.d.ts +22 -0
  345. package/types/OpenCvSharp/Flann/SearchParams.d.ts +38 -0
  346. package/types/OpenCvSharp/FlannBasedMatcher.d.ts +39 -0
  347. package/types/OpenCvSharp/FlipMode.d.ts +25 -0
  348. package/types/OpenCvSharp/FloodFillFlags.d.ts +26 -0
  349. package/types/OpenCvSharp/FormatType.d.ts +28 -0
  350. package/types/OpenCvSharp/FourCC.d.ts +85 -0
  351. package/types/OpenCvSharp/FrameSource.d.ts +42 -0
  352. package/types/OpenCvSharp/FundamentalMatMethods.d.ts +29 -0
  353. package/types/OpenCvSharp/GFTTDetector.d.ts +71 -0
  354. package/types/OpenCvSharp/GemmFlags.d.ts +26 -0
  355. package/types/OpenCvSharp/GeneralizedHough.d.ts +77 -0
  356. package/types/OpenCvSharp/GeneralizedHoughBallard.d.ts +30 -0
  357. package/types/OpenCvSharp/GeneralizedHoughGuil.d.ts +54 -0
  358. package/types/OpenCvSharp/GrabCutClasses.d.ts +26 -0
  359. package/types/OpenCvSharp/GrabCutModes.d.ts +25 -0
  360. package/types/OpenCvSharp/HOGDescriptor.d.ts +419 -0
  361. package/types/OpenCvSharp/HaarDetectionTypes.d.ts +26 -0
  362. package/types/OpenCvSharp/HandEyeCalibrationMethod.d.ts +30 -0
  363. package/types/OpenCvSharp/HausdorffDistanceExtractor.d.ts +45 -0
  364. package/types/OpenCvSharp/HersheyFonts.d.ts +31 -0
  365. package/types/OpenCvSharp/HierarchyIndex.d.ts +41 -0
  366. package/types/OpenCvSharp/HistCompMethods.d.ts +29 -0
  367. package/types/OpenCvSharp/HistogramNormType.d.ts +23 -0
  368. package/types/OpenCvSharp/HomographyMethods.d.ts +33 -0
  369. package/types/OpenCvSharp/HoughModes.d.ts +27 -0
  370. package/types/OpenCvSharp/ICvPtrHolder.d.ts +28 -0
  371. package/types/OpenCvSharp/IVec.d.ts +79 -0
  372. package/types/OpenCvSharp/ImageEncodingParam.d.ts +39 -0
  373. package/types/OpenCvSharp/ImgHash/AverageHash.d.ts +22 -0
  374. package/types/OpenCvSharp/ImgHash/BlockMeanHash.d.ts +35 -0
  375. package/types/OpenCvSharp/ImgHash/BlockMeanHashMode.d.ts +24 -0
  376. package/types/OpenCvSharp/ImgHash/ColorMomentHash.d.ts +29 -0
  377. package/types/OpenCvSharp/ImgHash/ImgHashBase.d.ts +28 -0
  378. package/types/OpenCvSharp/ImgHash/MarrHildrethHash.d.ts +47 -0
  379. package/types/OpenCvSharp/ImgHash/PHash.d.ts +29 -0
  380. package/types/OpenCvSharp/ImgHash/RadialVarianceHash.d.ts +45 -0
  381. package/types/OpenCvSharp/ImreadModes.d.ts +35 -0
  382. package/types/OpenCvSharp/ImwriteEXRTypeFlags.d.ts +24 -0
  383. package/types/OpenCvSharp/ImwriteFlags.d.ts +40 -0
  384. package/types/OpenCvSharp/ImwritePAMFlags.d.ts +28 -0
  385. package/types/OpenCvSharp/ImwritePNGFlags.d.ts +27 -0
  386. package/types/OpenCvSharp/InOutArrayKind.d.ts +38 -0
  387. package/types/OpenCvSharp/InpaintMethod.d.ts +24 -0
  388. package/types/OpenCvSharp/InputArray.d.ts +156 -0
  389. package/types/OpenCvSharp/InputOutputArray.d.ts +25 -0
  390. package/types/OpenCvSharp/Internal/ExceptionHandler.d.ts +22 -0
  391. package/types/OpenCvSharp/Internal/ExceptionStatus.d.ts +24 -0
  392. package/types/OpenCvSharp/Internal/NativeMethods.d.ts +13049 -0
  393. package/types/OpenCvSharp/Internal/StdString.d.ts +36 -0
  394. package/types/OpenCvSharp/Internal/Util/ArrayAddress.d.ts +40 -0
  395. package/types/OpenCvSharp/Internal/Util/ArrayAddress2.d.ts +44 -0
  396. package/types/OpenCvSharp/Internal/Util/PInvokeHelper.d.ts +27 -0
  397. package/types/OpenCvSharp/Internal/Util/ReadOnlyArray2D.d.ts +41 -0
  398. package/types/OpenCvSharp/Internal/Util/SaturateCast.d.ts +82 -0
  399. package/types/OpenCvSharp/Internal/Util/ScopedGCHandle.d.ts +40 -0
  400. package/types/OpenCvSharp/Internal/Vectors/IStdVector.d.ts +47 -0
  401. package/types/OpenCvSharp/Internal/Vectors/VectorOfByte.d.ts +43 -0
  402. package/types/OpenCvSharp/Internal/Vectors/VectorOfDMatch.d.ts +44 -0
  403. package/types/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.d.ts +40 -0
  404. package/types/OpenCvSharp/Internal/Vectors/VectorOfDouble.d.ts +43 -0
  405. package/types/OpenCvSharp/Internal/Vectors/VectorOfFloat.d.ts +43 -0
  406. package/types/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.d.ts +38 -0
  407. package/types/OpenCvSharp/Internal/Vectors/VectorOfInt32.d.ts +43 -0
  408. package/types/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.d.ts +44 -0
  409. package/types/OpenCvSharp/Internal/Vectors/VectorOfMat.d.ts +46 -0
  410. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint.d.ts +44 -0
  411. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.d.ts +40 -0
  412. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.d.ts +44 -0
  413. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.d.ts +44 -0
  414. package/types/OpenCvSharp/Internal/Vectors/VectorOfRect.d.ts +44 -0
  415. package/types/OpenCvSharp/Internal/Vectors/VectorOfRect2d.d.ts +44 -0
  416. package/types/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.d.ts +44 -0
  417. package/types/OpenCvSharp/Internal/Vectors/VectorOfString.d.ts +39 -0
  418. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec2f.d.ts +41 -0
  419. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec3f.d.ts +41 -0
  420. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4f.d.ts +43 -0
  421. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4i.d.ts +43 -0
  422. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.d.ts +40 -0
  423. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.d.ts +41 -0
  424. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.d.ts +40 -0
  425. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.d.ts +40 -0
  426. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.d.ts +42 -0
  427. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.d.ts +43 -0
  428. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.d.ts +41 -0
  429. package/types/OpenCvSharp/Internal/Win32API.d.ts +19 -0
  430. package/types/OpenCvSharp/Internal/WindowsLibraryLoader.d.ts +37 -0
  431. package/types/OpenCvSharp/InterpolationFlags.d.ts +31 -0
  432. package/types/OpenCvSharp/KAZE.d.ts +70 -0
  433. package/types/OpenCvSharp/KAZEDiffusivityType.d.ts +26 -0
  434. package/types/OpenCvSharp/KMeansFlags.d.ts +25 -0
  435. package/types/OpenCvSharp/KalmanFilter.d.ts +94 -0
  436. package/types/OpenCvSharp/KeyPoint.d.ts +109 -0
  437. package/types/OpenCvSharp/KeyPointsFilter.d.ts +57 -0
  438. package/types/OpenCvSharp/LDA.d.ts +63 -0
  439. package/types/OpenCvSharp/Line2D.d.ts +54 -0
  440. package/types/OpenCvSharp/Line3D.d.ts +56 -0
  441. package/types/OpenCvSharp/LineDescriptor/KeyLine.d.ts +213 -0
  442. package/types/OpenCvSharp/LineDescriptor/LSDParam.d.ts +73 -0
  443. package/types/OpenCvSharp/LineIterator.d.ts +98 -0
  444. package/types/OpenCvSharp/LineSegmentDetector.d.ts +132 -0
  445. package/types/OpenCvSharp/LineSegmentDetectorModes.d.ts +28 -0
  446. package/types/OpenCvSharp/LineSegmentPoint.d.ts +61 -0
  447. package/types/OpenCvSharp/LineSegmentPolar.d.ts +56 -0
  448. package/types/OpenCvSharp/LineTypes.d.ts +25 -0
  449. package/types/OpenCvSharp/LogLevel.d.ts +29 -0
  450. package/types/OpenCvSharp/ML/ANN_MLP.d.ts +149 -0
  451. package/types/OpenCvSharp/ML/Boost.d.ts +59 -0
  452. package/types/OpenCvSharp/ML/DTrees.d.ts +104 -0
  453. package/types/OpenCvSharp/ML/KNearest.d.ts +83 -0
  454. package/types/OpenCvSharp/ML/LogisticRegression.d.ts +111 -0
  455. package/types/OpenCvSharp/ML/NormalBayesClassifier.d.ts +48 -0
  456. package/types/OpenCvSharp/ML/ParamGrid.d.ts +32 -0
  457. package/types/OpenCvSharp/ML/RTrees.d.ts +36 -0
  458. package/types/OpenCvSharp/ML/SVM.d.ts +199 -0
  459. package/types/OpenCvSharp/ML/SampleTypes.d.ts +24 -0
  460. package/types/OpenCvSharp/ML/StatModel.d.ts +82 -0
  461. package/types/OpenCvSharp/ML/TrainData.d.ts +26 -0
  462. package/types/OpenCvSharp/MSER.d.ts +107 -0
  463. package/types/OpenCvSharp/MarkerTypes.d.ts +29 -0
  464. package/types/OpenCvSharp/Mat.d.ts +2572 -0
  465. package/types/OpenCvSharp/MatDiagType.d.ts +25 -0
  466. package/types/OpenCvSharp/MatExpr.d.ts +121 -0
  467. package/types/OpenCvSharp/MatExprRowColIndexer.d.ts +31 -0
  468. package/types/OpenCvSharp/MatForeachFunctionByte.d.ts +30 -0
  469. package/types/OpenCvSharp/MatForeachFunctionDouble.d.ts +30 -0
  470. package/types/OpenCvSharp/MatForeachFunctionFloat.d.ts +30 -0
  471. package/types/OpenCvSharp/MatForeachFunctionInt16.d.ts +30 -0
  472. package/types/OpenCvSharp/MatForeachFunctionInt32.d.ts +30 -0
  473. package/types/OpenCvSharp/MatForeachFunctionVec2b.d.ts +31 -0
  474. package/types/OpenCvSharp/MatForeachFunctionVec2d.d.ts +31 -0
  475. package/types/OpenCvSharp/MatForeachFunctionVec2f.d.ts +31 -0
  476. package/types/OpenCvSharp/MatForeachFunctionVec2i.d.ts +31 -0
  477. package/types/OpenCvSharp/MatForeachFunctionVec2s.d.ts +31 -0
  478. package/types/OpenCvSharp/MatForeachFunctionVec3b.d.ts +31 -0
  479. package/types/OpenCvSharp/MatForeachFunctionVec3d.d.ts +31 -0
  480. package/types/OpenCvSharp/MatForeachFunctionVec3f.d.ts +31 -0
  481. package/types/OpenCvSharp/MatForeachFunctionVec3i.d.ts +31 -0
  482. package/types/OpenCvSharp/MatForeachFunctionVec3s.d.ts +31 -0
  483. package/types/OpenCvSharp/MatForeachFunctionVec4b.d.ts +31 -0
  484. package/types/OpenCvSharp/MatForeachFunctionVec4d.d.ts +31 -0
  485. package/types/OpenCvSharp/MatForeachFunctionVec4f.d.ts +31 -0
  486. package/types/OpenCvSharp/MatForeachFunctionVec4i.d.ts +31 -0
  487. package/types/OpenCvSharp/MatForeachFunctionVec4s.d.ts +31 -0
  488. package/types/OpenCvSharp/MatForeachFunctionVec6b.d.ts +31 -0
  489. package/types/OpenCvSharp/MatForeachFunctionVec6d.d.ts +31 -0
  490. package/types/OpenCvSharp/MatForeachFunctionVec6f.d.ts +31 -0
  491. package/types/OpenCvSharp/MatForeachFunctionVec6i.d.ts +31 -0
  492. package/types/OpenCvSharp/MatForeachFunctionVec6s.d.ts +31 -0
  493. package/types/OpenCvSharp/MatIndexer.d.ts +59 -0
  494. package/types/OpenCvSharp/MatMemoryManager.d.ts +48 -0
  495. package/types/OpenCvSharp/MatOfT.d.ts +1 -0
  496. package/types/OpenCvSharp/MatType.d.ts +87 -0
  497. package/types/OpenCvSharp/MergeDebevec.d.ts +22 -0
  498. package/types/OpenCvSharp/MergeExposures.d.ts +34 -0
  499. package/types/OpenCvSharp/MergeMertens.d.ts +33 -0
  500. package/types/OpenCvSharp/Moments.d.ts +125 -0
  501. package/types/OpenCvSharp/MorphShapes.d.ts +25 -0
  502. package/types/OpenCvSharp/MorphTypes.d.ts +30 -0
  503. package/types/OpenCvSharp/MotionTypes.d.ts +26 -0
  504. package/types/OpenCvSharp/MouseCallback.d.ts +48 -0
  505. package/types/OpenCvSharp/MouseEventFlags.d.ts +28 -0
  506. package/types/OpenCvSharp/MouseEventTypes.d.ts +34 -0
  507. package/types/OpenCvSharp/NormTypes.d.ts +30 -0
  508. package/types/OpenCvSharp/ORB.d.ts +114 -0
  509. package/types/OpenCvSharp/ORBScoreType.d.ts +24 -0
  510. package/types/OpenCvSharp/OpenCVException.d.ts +58 -0
  511. package/types/OpenCvSharp/OpenCvSharpException.d.ts +30 -0
  512. package/types/OpenCvSharp/OptFlow/CvOptFlow.d.ts +149 -0
  513. package/types/OpenCvSharp/OpticalFlowFlags.d.ts +28 -0
  514. package/types/OpenCvSharp/OutputArray.d.ts +58 -0
  515. package/types/OpenCvSharp/OutputArrayOfMatList.d.ts +31 -0
  516. package/types/OpenCvSharp/OutputArrayOfStructList.d.ts +38 -0
  517. package/types/OpenCvSharp/PCA.d.ts +121 -0
  518. package/types/OpenCvSharp/PixelConnectivity.d.ts +24 -0
  519. package/types/OpenCvSharp/Point.d.ts +51 -0
  520. package/types/OpenCvSharp/Point2d.d.ts +52 -0
  521. package/types/OpenCvSharp/Point2f.d.ts +53 -0
  522. package/types/OpenCvSharp/Point3d.d.ts +55 -0
  523. package/types/OpenCvSharp/Point3f.d.ts +56 -0
  524. package/types/OpenCvSharp/Point3i.d.ts +53 -0
  525. package/types/OpenCvSharp/ProjectionType.d.ts +24 -0
  526. package/types/OpenCvSharp/Ptr.d.ts +25 -0
  527. package/types/OpenCvSharp/PyrLKOpticalFlow.d.ts +26 -0
  528. package/types/OpenCvSharp/QRCodeDetector.d.ts +90 -0
  529. package/types/OpenCvSharp/Quality/QualityBRISQUE.d.ts +35 -0
  530. package/types/OpenCvSharp/Quality/QualityBase.d.ts +31 -0
  531. package/types/OpenCvSharp/Quality/QualityGMSD.d.ts +30 -0
  532. package/types/OpenCvSharp/Quality/QualityMSE.d.ts +30 -0
  533. package/types/OpenCvSharp/Quality/QualityPSNR.d.ts +49 -0
  534. package/types/OpenCvSharp/Quality/QualitySSIM.d.ts +30 -0
  535. package/types/OpenCvSharp/RNG.d.ts +68 -0
  536. package/types/OpenCvSharp/RNG_MT19937.d.ts +41 -0
  537. package/types/OpenCvSharp/Range.d.ts +36 -0
  538. package/types/OpenCvSharp/Rangef.d.ts +38 -0
  539. package/types/OpenCvSharp/Rect.d.ts +86 -0
  540. package/types/OpenCvSharp/Rect2d.d.ts +89 -0
  541. package/types/OpenCvSharp/Rect2f.d.ts +88 -0
  542. package/types/OpenCvSharp/RectanglesIntersectTypes.d.ts +28 -0
  543. package/types/OpenCvSharp/ReduceDimension.d.ts +25 -0
  544. package/types/OpenCvSharp/ReduceTypes.d.ts +26 -0
  545. package/types/OpenCvSharp/ResourcesTracker.d.ts +49 -0
  546. package/types/OpenCvSharp/RetrievalModes.d.ts +27 -0
  547. package/types/OpenCvSharp/RidgeDetectionFilter.d.ts +92 -0
  548. package/types/OpenCvSharp/RobotWorldHandEyeCalibrationMethod.d.ts +28 -0
  549. package/types/OpenCvSharp/RobustEstimationAlgorithms.d.ts +36 -0
  550. package/types/OpenCvSharp/RotateFlags.d.ts +25 -0
  551. package/types/OpenCvSharp/RotatedRect.d.ts +53 -0
  552. package/types/OpenCvSharp/SVD.d.ts +98 -0
  553. package/types/OpenCvSharp/Scalar.d.ts +247 -0
  554. package/types/OpenCvSharp/SeamlessCloneMethods.d.ts +28 -0
  555. package/types/OpenCvSharp/Segmentation/IntelligentScissorsMB.d.ts +97 -0
  556. package/types/OpenCvSharp/ShapeContextDistanceExtractor.d.ts +89 -0
  557. package/types/OpenCvSharp/ShapeDistanceExtractor.d.ts +28 -0
  558. package/types/OpenCvSharp/ShapeMatchModes.d.ts +25 -0
  559. package/types/OpenCvSharp/SimilarRects.d.ts +29 -0
  560. package/types/OpenCvSharp/SimpleBlobDetector.d.ts +107 -0
  561. package/types/OpenCvSharp/Size.d.ts +37 -0
  562. package/types/OpenCvSharp/Size2d.d.ts +42 -0
  563. package/types/OpenCvSharp/Size2f.d.ts +47 -0
  564. package/types/OpenCvSharp/SolveLPResult.d.ts +26 -0
  565. package/types/OpenCvSharp/SolvePnPFlags.d.ts +27 -0
  566. package/types/OpenCvSharp/SortFlags.d.ts +26 -0
  567. package/types/OpenCvSharp/SparseMat.d.ts +397 -0
  568. package/types/OpenCvSharp/SparseMatIndexer.d.ts +94 -0
  569. package/types/OpenCvSharp/StereoBM.d.ts +54 -0
  570. package/types/OpenCvSharp/StereoMatcher.d.ts +46 -0
  571. package/types/OpenCvSharp/StereoRectificationFlags.d.ts +27 -0
  572. package/types/OpenCvSharp/StereoSGBM.d.ts +139 -0
  573. package/types/OpenCvSharp/Stitcher.d.ts +136 -0
  574. package/types/OpenCvSharp/Subdiv2D.d.ts +144 -0
  575. package/types/OpenCvSharp/SuperResolution.d.ts +57 -0
  576. package/types/OpenCvSharp/TemplateMatchModes.d.ts +28 -0
  577. package/types/OpenCvSharp/TermCriteria.d.ts +51 -0
  578. package/types/OpenCvSharp/Text/BaseOCR.d.ts +65 -0
  579. package/types/OpenCvSharp/Text/ComponentLevels.d.ts +24 -0
  580. package/types/OpenCvSharp/Text/CvText.d.ts +37 -0
  581. package/types/OpenCvSharp/Text/OCRTesseract.d.ts +90 -0
  582. package/types/OpenCvSharp/TextDetector.d.ts +32 -0
  583. package/types/OpenCvSharp/TextDetectorCNN.d.ts +41 -0
  584. package/types/OpenCvSharp/ThresholdTypes.d.ts +30 -0
  585. package/types/OpenCvSharp/Tonemap.d.ts +36 -0
  586. package/types/OpenCvSharp/TonemapDrago.d.ts +42 -0
  587. package/types/OpenCvSharp/TonemapMantiuk.d.ts +42 -0
  588. package/types/OpenCvSharp/TonemapReinhard.d.ts +49 -0
  589. package/types/OpenCvSharp/TrackbarCallback.d.ts +33 -0
  590. package/types/OpenCvSharp/TrackbarCallbackNative.d.ts +36 -0
  591. package/types/OpenCvSharp/Tracker.d.ts +29 -0
  592. package/types/OpenCvSharp/TrackerGOTURN.d.ts +46 -0
  593. package/types/OpenCvSharp/TrackerMIL.d.ts +50 -0
  594. package/types/OpenCvSharp/Tracking/TrackerCSRT.d.ts +76 -0
  595. package/types/OpenCvSharp/Tracking/TrackerKCF.d.ts +61 -0
  596. package/types/OpenCvSharp/Tracking/TrackerTypes.d.ts +28 -0
  597. package/types/OpenCvSharp/UMat.d.ts +358 -0
  598. package/types/OpenCvSharp/UMatUsageFlags.d.ts +26 -0
  599. package/types/OpenCvSharp/UsacParams.d.ts +150 -0
  600. package/types/OpenCvSharp/Vec2b.d.ts +58 -0
  601. package/types/OpenCvSharp/Vec2d.d.ts +46 -0
  602. package/types/OpenCvSharp/Vec2f.d.ts +51 -0
  603. package/types/OpenCvSharp/Vec2i.d.ts +50 -0
  604. package/types/OpenCvSharp/Vec2s.d.ts +55 -0
  605. package/types/OpenCvSharp/Vec2w.d.ts +55 -0
  606. package/types/OpenCvSharp/Vec3b.d.ts +66 -0
  607. package/types/OpenCvSharp/Vec3d.d.ts +55 -0
  608. package/types/OpenCvSharp/Vec3f.d.ts +60 -0
  609. package/types/OpenCvSharp/Vec3i.d.ts +59 -0
  610. package/types/OpenCvSharp/Vec3s.d.ts +64 -0
  611. package/types/OpenCvSharp/Vec3w.d.ts +64 -0
  612. package/types/OpenCvSharp/Vec4b.d.ts +69 -0
  613. package/types/OpenCvSharp/Vec4d.d.ts +58 -0
  614. package/types/OpenCvSharp/Vec4f.d.ts +63 -0
  615. package/types/OpenCvSharp/Vec4i.d.ts +62 -0
  616. package/types/OpenCvSharp/Vec4s.d.ts +67 -0
  617. package/types/OpenCvSharp/Vec4w.d.ts +67 -0
  618. package/types/OpenCvSharp/Vec6b.d.ts +75 -0
  619. package/types/OpenCvSharp/Vec6d.d.ts +64 -0
  620. package/types/OpenCvSharp/Vec6f.d.ts +69 -0
  621. package/types/OpenCvSharp/Vec6i.d.ts +68 -0
  622. package/types/OpenCvSharp/Vec6s.d.ts +73 -0
  623. package/types/OpenCvSharp/Vec6w.d.ts +73 -0
  624. package/types/OpenCvSharp/VideoAccelerationType.d.ts +30 -0
  625. package/types/OpenCvSharp/VideoCapture.d.ts +288 -0
  626. package/types/OpenCvSharp/VideoCaptureAPIs.d.ts +53 -0
  627. package/types/OpenCvSharp/VideoCapturePara.d.ts +43 -0
  628. package/types/OpenCvSharp/VideoCaptureProperties.d.ts +152 -0
  629. package/types/OpenCvSharp/VideoWriter.d.ts +164 -0
  630. package/types/OpenCvSharp/VideoWriterPara.d.ts +43 -0
  631. package/types/OpenCvSharp/VideoWriterProperties.d.ts +32 -0
  632. package/types/OpenCvSharp/WarpPolarMode.d.ts +24 -0
  633. package/types/OpenCvSharp/WeChatQRCode.d.ts +39 -0
  634. package/types/OpenCvSharp/Window.d.ts +113 -0
  635. package/types/OpenCvSharp/WindowFlags.d.ts +30 -0
  636. package/types/OpenCvSharp/WindowPropertyFlags.d.ts +28 -0
  637. package/types/OpenCvSharp/XFeatures2D/BriefDescriptorExtractor.d.ts +35 -0
  638. package/types/OpenCvSharp/XFeatures2D/FREAK.d.ts +49 -0
  639. package/types/OpenCvSharp/XFeatures2D/LATCH.d.ts +44 -0
  640. package/types/OpenCvSharp/XFeatures2D/LUCID.d.ts +32 -0
  641. package/types/OpenCvSharp/XFeatures2D/SURF.d.ts +61 -0
  642. package/types/OpenCvSharp/XFeatures2D/StarDetector.d.ts +50 -0
  643. package/types/OpenCvSharp/XImgProc/AdaptiveManifoldFilter.d.ts +59 -0
  644. package/types/OpenCvSharp/XImgProc/AngleRangeOption.d.ts +31 -0
  645. package/types/OpenCvSharp/XImgProc/CvXImgProc.d.ts +858 -0
  646. package/types/OpenCvSharp/XImgProc/DTFilter.d.ts +59 -0
  647. package/types/OpenCvSharp/XImgProc/EdgeAwareFiltersList.d.ts +30 -0
  648. package/types/OpenCvSharp/XImgProc/EdgeBoxes.d.ts +168 -0
  649. package/types/OpenCvSharp/XImgProc/FastBilateralSolverFilter.d.ts +72 -0
  650. package/types/OpenCvSharp/XImgProc/FastGlobalSmootherFilter.d.ts +55 -0
  651. package/types/OpenCvSharp/XImgProc/FastLineDetector.d.ts +87 -0
  652. package/types/OpenCvSharp/XImgProc/GuidedFilter.d.ts +44 -0
  653. package/types/OpenCvSharp/XImgProc/HoughDeskewOption.d.ts +24 -0
  654. package/types/OpenCvSharp/XImgProc/HoughOP.d.ts +26 -0
  655. package/types/OpenCvSharp/XImgProc/LocalBinarizationMethods.d.ts +29 -0
  656. package/types/OpenCvSharp/XImgProc/RFFeatureGetter.d.ts +41 -0
  657. package/types/OpenCvSharp/XImgProc/RulesOption.d.ts +24 -0
  658. package/types/OpenCvSharp/XImgProc/SLICType.d.ts +25 -0
  659. package/types/OpenCvSharp/XImgProc/Segmentation/GraphSegmentation.d.ts +51 -0
  660. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentation.d.ts +91 -0
  661. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy.d.ts +141 -0
  662. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategyMultiple.d.ts +70 -0
  663. package/types/OpenCvSharp/XImgProc/StructuredEdgeDetection.d.ts +90 -0
  664. package/types/OpenCvSharp/XImgProc/SuperpixelLSC.d.ts +58 -0
  665. package/types/OpenCvSharp/XImgProc/SuperpixelSEEDS.d.ts +78 -0
  666. package/types/OpenCvSharp/XImgProc/SuperpixelSLIC.d.ts +66 -0
  667. package/types/OpenCvSharp/XImgProc/ThinningTypes.d.ts +24 -0
  668. package/types/OpenCvSharp/XImgProc/WMFWeightType.d.ts +28 -0
  669. package/types/OpenCvSharp/XPhoto/Bm3dSteps.d.ts +25 -0
  670. package/types/OpenCvSharp/XPhoto/CvXPhoto.d.ts +317 -0
  671. package/types/OpenCvSharp/XPhoto/GrayworldWB.d.ts +30 -0
  672. package/types/OpenCvSharp/XPhoto/InpaintTypes.d.ts +25 -0
  673. package/types/OpenCvSharp/XPhoto/LearningBasedWB.d.ts +40 -0
  674. package/types/OpenCvSharp/XPhoto/SimpleWB.d.ts +37 -0
  675. package/types/OpenCvSharp/XPhoto/TonemapDurand.d.ts +57 -0
  676. package/types/OpenCvSharp/XPhoto/TransformTypes.d.ts +23 -0
  677. package/types/OpenCvSharp/XPhoto/WhiteBalancer.d.ts +27 -0
  678. package/types/SixLabors/ImageSharp/Advanced/IConfigurationProvider.d.ts +34 -0
  679. package/types/SixLabors/ImageSharp/Color.d.ts +224 -0
  680. package/types/SixLabors/ImageSharp/ColorSpaces/CieXyz.d.ts +40 -0
  681. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/CieXyChromaticityCoordinates.d.ts +39 -0
  682. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RGBPrimariesChromaticityCoordinates.d.ts +41 -0
  683. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RgbWorkingSpace.d.ts +30 -0
  684. package/types/SixLabors/ImageSharp/ColorSpaces/Rgb.d.ts +53 -0
  685. package/types/SixLabors/ImageSharp/Configuration.d.ts +54 -0
  686. package/types/SixLabors/ImageSharp/Formats/DecoderOptions.d.ts +35 -0
  687. package/types/SixLabors/ImageSharp/Formats/IImageDecoder.d.ts +73 -0
  688. package/types/SixLabors/ImageSharp/Formats/IImageEncoder.d.ts +42 -0
  689. package/types/SixLabors/ImageSharp/Formats/IImageFormat.d.ts +102 -0
  690. package/types/SixLabors/ImageSharp/Formats/IImageFormatConfigurationModule.d.ts +36 -0
  691. package/types/SixLabors/ImageSharp/Formats/IImageFormatDetector.d.ts +33 -0
  692. package/types/SixLabors/ImageSharp/Formats/ImageFormatManager.d.ts +59 -0
  693. package/types/SixLabors/ImageSharp/Formats/PixelTypeInfo.d.ts +33 -0
  694. package/types/SixLabors/ImageSharp/GraphicsOptions.d.ts +35 -0
  695. package/types/SixLabors/ImageSharp/IDeepCloneable.d.ts +66 -0
  696. package/types/SixLabors/ImageSharp/Image.d.ts +401 -3
  697. package/types/SixLabors/ImageSharp/ImageFrame.d.ts +102 -0
  698. package/types/SixLabors/ImageSharp/ImageFrameCollection.d.ts +131 -0
  699. package/types/SixLabors/ImageSharp/ImageInfo.d.ts +45 -0
  700. package/types/SixLabors/ImageSharp/Memory/AllocationOptions.d.ts +28 -0
  701. package/types/SixLabors/ImageSharp/Memory/Buffer2D{T}.d.ts +42 -0
  702. package/types/SixLabors/ImageSharp/Memory/IMemoryGroup{T}.d.ts +51 -0
  703. package/types/SixLabors/ImageSharp/Memory/MemoryAllocator.d.ts +43 -0
  704. package/types/SixLabors/ImageSharp/Memory/MemoryAllocatorOptions.d.ts +27 -0
  705. package/types/SixLabors/ImageSharp/Metadata/ImageFrameMetadata.d.ts +48 -0
  706. package/types/SixLabors/ImageSharp/Metadata/ImageMetadata.d.ts +57 -0
  707. package/types/SixLabors/ImageSharp/Metadata/PixelResolutionUnit.d.ts +30 -0
  708. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpColorPrimaries.d.ts +38 -0
  709. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpMatrixCoefficients.d.ts +43 -0
  710. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpProfile.d.ts +44 -0
  711. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpTransferCharacteristics.d.ts +47 -0
  712. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/EncodedString.d.ts +60 -0
  713. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifDataType.d.ts +43 -0
  714. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifParts.d.ts +31 -0
  715. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifProfile.d.ts +59 -0
  716. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifTag.d.ts +360 -0
  717. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/IExifValue.d.ts +69 -0
  718. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccColorSpaceType.d.ts +51 -0
  719. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccDeviceAttribute.d.ts +34 -0
  720. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccPrimaryPlatformType.d.ts +34 -0
  721. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfile.d.ts +42 -0
  722. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileClass.d.ts +33 -0
  723. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileFlag.d.ts +31 -0
  724. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileHeader.d.ts +53 -0
  725. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileId.d.ts +41 -0
  726. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileTag.d.ts +90 -0
  727. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccRenderingIntent.d.ts +30 -0
  728. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTagDataEntry.d.ts +28 -0
  729. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTypeSignature.d.ts +61 -0
  730. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccVersion.d.ts +37 -0
  731. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcProfile.d.ts +76 -0
  732. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcTag.d.ts +95 -0
  733. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcValue.d.ts +36 -0
  734. package/types/SixLabors/ImageSharp/Metadata/Profiles/Xmp/XmpProfile.d.ts +35 -0
  735. package/types/SixLabors/ImageSharp/Number.d.ts +36 -0
  736. package/types/SixLabors/ImageSharp/PixelAccessorAction.d.ts +86 -0
  737. package/types/SixLabors/ImageSharp/PixelFormats/Abgr32.d.ts +104 -0
  738. package/types/SixLabors/ImageSharp/PixelFormats/Argb32.d.ts +104 -0
  739. package/types/SixLabors/ImageSharp/PixelFormats/Bgr24.d.ts +73 -0
  740. package/types/SixLabors/ImageSharp/PixelFormats/Bgra32.d.ts +87 -0
  741. package/types/SixLabors/ImageSharp/PixelFormats/Bgra5551.d.ts +78 -0
  742. package/types/SixLabors/ImageSharp/PixelFormats/IPackedVector{TPacked}.d.ts +45 -0
  743. package/types/SixLabors/ImageSharp/PixelFormats/IPixel.d.ts +94 -0
  744. package/types/SixLabors/ImageSharp/PixelFormats/L16.d.ts +72 -0
  745. package/types/SixLabors/ImageSharp/PixelFormats/L8.d.ts +72 -0
  746. package/types/SixLabors/ImageSharp/PixelFormats/La16.d.ts +74 -0
  747. package/types/SixLabors/ImageSharp/PixelFormats/La32.d.ts +74 -0
  748. package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaCompositionMode.d.ts +42 -0
  749. package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaRepresentation.d.ts +32 -0
  750. package/types/SixLabors/ImageSharp/PixelFormats/PixelBlender{TPixel}.d.ts +33 -0
  751. package/types/SixLabors/ImageSharp/PixelFormats/PixelColorBlendingMode.d.ts +38 -0
  752. package/types/SixLabors/ImageSharp/PixelFormats/PixelOperations{TPixel}.d.ts +62 -0
  753. package/types/SixLabors/ImageSharp/PixelFormats/Rgb24.d.ts +73 -0
  754. package/types/SixLabors/ImageSharp/PixelFormats/Rgb48.d.ts +73 -0
  755. package/types/SixLabors/ImageSharp/PixelFormats/Rgba32.d.ts +112 -0
  756. package/types/SixLabors/ImageSharp/PixelFormats/Rgba64.d.ts +95 -0
  757. package/types/SixLabors/ImageSharp/Point.d.ts +65 -0
  758. package/types/SixLabors/ImageSharp/PointF.d.ts +69 -0
  759. package/types/SixLabors/ImageSharp/Processing/Processors/IImageProcessor{TPixel}.d.ts +47 -0
  760. package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResampler.d.ts +39 -0
  761. package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResamplingTransformImageProcessor{TPixel}.d.ts +56 -0
  762. package/types/SixLabors/ImageSharp/Rational.d.ts +53 -0
  763. package/types/SixLabors/ImageSharp/ReadOrigin.d.ts +24 -0
  764. package/types/SixLabors/ImageSharp/Rectangle.d.ts +99 -0
  765. package/types/SixLabors/ImageSharp/RectangleF.d.ts +98 -0
  766. package/types/SixLabors/ImageSharp/SignedRational.d.ts +52 -0
  767. package/types/SixLabors/ImageSharp/Size.d.ts +55 -0
  768. package/types/SixLabors/ImageSharp/SizeF.d.ts +56 -0
  769. package/types/System/Action.d.ts +235 -0
  770. package/types/System/AggregateException.d.ts +69 -0
  771. package/types/System/Array.d.ts +441 -0
  772. package/types/System/ArraySegment.d.ts +108 -0
  773. package/types/System/AsyncCallback.d.ts +26 -0
  774. package/types/System/Attribute.d.ts +148 -0
  775. package/types/System/Boolean.d.ts +46 -0
  776. package/types/System/Buffers/IBufferWriter.d.ts +50 -0
  777. package/types/System/Buffers/IMemoryOwner.d.ts +46 -0
  778. package/types/System/Buffers/IPinnable.d.ts +35 -0
  779. package/types/System/Buffers/MemoryHandle.d.ts +22 -0
  780. package/types/System/Buffers/MemoryManager.d.ts +46 -0
  781. package/types/System/Buffers/ReadOnlySequence.d.ts +129 -0
  782. package/types/System/Buffers/ReadOnlySequenceSegment.d.ts +34 -0
  783. package/types/System/Buffers/SpanAction.d.ts +45 -0
  784. package/types/System/Byte.d.ts +156 -0
  785. package/types/System/Char.d.ts +172 -0
  786. package/types/System/CharEnumerator.d.ts +32 -0
  787. package/types/System/Collections/CollectionBase.d.ts +37 -0
  788. package/types/System/Collections/Concurrent/ConcurrentDictionary.d.ts +142 -0
  789. package/types/System/Collections/DictionaryEntry.d.ts +19 -8
  790. package/types/System/Collections/Generic/Dictionary.d.ts +263 -179
  791. package/types/System/Collections/Generic/HashSet.d.ts +134 -0
  792. package/types/System/Collections/Generic/ICollection.d.ts +44 -11
  793. package/types/System/Collections/Generic/IComparer.d.ts +44 -0
  794. package/types/System/Collections/Generic/IDictionary.d.ts +55 -3
  795. package/types/System/Collections/Generic/IEnumerable.d.ts +38 -4
  796. package/types/System/Collections/Generic/IEnumerator.d.ts +38 -4
  797. package/types/System/Collections/Generic/IEqualityComparer.d.ts +39 -4
  798. package/types/System/Collections/Generic/IList.d.ts +42 -11
  799. package/types/System/Collections/Generic/IReadOnlyCollection.d.ts +40 -3
  800. package/types/System/Collections/Generic/IReadOnlyDictionary.d.ts +51 -9
  801. package/types/System/Collections/Generic/IReadOnlyList.d.ts +45 -3
  802. package/types/System/Collections/Generic/IReadOnlySet.d.ts +53 -0
  803. package/types/System/Collections/Generic/ISet.d.ts +52 -0
  804. package/types/System/Collections/Generic/KeyValuePair.d.ts +35 -12
  805. package/types/System/Collections/Generic/List.d.ts +180 -139
  806. package/types/System/Collections/ICollection.d.ts +29 -8
  807. package/types/System/Collections/IComparer.d.ts +27 -0
  808. package/types/System/Collections/IDictionary.d.ts +33 -18
  809. package/types/System/Collections/IDictionaryEnumerator.d.ts +28 -6
  810. package/types/System/Collections/IEnumerable.d.ts +22 -3
  811. package/types/System/Collections/IEnumerator.d.ts +23 -6
  812. package/types/System/Collections/IEqualityComparer.d.ts +24 -4
  813. package/types/System/Collections/IList.d.ts +39 -21
  814. package/types/System/Collections/IStructuralComparable.d.ts +26 -4
  815. package/types/System/Collections/IStructuralEquatable.d.ts +25 -4
  816. package/types/System/Collections/ObjectModel/Collection.d.ts +71 -0
  817. package/types/System/Collections/ObjectModel/ReadOnlyCollection.d.ts +64 -0
  818. package/types/System/Collections/ReadOnlyCollectionBase.d.ts +29 -0
  819. package/types/System/Collections/Specialized/StringDictionary.d.ts +50 -0
  820. package/types/System/Comparison.d.ts +39 -0
  821. package/types/System/ComponentModel/Component.d.ts +42 -0
  822. package/types/System/ComponentModel/ComponentCollection.d.ts +46 -0
  823. package/types/System/ComponentModel/IComponent.d.ts +32 -0
  824. package/types/System/ComponentModel/IContainer.d.ts +34 -0
  825. package/types/System/ComponentModel/INotifyPropertyChanged.d.ts +37 -0
  826. package/types/System/ComponentModel/INotifyPropertyChanging.d.ts +37 -0
  827. package/types/System/ComponentModel/ISite.d.ts +32 -0
  828. package/types/System/ComponentModel/ISynchronizeInvoke.d.ts +35 -0
  829. package/types/System/ComponentModel/PropertyChangedEventArgs.d.ts +23 -0
  830. package/types/System/ComponentModel/PropertyChangedEventHandler.d.ts +36 -0
  831. package/types/System/ComponentModel/PropertyChangingEventArgs.d.ts +24 -0
  832. package/types/System/ComponentModel/PropertyChangingEventHandler.d.ts +36 -0
  833. package/types/System/Configuration/Assemblies/AssemblyHashAlgorithm.d.ts +35 -0
  834. package/types/System/Configuration/Assemblies/AssemblyVersionCompatibility.d.ts +33 -0
  835. package/types/System/Converter.d.ts +44 -0
  836. package/types/System/DateOnly.d.ts +154 -0
  837. package/types/System/DateTime.d.ts +308 -3
  838. package/types/System/DateTimeKind.d.ts +25 -0
  839. package/types/System/DateTimeOffset.d.ts +218 -3
  840. package/types/System/DayOfWeek.d.ts +29 -0
  841. package/types/System/Decimal.d.ts +225 -0
  842. package/types/System/Delegate.d.ts +78 -0
  843. package/types/System/Diagnostics/DataReceivedEventArgs.d.ts +21 -0
  844. package/types/System/Diagnostics/DataReceivedEventHandler.d.ts +35 -0
  845. package/types/System/Diagnostics/FileVersionInfo.d.ts +50 -0
  846. package/types/System/Diagnostics/Process.d.ts +230 -0
  847. package/types/System/Diagnostics/ProcessModule.d.ts +41 -0
  848. package/types/System/Diagnostics/ProcessModuleCollection.d.ts +46 -0
  849. package/types/System/Diagnostics/ProcessPriorityClass.d.ts +31 -0
  850. package/types/System/Diagnostics/ProcessStartInfo.d.ts +66 -0
  851. package/types/System/Diagnostics/ProcessThread.d.ts +69 -0
  852. package/types/System/Diagnostics/ProcessThreadCollection.d.ts +55 -0
  853. package/types/System/Diagnostics/ProcessWindowStyle.d.ts +26 -0
  854. package/types/System/Diagnostics/ThreadPriorityLevel.d.ts +29 -0
  855. package/types/System/Diagnostics/ThreadState.d.ts +30 -0
  856. package/types/System/Diagnostics/ThreadWaitReason.d.ts +36 -0
  857. package/types/System/Dispatch.d.ts +28 -0
  858. package/types/System/Double.d.ts +272 -0
  859. package/types/System/Drawing/Bitmap.d.ts +119 -2
  860. package/types/System/Drawing/Brush.d.ts +26 -0
  861. package/types/System/Drawing/CharacterRange.d.ts +34 -0
  862. package/types/System/Drawing/Color.d.ts +198 -334
  863. package/types/System/Drawing/CopyPixelOperation.d.ts +39 -0
  864. package/types/System/Drawing/Drawing2D/CombineMode.d.ts +32 -0
  865. package/types/System/Drawing/Drawing2D/CompositingMode.d.ts +28 -0
  866. package/types/System/Drawing/Drawing2D/CompositingQuality.d.ts +32 -0
  867. package/types/System/Drawing/Drawing2D/CoordinateSpace.d.ts +29 -0
  868. package/types/System/Drawing/Drawing2D/CustomLineCap.d.ts +74 -0
  869. package/types/System/Drawing/Drawing2D/DashCap.d.ts +29 -0
  870. package/types/System/Drawing/Drawing2D/DashStyle.d.ts +32 -0
  871. package/types/System/Drawing/Drawing2D/FillMode.d.ts +28 -0
  872. package/types/System/Drawing/Drawing2D/FlushIntention.d.ts +28 -0
  873. package/types/System/Drawing/Drawing2D/GraphicsContainer.d.ts +20 -0
  874. package/types/System/Drawing/Drawing2D/GraphicsPath.d.ts +409 -0
  875. package/types/System/Drawing/Drawing2D/GraphicsState.d.ts +17 -0
  876. package/types/System/Drawing/Drawing2D/InterpolationMode.d.ts +35 -0
  877. package/types/System/Drawing/Drawing2D/LineCap.d.ts +37 -0
  878. package/types/System/Drawing/Drawing2D/LineJoin.d.ts +30 -0
  879. package/types/System/Drawing/Drawing2D/Matrix.d.ts +142 -0
  880. package/types/System/Drawing/Drawing2D/MatrixOrder.d.ts +28 -0
  881. package/types/System/Drawing/Drawing2D/PathData.d.ts +30 -0
  882. package/types/System/Drawing/Drawing2D/PenAlignment.d.ts +31 -0
  883. package/types/System/Drawing/Drawing2D/PenType.d.ts +31 -0
  884. package/types/System/Drawing/Drawing2D/PixelOffsetMode.d.ts +32 -0
  885. package/types/System/Drawing/Drawing2D/RegionData.d.ts +22 -0
  886. package/types/System/Drawing/Drawing2D/SmoothingMode.d.ts +32 -0
  887. package/types/System/Drawing/Drawing2D/WarpMode.d.ts +28 -0
  888. package/types/System/Drawing/Drawing2D/WrapMode.d.ts +31 -0
  889. package/types/System/Drawing/Font.d.ts +173 -0
  890. package/types/System/Drawing/FontFamily.d.ts +66 -0
  891. package/types/System/Drawing/FontStyle.d.ts +27 -0
  892. package/types/System/Drawing/Graphics.d.ts +1289 -0
  893. package/types/System/Drawing/GraphicsUnit.d.ts +29 -0
  894. package/types/System/Drawing/IDeviceContext.d.ts +31 -0
  895. package/types/System/Drawing/Icon.d.ts +91 -0
  896. package/types/System/Drawing/Image.d.ts +165 -3
  897. package/types/System/Drawing/Imaging/BitmapData.d.ts +34 -0
  898. package/types/System/Drawing/Imaging/CachedBitmap.d.ts +27 -0
  899. package/types/System/Drawing/Imaging/ColorAdjustType.d.ts +33 -0
  900. package/types/System/Drawing/Imaging/ColorChannelFlag.d.ts +31 -0
  901. package/types/System/Drawing/Imaging/ColorMap.d.ts +29 -0
  902. package/types/System/Drawing/Imaging/ColorMatrix.d.ts +65 -0
  903. package/types/System/Drawing/Imaging/ColorMatrixFlag.d.ts +29 -0
  904. package/types/System/Drawing/Imaging/ColorPalette.d.ts +24 -0
  905. package/types/System/Drawing/Imaging/EmfPlusRecordType.d.ts +279 -0
  906. package/types/System/Drawing/Imaging/EmfType.d.ts +29 -0
  907. package/types/System/Drawing/Imaging/Encoder.d.ts +37 -0
  908. package/types/System/Drawing/Imaging/EncoderParameter.d.ts +119 -0
  909. package/types/System/Drawing/Imaging/EncoderParameterValueType.d.ts +39 -0
  910. package/types/System/Drawing/Imaging/EncoderParameters.d.ts +35 -0
  911. package/types/System/Drawing/Imaging/FrameDimension.d.ts +30 -0
  912. package/types/System/Drawing/Imaging/ImageAttributes.d.ts +138 -0
  913. package/types/System/Drawing/Imaging/ImageCodecFlags.d.ts +35 -0
  914. package/types/System/Drawing/Imaging/ImageCodecInfo.d.ts +37 -0
  915. package/types/System/Drawing/Imaging/ImageFormat.d.ts +39 -0
  916. package/types/System/Drawing/Imaging/ImageLockMode.d.ts +30 -0
  917. package/types/System/Drawing/Imaging/MetaHeader.d.ts +33 -0
  918. package/types/System/Drawing/Imaging/Metafile.d.ts +257 -0
  919. package/types/System/Drawing/Imaging/MetafileFrameUnit.d.ts +32 -0
  920. package/types/System/Drawing/Imaging/MetafileHeader.d.ts +41 -0
  921. package/types/System/Drawing/Imaging/MetafileType.d.ts +32 -0
  922. package/types/System/Drawing/Imaging/PixelFormat.d.ts +49 -0
  923. package/types/System/Drawing/Imaging/PlayRecordCallback.d.ts +48 -0
  924. package/types/System/Drawing/Imaging/PropertyItem.d.ts +25 -0
  925. package/types/System/Drawing/Imaging/WmfPlaceableFileHeader.d.ts +35 -0
  926. package/types/System/Drawing/Interop/LOGFONT.d.ts +34 -0
  927. package/types/System/Drawing/KnownColor.d.ts +191 -351
  928. package/types/System/Drawing/Pen.d.ts +121 -3
  929. package/types/System/Drawing/Point.d.ts +46 -0
  930. package/types/System/Drawing/PointF.d.ts +43 -0
  931. package/types/System/Drawing/Rectangle.d.ts +80 -0
  932. package/types/System/Drawing/RectangleF.d.ts +76 -0
  933. package/types/System/Drawing/Region.d.ts +157 -0
  934. package/types/System/Drawing/RotateFlipType.d.ts +38 -0
  935. package/types/System/Drawing/Size.d.ts +42 -0
  936. package/types/System/Drawing/SizeF.d.ts +48 -0
  937. package/types/System/Drawing/StringAlignment.d.ts +25 -0
  938. package/types/System/Drawing/StringDigitSubstitute.d.ts +29 -0
  939. package/types/System/Drawing/StringFormat.d.ts +89 -0
  940. package/types/System/Drawing/StringFormatFlags.d.ts +31 -0
  941. package/types/System/Drawing/StringTrimming.d.ts +28 -0
  942. package/types/System/Drawing/Text/FontCollection.d.ts +26 -0
  943. package/types/System/Drawing/Text/GenericFontFamilies.d.ts +29 -0
  944. package/types/System/Drawing/Text/HotkeyPrefix.d.ts +29 -0
  945. package/types/System/Drawing/Text/TextRenderingHint.d.ts +32 -0
  946. package/types/System/Dynamic/BinaryOperationBinder.d.ts +41 -0
  947. package/types/System/Dynamic/BindingRestrictions.d.ts +45 -0
  948. package/types/System/Dynamic/CallInfo.d.ts +36 -0
  949. package/types/System/Dynamic/ConvertBinder.d.ts +34 -0
  950. package/types/System/Dynamic/CreateInstanceBinder.d.ts +41 -0
  951. package/types/System/Dynamic/DeleteIndexBinder.d.ts +41 -0
  952. package/types/System/Dynamic/DeleteMemberBinder.d.ts +37 -0
  953. package/types/System/Dynamic/DynamicMetaObject.d.ts +96 -0
  954. package/types/System/Dynamic/DynamicMetaObjectBinder.d.ts +50 -0
  955. package/types/System/Dynamic/DynamicObject.d.ts +86 -0
  956. package/types/System/Dynamic/GetIndexBinder.d.ts +38 -0
  957. package/types/System/Dynamic/GetMemberBinder.d.ts +34 -0
  958. package/types/System/Dynamic/IDynamicMetaObjectProvider.d.ts +36 -0
  959. package/types/System/Dynamic/InvokeBinder.d.ts +38 -0
  960. package/types/System/Dynamic/InvokeMemberBinder.d.ts +54 -0
  961. package/types/System/Dynamic/SetIndexBinder.d.ts +40 -0
  962. package/types/System/Dynamic/SetMemberBinder.d.ts +38 -0
  963. package/types/System/Dynamic/UnaryOperationBinder.d.ts +39 -0
  964. package/types/System/Enum.d.ts +99 -0
  965. package/types/System/EventArgs.d.ts +27 -0
  966. package/types/System/EventHandler.d.ts +57 -0
  967. package/types/System/Func.d.ts +247 -0
  968. package/types/System/Globalization/Calendar.d.ts +135 -0
  969. package/types/System/Globalization/CalendarAlgorithmType.d.ts +29 -0
  970. package/types/System/Globalization/CalendarWeekRule.d.ts +25 -0
  971. package/types/System/Globalization/CompareInfo.d.ts +217 -0
  972. package/types/System/Globalization/CompareOptions.d.ts +31 -0
  973. package/types/System/Globalization/CultureInfo.d.ts +78 -3
  974. package/types/System/Globalization/CultureTypes.d.ts +30 -0
  975. package/types/System/Globalization/DateTimeFormatInfo.d.ts +85 -0
  976. package/types/System/Globalization/DateTimeStyles.d.ts +32 -0
  977. package/types/System/Globalization/DigitShapes.d.ts +25 -0
  978. package/types/System/Globalization/NumberFormatInfo.d.ts +66 -0
  979. package/types/System/Globalization/NumberStyles.d.ts +41 -0
  980. package/types/System/Globalization/SortKey.d.ts +28 -0
  981. package/types/System/Globalization/SortVersion.d.ts +31 -0
  982. package/types/System/Globalization/TextInfo.d.ts +48 -0
  983. package/types/System/Globalization/TimeSpanStyles.d.ts +24 -0
  984. package/types/System/Globalization/UnicodeCategory.d.ts +52 -0
  985. package/types/System/Guid.d.ts +104 -0
  986. package/types/System/IAsyncDisposable.d.ts +20 -3
  987. package/types/System/IAsyncResult.d.ts +31 -0
  988. package/types/System/ICloneable.d.ts +27 -0
  989. package/types/System/IComparable.d.ts +56 -3
  990. package/types/System/IConvertible.d.ts +47 -0
  991. package/types/System/IDisposable.d.ts +22 -3
  992. package/types/System/IEquatable.d.ts +38 -3
  993. package/types/System/IFormatProvider.d.ts +28 -0
  994. package/types/System/IFormattable.d.ts +28 -0
  995. package/types/System/IO/FileAccess.d.ts +25 -0
  996. package/types/System/IO/FileMode.d.ts +28 -0
  997. package/types/System/IO/FileOptions.d.ts +29 -0
  998. package/types/System/IO/FileShare.d.ts +28 -0
  999. package/types/System/IO/FileStream.d.ts +227 -0
  1000. package/types/System/IO/FileStreamOptions.d.ts +39 -0
  1001. package/types/System/IO/MemoryStream.d.ts +145 -0
  1002. package/types/System/IO/SeekOrigin.d.ts +25 -0
  1003. package/types/System/IO/Stream.d.ts +204 -0
  1004. package/types/System/IO/StreamReader.d.ts +153 -0
  1005. package/types/System/IO/StreamWriter.d.ts +149 -0
  1006. package/types/System/IO/TextReader.d.ts +90 -0
  1007. package/types/System/IO/TextWriter.d.ts +163 -0
  1008. package/types/System/IO/UnixFileMode.d.ts +35 -0
  1009. package/types/System/IParsable.d.ts +51 -0
  1010. package/types/System/ISpanFormattable.d.ts +27 -0
  1011. package/types/System/ISpanParsable.d.ts +44 -0
  1012. package/types/System/IUtf8SpanFormattable.d.ts +31 -0
  1013. package/types/System/IUtf8SpanParsable.d.ts +44 -0
  1014. package/types/System/Index.d.ts +38 -0
  1015. package/types/System/Int16.d.ts +165 -0
  1016. package/types/System/Int32.d.ts +164 -0
  1017. package/types/System/Int64.d.ts +165 -0
  1018. package/types/System/IntPtr.d.ts +132 -0
  1019. package/types/System/Lazy.d.ts +46 -0
  1020. package/types/System/Linq/Expressions/BinaryExpression.d.ts +43 -0
  1021. package/types/System/Linq/Expressions/BlockExpression.d.ts +34 -0
  1022. package/types/System/Linq/Expressions/CatchBlock.d.ts +33 -0
  1023. package/types/System/Linq/Expressions/ConditionalExpression.d.ts +35 -0
  1024. package/types/System/Linq/Expressions/ConstantExpression.d.ts +28 -0
  1025. package/types/System/Linq/Expressions/DebugInfoExpression.d.ts +41 -0
  1026. package/types/System/Linq/Expressions/DefaultExpression.d.ts +27 -0
  1027. package/types/System/Linq/Expressions/DynamicExpression.d.ts +135 -0
  1028. package/types/System/Linq/Expressions/ElementInit.d.ts +35 -0
  1029. package/types/System/Linq/Expressions/Expression.d.ts +1631 -0
  1030. package/types/System/Linq/Expressions/ExpressionType.d.ts +111 -0
  1031. package/types/System/Linq/Expressions/GotoExpression.d.ts +33 -0
  1032. package/types/System/Linq/Expressions/GotoExpressionKind.d.ts +30 -0
  1033. package/types/System/Linq/Expressions/IArgumentProvider.d.ts +37 -0
  1034. package/types/System/Linq/Expressions/IDynamicExpression.d.ts +39 -0
  1035. package/types/System/Linq/Expressions/IndexExpression.d.ts +52 -0
  1036. package/types/System/Linq/Expressions/InvocationExpression.d.ts +46 -0
  1037. package/types/System/Linq/Expressions/LabelExpression.d.ts +31 -0
  1038. package/types/System/Linq/Expressions/LabelTarget.d.ts +24 -0
  1039. package/types/System/Linq/Expressions/LambdaExpression.d.ts +39 -0
  1040. package/types/System/Linq/Expressions/ListInitExpression.d.ts +39 -0
  1041. package/types/System/Linq/Expressions/LoopExpression.d.ts +33 -0
  1042. package/types/System/Linq/Expressions/MemberAssignment.d.ts +23 -0
  1043. package/types/System/Linq/Expressions/MemberBinding.d.ts +25 -0
  1044. package/types/System/Linq/Expressions/MemberBindingType.d.ts +29 -0
  1045. package/types/System/Linq/Expressions/MemberExpression.d.ts +28 -0
  1046. package/types/System/Linq/Expressions/MemberInitExpression.d.ts +39 -0
  1047. package/types/System/Linq/Expressions/MemberListBinding.d.ts +30 -0
  1048. package/types/System/Linq/Expressions/MemberMemberBinding.d.ts +29 -0
  1049. package/types/System/Linq/Expressions/MethodCallExpression.d.ts +55 -0
  1050. package/types/System/Linq/Expressions/NewArrayExpression.d.ts +31 -0
  1051. package/types/System/Linq/Expressions/NewExpression.d.ts +52 -0
  1052. package/types/System/Linq/Expressions/ParameterExpression.d.ts +29 -0
  1053. package/types/System/Linq/Expressions/RuntimeVariablesExpression.d.ts +35 -0
  1054. package/types/System/Linq/Expressions/SwitchCase.d.ts +30 -0
  1055. package/types/System/Linq/Expressions/SwitchExpression.d.ts +37 -0
  1056. package/types/System/Linq/Expressions/SymbolDocumentInfo.d.ts +28 -0
  1057. package/types/System/Linq/Expressions/TryExpression.d.ts +37 -0
  1058. package/types/System/Linq/Expressions/TypeBinaryExpression.d.ts +32 -0
  1059. package/types/System/Linq/Expressions/UnaryExpression.d.ts +40 -0
  1060. package/types/System/MarshalByRefObject.d.ts +21 -0
  1061. package/types/System/Memory.d.ts +56 -0
  1062. package/types/System/MidpointRounding.d.ts +27 -0
  1063. package/types/System/ModuleHandle.d.ts +61 -0
  1064. package/types/System/MulticastDelegate.d.ts +24 -0
  1065. package/types/System/Net/ICredentials.d.ts +29 -0
  1066. package/types/System/Net/ICredentialsByHost.d.ts +40 -0
  1067. package/types/System/Net/NetworkCredential.d.ts +54 -0
  1068. package/types/System/Nullable.d.ts +36 -0
  1069. package/types/System/Numerics/IAdditionOperators.d.ts +54 -0
  1070. package/types/System/Numerics/IAdditiveIdentity.d.ts +55 -0
  1071. package/types/System/Numerics/IBinaryFloatingPointIeee754.d.ts +81 -0
  1072. package/types/System/Numerics/IBinaryInteger.d.ts +105 -0
  1073. package/types/System/Numerics/IBinaryNumber.d.ts +70 -0
  1074. package/types/System/Numerics/IBitwiseOperators.d.ts +57 -0
  1075. package/types/System/Numerics/IComparisonOperators.d.ts +61 -0
  1076. package/types/System/Numerics/IDecrementOperators.d.ts +44 -0
  1077. package/types/System/Numerics/IDivisionOperators.d.ts +54 -0
  1078. package/types/System/Numerics/IEqualityOperators.d.ts +54 -0
  1079. package/types/System/Numerics/IExponentialFunctions.d.ts +72 -0
  1080. package/types/System/Numerics/IFloatingPoint.d.ts +110 -0
  1081. package/types/System/Numerics/IFloatingPointConstants.d.ts +68 -0
  1082. package/types/System/Numerics/IFloatingPointIeee754.d.ts +96 -0
  1083. package/types/System/Numerics/IHyperbolicFunctions.d.ts +72 -0
  1084. package/types/System/Numerics/IIncrementOperators.d.ts +44 -0
  1085. package/types/System/Numerics/ILogarithmicFunctions.d.ts +73 -0
  1086. package/types/System/Numerics/IMinMaxValue.d.ts +45 -0
  1087. package/types/System/Numerics/IModulusOperators.d.ts +57 -0
  1088. package/types/System/Numerics/IMultiplicativeIdentity.d.ts +56 -0
  1089. package/types/System/Numerics/IMultiplyOperators.d.ts +54 -0
  1090. package/types/System/Numerics/INumber.d.ts +72 -0
  1091. package/types/System/Numerics/INumberBase.d.ts +104 -0
  1092. package/types/System/Numerics/IPowerFunctions.d.ts +64 -0
  1093. package/types/System/Numerics/IRootFunctions.d.ts +69 -0
  1094. package/types/System/Numerics/IShiftOperators.d.ts +57 -0
  1095. package/types/System/Numerics/ISignedNumber.d.ts +63 -0
  1096. package/types/System/Numerics/ISubtractionOperators.d.ts +60 -0
  1097. package/types/System/Numerics/ITrigonometricFunctions.d.ts +83 -0
  1098. package/types/System/Numerics/IUnaryNegationOperators.d.ts +54 -0
  1099. package/types/System/Numerics/IUnaryPlusOperators.d.ts +51 -0
  1100. package/types/System/Numerics/IUnsignedNumber.d.ts +62 -0
  1101. package/types/System/Numerics/Matrix3x2.d.ts +123 -0
  1102. package/types/System/Numerics/Matrix4x4.d.ts +299 -0
  1103. package/types/System/Numerics/Plane.d.ts +57 -0
  1104. package/types/System/Numerics/Quaternion.d.ts +108 -0
  1105. package/types/System/Numerics/Tensors/IReadOnlyTensor.d.ts +68 -0
  1106. package/types/System/Numerics/Tensors/ITensor.d.ts +70 -0
  1107. package/types/System/Numerics/Tensors/Tensor.d.ts +58 -0
  1108. package/types/System/Numerics/Vector2.d.ts +121 -0
  1109. package/types/System/Numerics/Vector3.d.ts +124 -0
  1110. package/types/System/Numerics/Vector4.d.ts +137 -0
  1111. package/types/System/Object.d.ts +29 -0
  1112. package/types/System/Predicate.d.ts +39 -0
  1113. package/types/System/Range.d.ts +38 -0
  1114. package/types/System/ReadOnlyMemory.d.ts +60 -0
  1115. package/types/System/Reflection/Assembly.d.ts +158 -0
  1116. package/types/System/Reflection/AssemblyContentType.d.ts +24 -0
  1117. package/types/System/Reflection/AssemblyName.d.ts +78 -0
  1118. package/types/System/Reflection/AssemblyNameFlags.d.ts +27 -0
  1119. package/types/System/Reflection/Binder.d.ts +65 -0
  1120. package/types/System/Reflection/BindingFlags.d.ts +43 -0
  1121. package/types/System/Reflection/CallingConventions.d.ts +27 -0
  1122. package/types/System/Reflection/CommonJSManager.d.ts +137 -0
  1123. package/types/System/Reflection/ConstructorInfo.d.ts +43 -0
  1124. package/types/System/Reflection/CustomAttributeData.d.ts +52 -0
  1125. package/types/System/Reflection/CustomAttributeNamedArgument.d.ts +41 -0
  1126. package/types/System/Reflection/CustomAttributeTypedArgument.d.ts +32 -0
  1127. package/types/System/Reflection/EventAttributes.d.ts +26 -0
  1128. package/types/System/Reflection/EventInfo.d.ts +65 -0
  1129. package/types/System/Reflection/ExceptionHandlingClause.d.ts +33 -0
  1130. package/types/System/Reflection/ExceptionHandlingClauseOptions.d.ts +30 -0
  1131. package/types/System/Reflection/FieldAttributes.d.ts +41 -0
  1132. package/types/System/Reflection/FieldInfo.d.ts +106 -0
  1133. package/types/System/Reflection/GenericParameterAttributes.d.ts +34 -0
  1134. package/types/System/Reflection/ICustomAttributeProvider.d.ts +36 -0
  1135. package/types/System/Reflection/IReflect.d.ts +94 -0
  1136. package/types/System/Reflection/IReflectableType.d.ts +28 -0
  1137. package/types/System/Reflection/ImageFileMachine.d.ts +26 -0
  1138. package/types/System/Reflection/InterfaceMapping.d.ts +28 -0
  1139. package/types/System/Reflection/LocalVariableInfo.d.ts +28 -0
  1140. package/types/System/Reflection/ManifestResourceInfo.d.ts +35 -0
  1141. package/types/System/Reflection/MemberFilter.d.ts +31 -0
  1142. package/types/System/Reflection/MemberInfo.d.ts +43 -0
  1143. package/types/System/Reflection/MemberTypes.d.ts +31 -0
  1144. package/types/System/Reflection/MethodAttributes.d.ts +46 -0
  1145. package/types/System/Reflection/MethodBase.d.ts +115 -0
  1146. package/types/System/Reflection/MethodBody.d.ts +30 -0
  1147. package/types/System/Reflection/MethodImplAttributes.d.ts +42 -0
  1148. package/types/System/Reflection/MethodInfo.d.ts +53 -0
  1149. package/types/System/Reflection/ModuleResolveEventHandler.d.ts +36 -0
  1150. package/types/System/Reflection/ParameterAttributes.d.ts +33 -0
  1151. package/types/System/Reflection/ParameterInfo.d.ts +58 -0
  1152. package/types/System/Reflection/ParameterModifier.d.ts +30 -0
  1153. package/types/System/Reflection/PortableExecutableKinds.d.ts +31 -0
  1154. package/types/System/Reflection/ProcessorArchitecture.d.ts +31 -0
  1155. package/types/System/Reflection/PropertyAttributes.d.ts +30 -0
  1156. package/types/System/Reflection/PropertyInfo.d.ts +103 -0
  1157. package/types/System/Reflection/ResourceLocation.d.ts +25 -0
  1158. package/types/System/Reflection/StrongNameKeyPair.d.ts +35 -0
  1159. package/types/System/Reflection/TypeAttributes.d.ts +54 -0
  1160. package/types/System/Reflection/TypeFilter.d.ts +31 -0
  1161. package/types/System/Reflection/TypeInfo.d.ts +70 -0
  1162. package/types/System/ResolveEventArgs.d.ts +23 -0
  1163. package/types/System/Runtime/CompilerServices/CallSite.d.ts +52 -0
  1164. package/types/System/Runtime/CompilerServices/CallSiteBinder.d.ts +38 -0
  1165. package/types/System/Runtime/CompilerServices/ConfiguredTaskAwaitable.d.ts +96 -0
  1166. package/types/System/Runtime/CompilerServices/ConfiguredValueTaskAwaitable.d.ts +99 -0
  1167. package/types/System/Runtime/CompilerServices/DebugInfoGenerator.d.ts +35 -0
  1168. package/types/System/Runtime/CompilerServices/ICriticalNotifyCompletion.d.ts +37 -0
  1169. package/types/System/Runtime/CompilerServices/INotifyCompletion.d.ts +32 -0
  1170. package/types/System/Runtime/CompilerServices/ITuple.d.ts +28 -4
  1171. package/types/System/Runtime/CompilerServices/TaskAwaiter.d.ts +59 -0
  1172. package/types/System/Runtime/CompilerServices/ValueTaskAwaiter.d.ts +62 -0
  1173. package/types/System/Runtime/CompilerServices/YieldAwaitable.d.ts +52 -0
  1174. package/types/System/Runtime/ConstrainedExecution/CriticalFinalizerObject.d.ts +23 -0
  1175. package/types/System/Runtime/InteropServices/CharSet.d.ts +30 -0
  1176. package/types/System/Runtime/InteropServices/GCHandle.d.ts +41 -0
  1177. package/types/System/Runtime/InteropServices/GCHandleType.d.ts +30 -0
  1178. package/types/System/Runtime/InteropServices/LayoutKind.d.ts +29 -0
  1179. package/types/System/Runtime/InteropServices/SafeHandle.d.ts +42 -0
  1180. package/types/System/Runtime/InteropServices/StructLayoutAttribute.d.ts +38 -0
  1181. package/types/System/Runtime/Serialization/DeserializationToken.d.ts +27 -0
  1182. package/types/System/Runtime/Serialization/IDeserializationCallback.d.ts +28 -3
  1183. package/types/System/Runtime/Serialization/IFormatterConverter.d.ts +55 -0
  1184. package/types/System/Runtime/Serialization/IObjectReference.d.ts +28 -0
  1185. package/types/System/Runtime/Serialization/ISerializable.d.ts +27 -3
  1186. package/types/System/Runtime/Serialization/SerializationEntry.d.ts +25 -0
  1187. package/types/System/Runtime/Serialization/SerializationInfo.d.ts +90 -0
  1188. package/types/System/Runtime/Serialization/SerializationInfoEnumerator.d.ts +35 -0
  1189. package/types/System/Runtime/Serialization/StreamingContext.d.ts +33 -0
  1190. package/types/System/Runtime/Serialization/StreamingContextStates.d.ts +38 -0
  1191. package/types/System/RuntimeFieldHandle.d.ts +35 -0
  1192. package/types/System/RuntimeMethodHandle.d.ts +36 -0
  1193. package/types/System/RuntimeTypeHandle.d.ts +37 -0
  1194. package/types/System/SByte.d.ts +165 -0
  1195. package/types/System/Security/Cryptography/RandomNumberGenerator.d.ts +48 -0
  1196. package/types/System/Security/SecureString.d.ts +44 -0
  1197. package/types/System/Security/SecurityRuleSet.d.ts +25 -0
  1198. package/types/System/SequencePosition.d.ts +31 -0
  1199. package/types/System/Single.d.ts +272 -0
  1200. package/types/System/String.d.ts +495 -0
  1201. package/types/System/StringComparison.d.ts +28 -0
  1202. package/types/System/StringSplitOptions.d.ts +25 -0
  1203. package/types/System/SystemException.d.ts +30 -0
  1204. package/types/System/Text/CompositeFormat.d.ts +24 -0
  1205. package/types/System/Text/Decoder.d.ts +70 -0
  1206. package/types/System/Text/DecoderFallback.d.ts +26 -0
  1207. package/types/System/Text/DecoderFallbackBuffer.d.ts +36 -0
  1208. package/types/System/Text/Encoder.d.ts +58 -0
  1209. package/types/System/Text/EncoderFallback.d.ts +26 -0
  1210. package/types/System/Text/EncoderFallbackBuffer.d.ts +40 -0
  1211. package/types/System/Text/Encoding.d.ts +169 -0
  1212. package/types/System/Text/EncodingInfo.d.ts +37 -0
  1213. package/types/System/Text/EncodingProvider.d.ts +40 -0
  1214. package/types/System/Text/Encodings/Web/JavaScriptEncoder.d.ts +35 -0
  1215. package/types/System/Text/Encodings/Web/TextEncoder.d.ts +42 -0
  1216. package/types/System/Text/Encodings/Web/TextEncoderSettings.d.ts +50 -0
  1217. package/types/System/Text/Json/JsonElement.d.ts +152 -0
  1218. package/types/System/Text/Json/JsonEncodedText.d.ts +34 -0
  1219. package/types/System/Text/Json/JsonProperty.d.ts +29 -0
  1220. package/types/System/Text/Json/JsonValueKind.d.ts +34 -0
  1221. package/types/System/Text/Json/JsonWriterOptions.d.ts +29 -0
  1222. package/types/System/Text/Json/Utf8JsonWriter.d.ts +149 -0
  1223. package/types/System/Text/NormalizationForm.d.ts +26 -0
  1224. package/types/System/Text/Rune.d.ts +101 -0
  1225. package/types/System/Text/StringBuilder.d.ts +414 -0
  1226. package/types/System/Text/StringRuneEnumerator.d.ts +36 -0
  1227. package/types/System/Text/Unicode/UnicodeRange.d.ts +34 -0
  1228. package/types/System/Threading/CancellationToken.d.ts +48 -49
  1229. package/types/System/Threading/CancellationTokenRegistration.d.ts +25 -18
  1230. package/types/System/Threading/CancellationTokenSource.d.ts +48 -41
  1231. package/types/System/Threading/ITimer.d.ts +19 -3
  1232. package/types/System/Threading/LazyThreadSafetyMode.d.ts +28 -0
  1233. package/types/System/Threading/Tasks/ConfigureAwaitOptions.d.ts +33 -0
  1234. package/types/System/Threading/Tasks/Sources/IValueTaskSource.d.ts +91 -0
  1235. package/types/System/Threading/Tasks/Sources/ValueTaskSourceOnCompletedFlags.d.ts +33 -0
  1236. package/types/System/Threading/Tasks/Sources/ValueTaskSourceStatus.d.ts +33 -0
  1237. package/types/System/Threading/Tasks/Task.d.ts +513 -0
  1238. package/types/System/Threading/Tasks/TaskContinuationOptions.d.ts +44 -0
  1239. package/types/System/Threading/Tasks/TaskCreationOptions.d.ts +33 -0
  1240. package/types/System/Threading/Tasks/TaskFactory.d.ts +791 -0
  1241. package/types/System/Threading/Tasks/TaskScheduler.d.ts +28 -0
  1242. package/types/System/Threading/Tasks/TaskStatus.d.ts +34 -0
  1243. package/types/System/Threading/Tasks/UnobservedTaskExceptionEventArgs.d.ts +31 -0
  1244. package/types/System/Threading/Tasks/ValueTask.d.ts +97 -5
  1245. package/types/System/Threading/TimerCallback.d.ts +31 -0
  1246. package/types/System/Threading/WaitHandle.d.ts +84 -3
  1247. package/types/System/TimeOnly.d.ts +189 -0
  1248. package/types/System/TimeProvider.d.ts +36 -23
  1249. package/types/System/TimeSpan.d.ts +170 -3
  1250. package/types/System/TimeZoneInfo.d.ts +224 -0
  1251. package/types/System/TypeCode.d.ts +40 -0
  1252. package/types/System/UInt16.d.ts +156 -0
  1253. package/types/System/UInt32.d.ts +156 -0
  1254. package/types/System/UInt64.d.ts +156 -0
  1255. package/types/System/UIntPtr.d.ts +133 -0
  1256. package/types/System/Uri.d.ts +138 -0
  1257. package/types/System/UriComponents.d.ts +39 -0
  1258. package/types/System/UriCreationOptions.d.ts +18 -0
  1259. package/types/System/UriFormat.d.ts +25 -0
  1260. package/types/System/UriHostNameType.d.ts +27 -0
  1261. package/types/System/UriKind.d.ts +25 -0
  1262. package/types/System/UriPartial.d.ts +26 -0
  1263. package/types/System/V8SplitProxyHelpers.d.ts +537 -0
  1264. package/types/System/ValueTuple.d.ts +122 -0
  1265. package/types/System/ValueType.d.ts +19 -0
  1266. package/types/System/Version.d.ts +71 -0
  1267. package/types/System/WebSocket.d.ts +50 -0
  1268. package/types/System/Windows/Media/Matrix.d.ts +107 -72
  1269. package/types/System/Windows/Point.d.ts +38 -32
  1270. package/types/System/Windows/Rect.d.ts +102 -0
  1271. package/types/System/Windows/Size.d.ts +38 -0
  1272. package/types/System/Windows/Vector.d.ts +57 -42
  1273. package/types/System/Xml/ConformanceLevel.d.ts +25 -0
  1274. package/types/System/Xml/DtdProcessing.d.ts +25 -0
  1275. package/types/System/Xml/IXmlLineInfo.d.ts +29 -0
  1276. package/types/System/Xml/IXmlNamespaceResolver.d.ts +38 -0
  1277. package/types/System/Xml/Linq/LoadOptions.d.ts +30 -0
  1278. package/types/System/Xml/Linq/ReaderOptions.d.ts +28 -0
  1279. package/types/System/Xml/Linq/SaveOptions.d.ts +29 -0
  1280. package/types/System/Xml/Linq/XAttribute.d.ts +49 -0
  1281. package/types/System/Xml/Linq/XContainer.d.ts +68 -0
  1282. package/types/System/Xml/Linq/XDeclaration.d.ts +27 -0
  1283. package/types/System/Xml/Linq/XDocument.d.ts +127 -0
  1284. package/types/System/Xml/Linq/XDocumentType.d.ts +46 -0
  1285. package/types/System/Xml/Linq/XElement.d.ts +180 -0
  1286. package/types/System/Xml/Linq/XName.d.ts +32 -0
  1287. package/types/System/Xml/Linq/XNamespace.d.ts +31 -0
  1288. package/types/System/Xml/Linq/XNode.d.ts +103 -0
  1289. package/types/System/Xml/Linq/XNodeDocumentOrderComparer.d.ts +35 -0
  1290. package/types/System/Xml/Linq/XNodeEqualityComparer.d.ts +35 -0
  1291. package/types/System/Xml/Linq/XObject.d.ts +47 -0
  1292. package/types/System/Xml/Linq/XObjectChange.d.ts +30 -0
  1293. package/types/System/Xml/Linq/XObjectChangeEventArgs.d.ts +32 -0
  1294. package/types/System/Xml/Linq/XStreamingElement.d.ts +50 -0
  1295. package/types/System/Xml/NamespaceHandling.d.ts +24 -0
  1296. package/types/System/Xml/NewLineHandling.d.ts +25 -0
  1297. package/types/System/Xml/ReadState.d.ts +27 -0
  1298. package/types/System/Xml/Schema/IXmlSchemaInfo.d.ts +38 -0
  1299. package/types/System/Xml/Schema/ValidationEventArgs.d.ts +28 -0
  1300. package/types/System/Xml/Schema/ValidationEventHandler.d.ts +35 -0
  1301. package/types/System/Xml/Schema/XmlSchema.d.ts +113 -0
  1302. package/types/System/Xml/Schema/XmlSchemaAnnotated.d.ts +35 -0
  1303. package/types/System/Xml/Schema/XmlSchemaAnnotation.d.ts +35 -0
  1304. package/types/System/Xml/Schema/XmlSchemaAnyAttribute.d.ts +32 -0
  1305. package/types/System/Xml/Schema/XmlSchemaAttribute.d.ts +54 -0
  1306. package/types/System/Xml/Schema/XmlSchemaCompilationSettings.d.ts +28 -0
  1307. package/types/System/Xml/Schema/XmlSchemaComplexType.d.ts +59 -0
  1308. package/types/System/Xml/Schema/XmlSchemaContent.d.ts +17 -0
  1309. package/types/System/Xml/Schema/XmlSchemaContentModel.d.ts +25 -0
  1310. package/types/System/Xml/Schema/XmlSchemaContentProcessing.d.ts +34 -0
  1311. package/types/System/Xml/Schema/XmlSchemaContentType.d.ts +33 -0
  1312. package/types/System/Xml/Schema/XmlSchemaDatatype.d.ts +45 -0
  1313. package/types/System/Xml/Schema/XmlSchemaDatatypeVariety.d.ts +32 -0
  1314. package/types/System/Xml/Schema/XmlSchemaDerivationMethod.d.ts +38 -0
  1315. package/types/System/Xml/Schema/XmlSchemaElement.d.ts +69 -0
  1316. package/types/System/Xml/Schema/XmlSchemaException.d.ts +62 -0
  1317. package/types/System/Xml/Schema/XmlSchemaForm.d.ts +29 -0
  1318. package/types/System/Xml/Schema/XmlSchemaObject.d.ts +26 -0
  1319. package/types/System/Xml/Schema/XmlSchemaObjectCollection.d.ts +66 -0
  1320. package/types/System/Xml/Schema/XmlSchemaObjectEnumerator.d.ts +31 -0
  1321. package/types/System/Xml/Schema/XmlSchemaObjectTable.d.ts +36 -0
  1322. package/types/System/Xml/Schema/XmlSchemaParticle.d.ts +27 -0
  1323. package/types/System/Xml/Schema/XmlSchemaSet.d.ts +71 -0
  1324. package/types/System/Xml/Schema/XmlSchemaSimpleType.d.ts +28 -0
  1325. package/types/System/Xml/Schema/XmlSchemaSimpleTypeContent.d.ts +21 -0
  1326. package/types/System/Xml/Schema/XmlSchemaType.d.ts +72 -0
  1327. package/types/System/Xml/Schema/XmlSchemaUse.d.ts +30 -0
  1328. package/types/System/Xml/Schema/XmlSchemaValidationFlags.d.ts +35 -0
  1329. package/types/System/Xml/Schema/XmlSchemaValidity.d.ts +29 -0
  1330. package/types/System/Xml/Schema/XmlSeverityType.d.ts +28 -0
  1331. package/types/System/Xml/Schema/XmlTypeCode.d.ts +81 -0
  1332. package/types/System/Xml/Serialization/IXmlSerializable.d.ts +33 -0
  1333. package/types/System/Xml/Serialization/XmlSerializerNamespaces.d.ts +34 -0
  1334. package/types/System/Xml/ValidationType.d.ts +27 -0
  1335. package/types/System/Xml/WriteState.d.ts +29 -0
  1336. package/types/System/Xml/XPath/IXPathNavigable.d.ts +28 -0
  1337. package/types/System/Xml/XPath/XPathExpression.d.ts +48 -0
  1338. package/types/System/Xml/XPath/XPathItem.d.ts +36 -0
  1339. package/types/System/Xml/XPath/XPathNamespaceScope.d.ts +29 -0
  1340. package/types/System/Xml/XPath/XPathNavigator.d.ts +306 -0
  1341. package/types/System/Xml/XPath/XPathNodeIterator.d.ts +34 -0
  1342. package/types/System/Xml/XPath/XPathNodeType.d.ts +36 -0
  1343. package/types/System/Xml/XPath/XPathResultType.d.ts +33 -0
  1344. package/types/System/Xml/XPath/XmlCaseOrder.d.ts +29 -0
  1345. package/types/System/Xml/XPath/XmlDataType.d.ts +28 -0
  1346. package/types/System/Xml/XPath/XmlSortOrder.d.ts +28 -0
  1347. package/types/System/Xml/XmlAttribute.d.ts +87 -0
  1348. package/types/System/Xml/XmlAttributeCollection.d.ts +73 -0
  1349. package/types/System/Xml/XmlCDataSection.d.ts +47 -0
  1350. package/types/System/Xml/XmlCharacterData.d.ts +61 -0
  1351. package/types/System/Xml/XmlComment.d.ts +38 -0
  1352. package/types/System/Xml/XmlDeclaration.d.ts +53 -0
  1353. package/types/System/Xml/XmlDocument.d.ts +217 -0
  1354. package/types/System/Xml/XmlDocumentFragment.d.ts +52 -0
  1355. package/types/System/Xml/XmlDocumentType.d.ts +56 -0
  1356. package/types/System/Xml/XmlElement.d.ts +105 -0
  1357. package/types/System/Xml/XmlEntityReference.d.ts +52 -0
  1358. package/types/System/Xml/XmlImplementation.d.ts +31 -0
  1359. package/types/System/Xml/XmlLinkedNode.d.ts +27 -0
  1360. package/types/System/Xml/XmlNameTable.d.ts +36 -0
  1361. package/types/System/Xml/XmlNamedNodeMap.d.ts +33 -0
  1362. package/types/System/Xml/XmlNamespaceManager.d.ts +47 -0
  1363. package/types/System/Xml/XmlNamespaceScope.d.ts +25 -0
  1364. package/types/System/Xml/XmlNode.d.ts +94 -0
  1365. package/types/System/Xml/XmlNodeChangedAction.d.ts +28 -0
  1366. package/types/System/Xml/XmlNodeChangedEventArgs.d.ts +40 -0
  1367. package/types/System/Xml/XmlNodeChangedEventHandler.d.ts +36 -0
  1368. package/types/System/Xml/XmlNodeList.d.ts +33 -0
  1369. package/types/System/Xml/XmlNodeOrder.d.ts +26 -0
  1370. package/types/System/Xml/XmlNodeType.d.ts +40 -0
  1371. package/types/System/Xml/XmlOutputMethod.d.ts +26 -0
  1372. package/types/System/Xml/XmlParserContext.d.ts +72 -0
  1373. package/types/System/Xml/XmlProcessingInstruction.d.ts +54 -0
  1374. package/types/System/Xml/XmlQualifiedName.d.ts +36 -0
  1375. package/types/System/Xml/XmlReader.d.ts +264 -0
  1376. package/types/System/Xml/XmlReaderSettings.d.ts +60 -0
  1377. package/types/System/Xml/XmlResolver.d.ts +40 -0
  1378. package/types/System/Xml/XmlSignificantWhitespace.d.ts +52 -0
  1379. package/types/System/Xml/XmlSpace.d.ts +25 -0
  1380. package/types/System/Xml/XmlText.d.ts +56 -0
  1381. package/types/System/Xml/XmlTokenizedType.d.ts +35 -0
  1382. package/types/System/Xml/XmlWhitespace.d.ts +49 -0
  1383. package/types/System/Xml/XmlWriter.d.ts +228 -0
  1384. package/types/System/Xml/XmlWriterSettings.d.ts +49 -0
  1385. package/types/Vanara/PInvoke/POINT.d.ts +42 -0
  1386. package/types/Vanara/PInvoke/PRECT.d.ts +61 -0
  1387. package/types/Vanara/PInvoke/RECT.d.ts +58 -0
  1388. package/types/Vanara/PInvoke/SIZE.d.ts +38 -0
  1389. package/types/Vanara/PInvoke/User32.d.ts +242 -0
  1390. package/enums/country.d.ts +0 -20
  1391. package/objects/dispatcher.d.ts +0 -99
  1392. package/objects/file.d.ts +0 -116
  1393. package/objects/genshin.d.ts +0 -262
  1394. package/objects/globalMethod.d.ts +0 -161
  1395. package/objects/http.d.ts +0 -46
  1396. package/objects/keyMouseHook.d.ts +0 -70
  1397. package/objects/keyMouseScript.d.ts +0 -20
  1398. package/objects/log.d.ts +0 -38
  1399. package/objects/notification.d.ts +0 -20
  1400. package/objects/pathingScript.d.ts +0 -27
  1401. package/objects/settings.d.ts +0 -9
  1402. package/types/System/Exception.d.ts +0 -9
  1403. package/types/System/Tuple.d.ts +0 -184
  1404. package/types/System/Windows/Forms/Keys.d.ts +0 -200
@@ -0,0 +1,1035 @@
1
+ import type { HostTypeCollection } from "../types/Microsoft/ClearScript/HostTypeCollection";
2
+ import type { PropertyBag } from "../types/Microsoft/ClearScript/PropertyBag";
3
+ import type { AKAZEHostType } from "../types/OpenCvSharp/AKAZE";
4
+ import type { AKAZEDescriptorTypeHostType } from "../types/OpenCvSharp/AKAZEDescriptorType";
5
+ import type { AccessFlagHostType } from "../types/OpenCvSharp/AccessFlag";
6
+ import type { AdaptiveThresholdTypesHostType } from "../types/OpenCvSharp/AdaptiveThresholdTypes";
7
+ import type { AgastFeatureDetectorHostType } from "../types/OpenCvSharp/AgastFeatureDetector";
8
+ import type { AlgorithmHostType } from "../types/OpenCvSharp/Algorithm";
9
+ import type { AlgorithmParamTypeHostType } from "../types/OpenCvSharp/AlgorithmParamType";
10
+ import type { CornerRefineMethodHostType } from "../types/OpenCvSharp/Aruco/CornerRefineMethod";
11
+ import type { CvArucoHostType } from "../types/OpenCvSharp/Aruco/CvAruco";
12
+ import type { DetectorParametersHostType } from "../types/OpenCvSharp/Aruco/DetectorParameters";
13
+ import type { DictionaryHostType } from "../types/OpenCvSharp/Aruco/Dictionary";
14
+ import type { PredefinedDictionaryNameHostType } from "../types/OpenCvSharp/Aruco/PredefinedDictionaryName";
15
+ import type { BFMatcherHostType } from "../types/OpenCvSharp/BFMatcher";
16
+ import type { BOWImgDescriptorExtractorHostType } from "../types/OpenCvSharp/BOWImgDescriptorExtractor";
17
+ import type { BOWKMeansTrainerHostType } from "../types/OpenCvSharp/BOWKMeansTrainer";
18
+ import type { BOWTrainerHostType } from "../types/OpenCvSharp/BOWTrainer";
19
+ import type { BRISKHostType } from "../types/OpenCvSharp/BRISK";
20
+ import type { BackgroundSubtractorHostType } from "../types/OpenCvSharp/BackgroundSubtractor";
21
+ import type { BackgroundSubtractorGMGHostType } from "../types/OpenCvSharp/BackgroundSubtractorGMG";
22
+ import type { BackgroundSubtractorKNNHostType } from "../types/OpenCvSharp/BackgroundSubtractorKNN";
23
+ import type { BackgroundSubtractorMOGHostType } from "../types/OpenCvSharp/BackgroundSubtractorMOG";
24
+ import type { BackgroundSubtractorMOG2HostType } from "../types/OpenCvSharp/BackgroundSubtractorMog2";
25
+ import type { BorderTypesHostType } from "../types/OpenCvSharp/BorderTypes";
26
+ import type { BroxOpticalFlowHostType } from "../types/OpenCvSharp/BroxOpticalFlow";
27
+ import type { ButtonTypeHostType } from "../types/OpenCvSharp/ButtonType";
28
+ import type { CLAHEHostType } from "../types/OpenCvSharp/CLAHE";
29
+ import type { CalibrateCRFHostType } from "../types/OpenCvSharp/CalibrateCRF";
30
+ import type { CalibrateDebevecHostType } from "../types/OpenCvSharp/CalibrateDebevec";
31
+ import type { CalibrateRobertsonHostType } from "../types/OpenCvSharp/CalibrateRobertson";
32
+ import type { CalibrationFlagsHostType } from "../types/OpenCvSharp/CalibrationFlags";
33
+ import type { CameraChannelsHostType } from "../types/OpenCvSharp/CameraChannels";
34
+ import type { CapturePosAviRatioHostType } from "../types/OpenCvSharp/CapturePosRatio";
35
+ import type { CaptureTypeHostType } from "../types/OpenCvSharp/CaptureType";
36
+ import type { CascadeClassifierHostType } from "../types/OpenCvSharp/CascadeClassifier";
37
+ import type { ChessboardFlagsHostType } from "../types/OpenCvSharp/ChessboardFlags";
38
+ import type { CircleSegmentHostType } from "../types/OpenCvSharp/CircleSegment";
39
+ import type { CmpTypeHostType } from "../types/OpenCvSharp/CmpType";
40
+ import type { ColorConversionCodesHostType } from "../types/OpenCvSharp/ColorConversionCodes";
41
+ import type { ColormapTypesHostType } from "../types/OpenCvSharp/ColormapTypes";
42
+ import type { ConnectedComponentsHostType } from "../types/OpenCvSharp/ConnectedComponent";
43
+ import type { ConnectedComponentsAlgorithmsTypesHostType } from "../types/OpenCvSharp/ConnectedComponentsAlgorithmsTypes";
44
+ import type { ConnectedComponentsTypesHostType } from "../types/OpenCvSharp/ConnectedComponentsTypes";
45
+ import type { ContourApproximationModesHostType } from "../types/OpenCvSharp/ContourApproximationModes";
46
+ import type { ConvertImageModesHostType } from "../types/OpenCvSharp/ConvertImageModes";
47
+ import type { CovarFlagsHostType } from "../types/OpenCvSharp/CovarFlags";
48
+ import type { CpuFeaturesHostType } from "../types/OpenCvSharp/CpuFeatures";
49
+ import type { CriteriaTypesHostType } from "../types/OpenCvSharp/CriteriaTypes";
50
+ import type { Cv2HostType } from "../types/OpenCvSharp/Cv2";
51
+ import type { CvErrorCallbackHostType } from "../types/OpenCvSharp/CvErrorCallback";
52
+ import type { CvObjectHostType } from "../types/OpenCvSharp/CvObject";
53
+ import type { CvTrackbarHostType } from "../types/OpenCvSharp/CvTrackbar";
54
+ import type { DMatchHostType } from "../types/OpenCvSharp/DMatch";
55
+ import type { DctFlagsHostType } from "../types/OpenCvSharp/DctFlags";
56
+ import type { DecompTypesHostType } from "../types/OpenCvSharp/DecompTypes";
57
+ import type { DenseOpticalFlowExtHostType } from "../types/OpenCvSharp/DenseOpticalFlowExt";
58
+ import type { DescriptorMatcherHostType } from "../types/OpenCvSharp/DescriptorMatcher";
59
+ import type { AffineBestOf2NearestMatcherHostType } from "../types/OpenCvSharp/Detail/AffineBestOf2NearestMatcher";
60
+ import type { BestOf2NearestMatcherHostType } from "../types/OpenCvSharp/Detail/BestOf2NearestMatcher";
61
+ import type { CvDetailHostType } from "../types/OpenCvSharp/Detail/CvDetail";
62
+ import type { FeaturesMatcherHostType } from "../types/OpenCvSharp/Detail/FeaturesMatcher";
63
+ import type { ImageFeaturesHostType } from "../types/OpenCvSharp/Detail/ImageFeatures";
64
+ import type { WImageFeaturesHostType } from "../types/OpenCvSharp/Detail/ImageFeatures";
65
+ import type { MatchesInfoHostType } from "../types/OpenCvSharp/Detail/MatchesInfo";
66
+ import type { BlenderHostType } from "../types/OpenCvSharp/Detail/Stitcher";
67
+ import type { BundleAdjusterBaseHostType } from "../types/OpenCvSharp/Detail/Stitcher";
68
+ import type { CameraParamsHostType } from "../types/OpenCvSharp/Detail/Stitcher";
69
+ import type { ExposureCompensatorHostType } from "../types/OpenCvSharp/Detail/Stitcher";
70
+ import type { FeaturesFinderHostType } from "../types/OpenCvSharp/Detail/Stitcher";
71
+ import type { SeamFinderHostType } from "../types/OpenCvSharp/Detail/Stitcher";
72
+ import type { WarperCreatorHostType } from "../types/OpenCvSharp/Detail/Stitcher";
73
+ import type { WaveCorrectKindHostType } from "../types/OpenCvSharp/Detail/Stitcher";
74
+ import type { DftFlagsHostType } from "../types/OpenCvSharp/DftFlags";
75
+ import type { DisposableCvObjectHostType } from "../types/OpenCvSharp/DisposableCvObject";
76
+ import type { DisposableObjectHostType } from "../types/OpenCvSharp/DisposableObject";
77
+ import type { DistanceTransformLabelTypesHostType } from "../types/OpenCvSharp/DistanceTransformLabelTypes";
78
+ import type { DistanceTransformMasksHostType } from "../types/OpenCvSharp/DistanceTransformMasks";
79
+ import type { DistanceTypesHostType } from "../types/OpenCvSharp/DistanceTypes";
80
+ import type { DistributionTypeHostType } from "../types/OpenCvSharp/DistributionType";
81
+ import type { BackendHostType } from "../types/OpenCvSharp/Dnn/Backend";
82
+ import type { CvDnnHostType } from "../types/OpenCvSharp/Dnn/CvDnn";
83
+ import type { NetHostType } from "../types/OpenCvSharp/Dnn/Net";
84
+ import type { TargetHostType } from "../types/OpenCvSharp/Dnn/Target";
85
+ import type { DnnSuperResImplHostType } from "../types/OpenCvSharp/DnnSuperres/DnnSuperResImpl";
86
+ import type { DrawMatchesFlagsHostType } from "../types/OpenCvSharp/DrawMatchesFlags";
87
+ import type { DualTVL1OpticalFlowHostType } from "../types/OpenCvSharp/DualTVL1OpticalFlow";
88
+ import type { EMHostType } from "../types/OpenCvSharp/EM";
89
+ import type { EMStartStepHostType } from "../types/OpenCvSharp/EM";
90
+ import type { EMTypesHostType } from "../types/OpenCvSharp/EM";
91
+ import type { EdgePreservingMethodsHostType } from "../types/OpenCvSharp/EdgePreservingMethods";
92
+ import type { ErrorCodeHostType } from "../types/OpenCvSharp/ErrorCode";
93
+ import type { EssentialMatMethodHostType } from "../types/OpenCvSharp/EssentialMatMethod";
94
+ import type { FASTTypeHostType } from "../types/OpenCvSharp/FASTType";
95
+ import type { BasicFaceRecognizerHostType } from "../types/OpenCvSharp/Face/BasicFaceRecognizer";
96
+ import type { EigenFaceRecognizerHostType } from "../types/OpenCvSharp/Face/EigenFaceRecognizer";
97
+ import type { FaceRecognizerHostType } from "../types/OpenCvSharp/Face/FaceRecognizer";
98
+ import type { FacemarkHostType } from "../types/OpenCvSharp/Face/Facemark";
99
+ import type { FacemarkAAMHostType } from "../types/OpenCvSharp/Face/FacemarkAAM";
100
+ import type { FacemarkLBFHostType } from "../types/OpenCvSharp/Face/FacemarkLBF";
101
+ import type { FisherFaceRecognizerHostType } from "../types/OpenCvSharp/Face/FisherFaceRecognizer";
102
+ import type { LBPHFaceRecognizerHostType } from "../types/OpenCvSharp/Face/LBPHFaceRecognizer";
103
+ import type { FarnebackOpticalFlowHostType } from "../types/OpenCvSharp/FarnebackOpticalFlow";
104
+ import type { FastFeatureDetectorHostType } from "../types/OpenCvSharp/FastFeatureDetector";
105
+ import type { Feature2DHostType } from "../types/OpenCvSharp/Feature2D";
106
+ import type { SIFTHostType } from "../types/OpenCvSharp/Features2D/SIFT";
107
+ import type { FileNodeHostType } from "../types/OpenCvSharp/FileNode";
108
+ import type { FileNodeIteratorHostType } from "../types/OpenCvSharp/FileNodeIterator";
109
+ import type { FileStorageHostType } from "../types/OpenCvSharp/FileStorage";
110
+ import type { FindCirclesGridFlagsHostType } from "../types/OpenCvSharp/FindCirclesGridFlags";
111
+ import type { FishEyeCalibrationFlagsHostType } from "../types/OpenCvSharp/FishEyeCalibrationFlags";
112
+ import type { AutotunedIndexParamsHostType } from "../types/OpenCvSharp/Flann/AutotunedIndexParams";
113
+ import type { CompositeIndexParamsHostType } from "../types/OpenCvSharp/Flann/CompositeIndexParams";
114
+ import type { FlannCentersInitHostType } from "../types/OpenCvSharp/Flann/FlannCentersInit";
115
+ import type { FlannDistanceHostType } from "../types/OpenCvSharp/Flann/FlannDistance";
116
+ import type { IndexHostType } from "../types/OpenCvSharp/Flann/Index";
117
+ import type { IndexParamsHostType } from "../types/OpenCvSharp/Flann/IndexParams";
118
+ import type { KDTreeIndexParamsHostType } from "../types/OpenCvSharp/Flann/KDTreeIndexParams";
119
+ import type { KMeansIndexParamsHostType } from "../types/OpenCvSharp/Flann/KMeansIndexParams";
120
+ import type { LinearIndexParamsHostType } from "../types/OpenCvSharp/Flann/LinearIndexParams";
121
+ import type { LshIndexParamsHostType } from "../types/OpenCvSharp/Flann/LshIndexParams";
122
+ import type { SavedIndexParamsHostType } from "../types/OpenCvSharp/Flann/SavedIndexParams";
123
+ import type { SearchParamsHostType } from "../types/OpenCvSharp/Flann/SearchParams";
124
+ import type { FlannBasedMatcherHostType } from "../types/OpenCvSharp/FlannBasedMatcher";
125
+ import type { FlipModeHostType } from "../types/OpenCvSharp/FlipMode";
126
+ import type { FloodFillFlagsHostType } from "../types/OpenCvSharp/FloodFillFlags";
127
+ import type { FormatTypeHostType } from "../types/OpenCvSharp/FormatType";
128
+ import type { FourCCHostType } from "../types/OpenCvSharp/FourCC";
129
+ import type { FrameSourceHostType } from "../types/OpenCvSharp/FrameSource";
130
+ import type { FundamentalMatMethodsHostType } from "../types/OpenCvSharp/FundamentalMatMethods";
131
+ import type { GFTTDetectorHostType } from "../types/OpenCvSharp/GFTTDetector";
132
+ import type { GemmFlagsHostType } from "../types/OpenCvSharp/GemmFlags";
133
+ import type { GeneralizedHoughHostType } from "../types/OpenCvSharp/GeneralizedHough";
134
+ import type { GeneralizedHoughBallardHostType } from "../types/OpenCvSharp/GeneralizedHoughBallard";
135
+ import type { GeneralizedHoughGuilHostType } from "../types/OpenCvSharp/GeneralizedHoughGuil";
136
+ import type { GrabCutClassesHostType } from "../types/OpenCvSharp/GrabCutClasses";
137
+ import type { GrabCutModesHostType } from "../types/OpenCvSharp/GrabCutModes";
138
+ import type { DetectionROIHostType } from "../types/OpenCvSharp/HOGDescriptor";
139
+ import type { HOGDescriptorHostType } from "../types/OpenCvSharp/HOGDescriptor";
140
+ import type { HaarDetectionTypesHostType } from "../types/OpenCvSharp/HaarDetectionTypes";
141
+ import type { HandEyeCalibrationMethodHostType } from "../types/OpenCvSharp/HandEyeCalibrationMethod";
142
+ import type { HausdorffDistanceExtractorHostType } from "../types/OpenCvSharp/HausdorffDistanceExtractor";
143
+ import type { HersheyFontsHostType } from "../types/OpenCvSharp/HersheyFonts";
144
+ import type { HierarchyIndexHostType } from "../types/OpenCvSharp/HierarchyIndex";
145
+ import type { HistCompMethodsHostType } from "../types/OpenCvSharp/HistCompMethods";
146
+ import type { HistogramNormTypeHostType } from "../types/OpenCvSharp/HistogramNormType";
147
+ import type { HomographyMethodsHostType } from "../types/OpenCvSharp/HomographyMethods";
148
+ import type { HoughModesHostType } from "../types/OpenCvSharp/HoughModes";
149
+ import type { ICvPtrHolderHostType } from "../types/OpenCvSharp/ICvPtrHolder";
150
+ import type { IVecHostType } from "../types/OpenCvSharp/IVec";
151
+ import type { ImageEncodingParamHostType } from "../types/OpenCvSharp/ImageEncodingParam";
152
+ import type { AverageHashHostType } from "../types/OpenCvSharp/ImgHash/AverageHash";
153
+ import type { BlockMeanHashHostType } from "../types/OpenCvSharp/ImgHash/BlockMeanHash";
154
+ import type { BlockMeanHashModeHostType } from "../types/OpenCvSharp/ImgHash/BlockMeanHashMode";
155
+ import type { ColorMomentHashHostType } from "../types/OpenCvSharp/ImgHash/ColorMomentHash";
156
+ import type { ImgHashBaseHostType } from "../types/OpenCvSharp/ImgHash/ImgHashBase";
157
+ import type { MarrHildrethHashHostType } from "../types/OpenCvSharp/ImgHash/MarrHildrethHash";
158
+ import type { PHashHostType } from "../types/OpenCvSharp/ImgHash/PHash";
159
+ import type { RadialVarianceHashHostType } from "../types/OpenCvSharp/ImgHash/RadialVarianceHash";
160
+ import type { ImreadModesHostType } from "../types/OpenCvSharp/ImreadModes";
161
+ import type { ImwriteEXRTypeFlagsHostType } from "../types/OpenCvSharp/ImwriteEXRTypeFlags";
162
+ import type { ImwriteFlagsHostType } from "../types/OpenCvSharp/ImwriteFlags";
163
+ import type { ImwritePAMFlagsHostType } from "../types/OpenCvSharp/ImwritePAMFlags";
164
+ import type { ImwritePNGFlagsHostType } from "../types/OpenCvSharp/ImwritePNGFlags";
165
+ import type { InOutArrayKindHostType } from "../types/OpenCvSharp/InOutArrayKind";
166
+ import type { InpaintMethodHostType } from "../types/OpenCvSharp/InpaintMethod";
167
+ import type { InputArrayHostType } from "../types/OpenCvSharp/InputArray";
168
+ import type { InputOutputArrayHostType } from "../types/OpenCvSharp/InputOutputArray";
169
+ import type { ExceptionHandlerHostType } from "../types/OpenCvSharp/Internal/ExceptionHandler";
170
+ import type { ExceptionStatusHostType } from "../types/OpenCvSharp/Internal/ExceptionStatus";
171
+ import type { NativeMethodsHostType } from "../types/OpenCvSharp/Internal/NativeMethods";
172
+ import type { StdStringHostType } from "../types/OpenCvSharp/Internal/StdString";
173
+ import type { ArrayAddress1HostType } from "../types/OpenCvSharp/Internal/Util/ArrayAddress";
174
+ import type { ArrayAddress2HostType } from "../types/OpenCvSharp/Internal/Util/ArrayAddress2";
175
+ import type { PInvokeHelperHostType } from "../types/OpenCvSharp/Internal/Util/PInvokeHelper";
176
+ import type { ReadOnlyArray2DHostType } from "../types/OpenCvSharp/Internal/Util/ReadOnlyArray2D";
177
+ import type { SaturateCastHostType } from "../types/OpenCvSharp/Internal/Util/SaturateCast";
178
+ import type { ScopedGCHandleHostType } from "../types/OpenCvSharp/Internal/Util/ScopedGCHandle";
179
+ import type { IStdVectorHostType } from "../types/OpenCvSharp/Internal/Vectors/IStdVector";
180
+ import type { VectorOfByteHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfByte";
181
+ import type { VectorOfDMatchHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfDMatch";
182
+ import type { VectorOfDTreesNodeHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode";
183
+ import type { VectorOfDoubleHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfDouble";
184
+ import type { VectorOfFloatHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfFloat";
185
+ import type { VectorOfImageFeaturesHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures";
186
+ import type { VectorOfInt32HostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfInt32";
187
+ import type { VectorOfKeyPointHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint";
188
+ import type { VectorOfMatHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfMat";
189
+ import type { VectorOfPointHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfPoint";
190
+ import type { VectorOfPoint2dHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfPoint2d";
191
+ import type { VectorOfPoint2fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfPoint2f";
192
+ import type { VectorOfPoint3fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfPoint3f";
193
+ import type { VectorOfRectHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfRect";
194
+ import type { VectorOfRect2dHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfRect2d";
195
+ import type { VectorOfRotatedRectHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect";
196
+ import type { VectorOfStringHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfString";
197
+ import type { VectorOfVec2fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVec2f";
198
+ import type { VectorOfVec3fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVec3f";
199
+ import type { VectorOfVec4fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVec4f";
200
+ import type { VectorOfVec4iHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVec4i";
201
+ import type { VectorOfVectorByteHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorByte";
202
+ import type { VectorOfVectorDMatchHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch";
203
+ import type { VectorOfVectorDoubleHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble";
204
+ import type { VectorOfVectorInt32HostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32";
205
+ import type { VectorOfVectorKeyPointHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint";
206
+ import type { VectorOfVectorPointHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint";
207
+ import type { VectorOfVectorPoint2fHostType } from "../types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f";
208
+ import type { Win32ApiHostType } from "../types/OpenCvSharp/Internal/Win32API";
209
+ import type { WindowsLibraryLoaderHostType } from "../types/OpenCvSharp/Internal/WindowsLibraryLoader";
210
+ import type { InterpolationFlagsHostType } from "../types/OpenCvSharp/InterpolationFlags";
211
+ import type { KAZEHostType } from "../types/OpenCvSharp/KAZE";
212
+ import type { KAZEDiffusivityTypeHostType } from "../types/OpenCvSharp/KAZEDiffusivityType";
213
+ import type { KMeansFlagsHostType } from "../types/OpenCvSharp/KMeansFlags";
214
+ import type { KalmanFilterHostType } from "../types/OpenCvSharp/KalmanFilter";
215
+ import type { KeyPointHostType } from "../types/OpenCvSharp/KeyPoint";
216
+ import type { KeyPointsFilterHostType } from "../types/OpenCvSharp/KeyPointsFilter";
217
+ import type { LDAHostType } from "../types/OpenCvSharp/LDA";
218
+ import type { Line2DHostType } from "../types/OpenCvSharp/Line2D";
219
+ import type { Line3DHostType } from "../types/OpenCvSharp/Line3D";
220
+ import type { KeyLineHostType } from "../types/OpenCvSharp/LineDescriptor/KeyLine";
221
+ import type { LSDParamHostType } from "../types/OpenCvSharp/LineDescriptor/LSDParam";
222
+ import type { LineIteratorHostType } from "../types/OpenCvSharp/LineIterator";
223
+ import type { LineSegmentDetectorHostType } from "../types/OpenCvSharp/LineSegmentDetector";
224
+ import type { LineSegmentDetectorModesHostType } from "../types/OpenCvSharp/LineSegmentDetectorModes";
225
+ import type { LineSegmentPointHostType } from "../types/OpenCvSharp/LineSegmentPoint";
226
+ import type { LineSegmentPolarHostType } from "../types/OpenCvSharp/LineSegmentPolar";
227
+ import type { LineTypesHostType } from "../types/OpenCvSharp/LineTypes";
228
+ import type { LogLevelHostType } from "../types/OpenCvSharp/LogLevel";
229
+ import type { ANN_MLPHostType } from "../types/OpenCvSharp/ML/ANN_MLP";
230
+ import type { BoostHostType } from "../types/OpenCvSharp/ML/Boost";
231
+ import type { DTreesHostType } from "../types/OpenCvSharp/ML/DTrees";
232
+ import type { KNearestHostType } from "../types/OpenCvSharp/ML/KNearest";
233
+ import type { LogisticRegressionHostType } from "../types/OpenCvSharp/ML/LogisticRegression";
234
+ import type { NormalBayesClassifierHostType } from "../types/OpenCvSharp/ML/NormalBayesClassifier";
235
+ import type { ParamGridHostType } from "../types/OpenCvSharp/ML/ParamGrid";
236
+ import type { RTreesHostType } from "../types/OpenCvSharp/ML/RTrees";
237
+ import type { SVMHostType } from "../types/OpenCvSharp/ML/SVM";
238
+ import type { SampleTypesHostType } from "../types/OpenCvSharp/ML/SampleTypes";
239
+ import type { StatModelHostType } from "../types/OpenCvSharp/ML/StatModel";
240
+ import type { TrainDataHostType } from "../types/OpenCvSharp/ML/TrainData";
241
+ import type { MSERHostType } from "../types/OpenCvSharp/MSER";
242
+ import type { MarkerTypesHostType } from "../types/OpenCvSharp/MarkerTypes";
243
+ import type { MatHostType } from "../types/OpenCvSharp/Mat";
244
+ import type { MatDiagTypeHostType } from "../types/OpenCvSharp/MatDiagType";
245
+ import type { MatExprHostType } from "../types/OpenCvSharp/MatExpr";
246
+ import type { MatExprRowColIndexerHostType } from "../types/OpenCvSharp/MatExprRowColIndexer";
247
+ import type { MatForeachFunctionByteHostType } from "../types/OpenCvSharp/MatForeachFunctionByte";
248
+ import type { MatForeachFunctionDoubleHostType } from "../types/OpenCvSharp/MatForeachFunctionDouble";
249
+ import type { MatForeachFunctionFloatHostType } from "../types/OpenCvSharp/MatForeachFunctionFloat";
250
+ import type { MatForeachFunctionInt16HostType } from "../types/OpenCvSharp/MatForeachFunctionInt16";
251
+ import type { MatForeachFunctionInt32HostType } from "../types/OpenCvSharp/MatForeachFunctionInt32";
252
+ import type { MatForeachFunctionVec2bHostType } from "../types/OpenCvSharp/MatForeachFunctionVec2b";
253
+ import type { MatForeachFunctionVec2dHostType } from "../types/OpenCvSharp/MatForeachFunctionVec2d";
254
+ import type { MatForeachFunctionVec2fHostType } from "../types/OpenCvSharp/MatForeachFunctionVec2f";
255
+ import type { MatForeachFunctionVec2iHostType } from "../types/OpenCvSharp/MatForeachFunctionVec2i";
256
+ import type { MatForeachFunctionVec2sHostType } from "../types/OpenCvSharp/MatForeachFunctionVec2s";
257
+ import type { MatForeachFunctionVec3bHostType } from "../types/OpenCvSharp/MatForeachFunctionVec3b";
258
+ import type { MatForeachFunctionVec3dHostType } from "../types/OpenCvSharp/MatForeachFunctionVec3d";
259
+ import type { MatForeachFunctionVec3fHostType } from "../types/OpenCvSharp/MatForeachFunctionVec3f";
260
+ import type { MatForeachFunctionVec3iHostType } from "../types/OpenCvSharp/MatForeachFunctionVec3i";
261
+ import type { MatForeachFunctionVec3sHostType } from "../types/OpenCvSharp/MatForeachFunctionVec3s";
262
+ import type { MatForeachFunctionVec4bHostType } from "../types/OpenCvSharp/MatForeachFunctionVec4b";
263
+ import type { MatForeachFunctionVec4dHostType } from "../types/OpenCvSharp/MatForeachFunctionVec4d";
264
+ import type { MatForeachFunctionVec4fHostType } from "../types/OpenCvSharp/MatForeachFunctionVec4f";
265
+ import type { MatForeachFunctionVec4iHostType } from "../types/OpenCvSharp/MatForeachFunctionVec4i";
266
+ import type { MatForeachFunctionVec4sHostType } from "../types/OpenCvSharp/MatForeachFunctionVec4s";
267
+ import type { MatForeachFunctionVec6bHostType } from "../types/OpenCvSharp/MatForeachFunctionVec6b";
268
+ import type { MatForeachFunctionVec6dHostType } from "../types/OpenCvSharp/MatForeachFunctionVec6d";
269
+ import type { MatForeachFunctionVec6fHostType } from "../types/OpenCvSharp/MatForeachFunctionVec6f";
270
+ import type { MatForeachFunctionVec6iHostType } from "../types/OpenCvSharp/MatForeachFunctionVec6i";
271
+ import type { MatForeachFunctionVec6sHostType } from "../types/OpenCvSharp/MatForeachFunctionVec6s";
272
+ import type { MatIndexerHostType } from "../types/OpenCvSharp/MatIndexer";
273
+ import type { MatMemoryManagerHostType } from "../types/OpenCvSharp/MatMemoryManager";
274
+ import type { MatTypeHostType } from "../types/OpenCvSharp/MatType";
275
+ import type { MergeDebevecHostType } from "../types/OpenCvSharp/MergeDebevec";
276
+ import type { MergeExposuresHostType } from "../types/OpenCvSharp/MergeExposures";
277
+ import type { MergeMertensHostType } from "../types/OpenCvSharp/MergeMertens";
278
+ import type { MomentsHostType } from "../types/OpenCvSharp/Moments";
279
+ import type { MorphShapesHostType } from "../types/OpenCvSharp/MorphShapes";
280
+ import type { MorphTypesHostType } from "../types/OpenCvSharp/MorphTypes";
281
+ import type { MotionTypesHostType } from "../types/OpenCvSharp/MotionTypes";
282
+ import type { MouseCallbackHostType } from "../types/OpenCvSharp/MouseCallback";
283
+ import type { MouseEventFlagsHostType } from "../types/OpenCvSharp/MouseEventFlags";
284
+ import type { MouseEventTypesHostType } from "../types/OpenCvSharp/MouseEventTypes";
285
+ import type { NormTypesHostType } from "../types/OpenCvSharp/NormTypes";
286
+ import type { ORBHostType } from "../types/OpenCvSharp/ORB";
287
+ import type { ORBScoreTypeHostType } from "../types/OpenCvSharp/ORBScoreType";
288
+ import type { OpenCVExceptionHostType } from "../types/OpenCvSharp/OpenCVException";
289
+ import type { OpenCvSharpExceptionHostType } from "../types/OpenCvSharp/OpenCvSharpException";
290
+ import type { CvOptFlowHostType } from "../types/OpenCvSharp/OptFlow/CvOptFlow";
291
+ import type { OpticalFlowFlagsHostType } from "../types/OpenCvSharp/OpticalFlowFlags";
292
+ import type { OutputArrayHostType } from "../types/OpenCvSharp/OutputArray";
293
+ import type { OutputArrayOfMatListHostType } from "../types/OpenCvSharp/OutputArrayOfMatList";
294
+ import type { OutputArrayOfStructListHostType } from "../types/OpenCvSharp/OutputArrayOfStructList";
295
+ import type { PCAHostType } from "../types/OpenCvSharp/PCA";
296
+ import type { PixelConnectivityHostType } from "../types/OpenCvSharp/PixelConnectivity";
297
+ import type { PointHostType } from "../types/OpenCvSharp/Point";
298
+ import type { Point2dHostType } from "../types/OpenCvSharp/Point2d";
299
+ import type { Point2fHostType } from "../types/OpenCvSharp/Point2f";
300
+ import type { Point3dHostType } from "../types/OpenCvSharp/Point3d";
301
+ import type { Point3fHostType } from "../types/OpenCvSharp/Point3f";
302
+ import type { Point3iHostType } from "../types/OpenCvSharp/Point3i";
303
+ import type { ProjectionTypeHostType } from "../types/OpenCvSharp/ProjectionType";
304
+ import type { PtrHostType } from "../types/OpenCvSharp/Ptr";
305
+ import type { PyrLKOpticalFlowHostType } from "../types/OpenCvSharp/PyrLKOpticalFlow";
306
+ import type { QRCodeDetectorHostType } from "../types/OpenCvSharp/QRCodeDetector";
307
+ import type { QualityBRISQUEHostType } from "../types/OpenCvSharp/Quality/QualityBRISQUE";
308
+ import type { QualityBaseHostType } from "../types/OpenCvSharp/Quality/QualityBase";
309
+ import type { QualityGMSDHostType } from "../types/OpenCvSharp/Quality/QualityGMSD";
310
+ import type { QualityMSEHostType } from "../types/OpenCvSharp/Quality/QualityMSE";
311
+ import type { QualityPSNRHostType } from "../types/OpenCvSharp/Quality/QualityPSNR";
312
+ import type { QualitySSIMHostType } from "../types/OpenCvSharp/Quality/QualitySSIM";
313
+ import type { RNGHostType } from "../types/OpenCvSharp/RNG";
314
+ import type { RNG_MT19937HostType } from "../types/OpenCvSharp/RNG_MT19937";
315
+ import type { RangeHostType } from "../types/OpenCvSharp/Range";
316
+ import type { RangefHostType } from "../types/OpenCvSharp/Rangef";
317
+ import type { RectHostType } from "../types/OpenCvSharp/Rect";
318
+ import type { Rect2dHostType } from "../types/OpenCvSharp/Rect2d";
319
+ import type { Rect2fHostType } from "../types/OpenCvSharp/Rect2f";
320
+ import type { RectanglesIntersectTypesHostType } from "../types/OpenCvSharp/RectanglesIntersectTypes";
321
+ import type { ReduceDimensionHostType } from "../types/OpenCvSharp/ReduceDimension";
322
+ import type { ReduceTypesHostType } from "../types/OpenCvSharp/ReduceTypes";
323
+ import type { ResourcesTrackerHostType } from "../types/OpenCvSharp/ResourcesTracker";
324
+ import type { RetrievalModesHostType } from "../types/OpenCvSharp/RetrievalModes";
325
+ import type { RidgeDetectionFilterHostType } from "../types/OpenCvSharp/RidgeDetectionFilter";
326
+ import type { RobotWorldHandEyeCalibrationMethodHostType } from "../types/OpenCvSharp/RobotWorldHandEyeCalibrationMethod";
327
+ import type { RobustEstimationAlgorithmsHostType } from "../types/OpenCvSharp/RobustEstimationAlgorithms";
328
+ import type { RotateFlagsHostType } from "../types/OpenCvSharp/RotateFlags";
329
+ import type { RotatedRectHostType } from "../types/OpenCvSharp/RotatedRect";
330
+ import type { SVDHostType } from "../types/OpenCvSharp/SVD";
331
+ import type { ScalarHostType } from "../types/OpenCvSharp/Scalar";
332
+ import type { SeamlessCloneMethodsHostType } from "../types/OpenCvSharp/SeamlessCloneMethods";
333
+ import type { IntelligentScissorsMBHostType } from "../types/OpenCvSharp/Segmentation/IntelligentScissorsMB";
334
+ import type { ShapeContextDistanceExtractorHostType } from "../types/OpenCvSharp/ShapeContextDistanceExtractor";
335
+ import type { ShapeDistanceExtractorHostType } from "../types/OpenCvSharp/ShapeDistanceExtractor";
336
+ import type { ShapeMatchModesHostType } from "../types/OpenCvSharp/ShapeMatchModes";
337
+ import type { SimilarRectsHostType } from "../types/OpenCvSharp/SimilarRects";
338
+ import type { SimpleBlobDetectorHostType } from "../types/OpenCvSharp/SimpleBlobDetector";
339
+ import type { SizeHostType } from "../types/OpenCvSharp/Size";
340
+ import type { Size2dHostType } from "../types/OpenCvSharp/Size2d";
341
+ import type { Size2fHostType } from "../types/OpenCvSharp/Size2f";
342
+ import type { SolveLPResultHostType } from "../types/OpenCvSharp/SolveLPResult";
343
+ import type { SolvePnPFlagsHostType } from "../types/OpenCvSharp/SolvePnPFlags";
344
+ import type { SortFlagsHostType } from "../types/OpenCvSharp/SortFlags";
345
+ import type { SparseMatHostType } from "../types/OpenCvSharp/SparseMat";
346
+ import type { SparseMatIndexerHostType } from "../types/OpenCvSharp/SparseMatIndexer";
347
+ import type { StereoBMHostType } from "../types/OpenCvSharp/StereoBM";
348
+ import type { StereoMatcherHostType } from "../types/OpenCvSharp/StereoMatcher";
349
+ import type { StereoRectificationFlagsHostType } from "../types/OpenCvSharp/StereoRectificationFlags";
350
+ import type { StereoSGBMHostType } from "../types/OpenCvSharp/StereoSGBM";
351
+ import type { StereoSGBMModeHostType } from "../types/OpenCvSharp/StereoSGBM";
352
+ import type { StitcherHostType } from "../types/OpenCvSharp/Stitcher";
353
+ import type { NextEdgeTypeHostType } from "../types/OpenCvSharp/Subdiv2D";
354
+ import type { Subdiv2DHostType } from "../types/OpenCvSharp/Subdiv2D";
355
+ import type { SuperResolutionHostType } from "../types/OpenCvSharp/SuperResolution";
356
+ import type { TemplateMatchModesHostType } from "../types/OpenCvSharp/TemplateMatchModes";
357
+ import type { TermCriteriaHostType } from "../types/OpenCvSharp/TermCriteria";
358
+ import type { BaseOCRHostType } from "../types/OpenCvSharp/Text/BaseOCR";
359
+ import type { ComponentLevelsHostType } from "../types/OpenCvSharp/Text/ComponentLevels";
360
+ import type { CvTextHostType } from "../types/OpenCvSharp/Text/CvText";
361
+ import type { OCRTesseractHostType } from "../types/OpenCvSharp/Text/OCRTesseract";
362
+ import type { TextDetectorHostType } from "../types/OpenCvSharp/TextDetector";
363
+ import type { TextDetectorCNNHostType } from "../types/OpenCvSharp/TextDetectorCNN";
364
+ import type { ThresholdTypesHostType } from "../types/OpenCvSharp/ThresholdTypes";
365
+ import type { TonemapHostType } from "../types/OpenCvSharp/Tonemap";
366
+ import type { TonemapDragoHostType } from "../types/OpenCvSharp/TonemapDrago";
367
+ import type { TonemapMantiukHostType } from "../types/OpenCvSharp/TonemapMantiuk";
368
+ import type { TonemapReinhardHostType } from "../types/OpenCvSharp/TonemapReinhard";
369
+ import type { TrackbarCallbackHostType } from "../types/OpenCvSharp/TrackbarCallback";
370
+ import type { TrackbarCallbackNativeHostType } from "../types/OpenCvSharp/TrackbarCallbackNative";
371
+ import type { TrackerHostType } from "../types/OpenCvSharp/Tracker";
372
+ import type { TrackerGOTURNHostType } from "../types/OpenCvSharp/TrackerGOTURN";
373
+ import type { TrackerMILHostType } from "../types/OpenCvSharp/TrackerMIL";
374
+ import type { TrackerCSRTHostType } from "../types/OpenCvSharp/Tracking/TrackerCSRT";
375
+ import type { TrackerKCFHostType } from "../types/OpenCvSharp/Tracking/TrackerKCF";
376
+ import type { TrackerTypesHostType } from "../types/OpenCvSharp/Tracking/TrackerTypes";
377
+ import type { UMatHostType } from "../types/OpenCvSharp/UMat";
378
+ import type { UMatUsageFlagsHostType } from "../types/OpenCvSharp/UMatUsageFlags";
379
+ import type { LocalOptimMethodHostType } from "../types/OpenCvSharp/UsacParams";
380
+ import type { NeighborSearchMethodHostType } from "../types/OpenCvSharp/UsacParams";
381
+ import type { SamplingMethodHostType } from "../types/OpenCvSharp/UsacParams";
382
+ import type { ScoreMethodHostType } from "../types/OpenCvSharp/UsacParams";
383
+ import type { UsacParamsHostType } from "../types/OpenCvSharp/UsacParams";
384
+ import type { WUsacParamsHostType } from "../types/OpenCvSharp/UsacParams";
385
+ import type { Vec2bHostType } from "../types/OpenCvSharp/Vec2b";
386
+ import type { Vec2dHostType } from "../types/OpenCvSharp/Vec2d";
387
+ import type { Vec2fHostType } from "../types/OpenCvSharp/Vec2f";
388
+ import type { Vec2iHostType } from "../types/OpenCvSharp/Vec2i";
389
+ import type { Vec2sHostType } from "../types/OpenCvSharp/Vec2s";
390
+ import type { Vec2wHostType } from "../types/OpenCvSharp/Vec2w";
391
+ import type { Vec3bHostType } from "../types/OpenCvSharp/Vec3b";
392
+ import type { Vec3dHostType } from "../types/OpenCvSharp/Vec3d";
393
+ import type { Vec3fHostType } from "../types/OpenCvSharp/Vec3f";
394
+ import type { Vec3iHostType } from "../types/OpenCvSharp/Vec3i";
395
+ import type { Vec3sHostType } from "../types/OpenCvSharp/Vec3s";
396
+ import type { Vec3wHostType } from "../types/OpenCvSharp/Vec3w";
397
+ import type { Vec4bHostType } from "../types/OpenCvSharp/Vec4b";
398
+ import type { Vec4dHostType } from "../types/OpenCvSharp/Vec4d";
399
+ import type { Vec4fHostType } from "../types/OpenCvSharp/Vec4f";
400
+ import type { Vec4iHostType } from "../types/OpenCvSharp/Vec4i";
401
+ import type { Vec4sHostType } from "../types/OpenCvSharp/Vec4s";
402
+ import type { Vec4wHostType } from "../types/OpenCvSharp/Vec4w";
403
+ import type { Vec6bHostType } from "../types/OpenCvSharp/Vec6b";
404
+ import type { Vec6dHostType } from "../types/OpenCvSharp/Vec6d";
405
+ import type { Vec6fHostType } from "../types/OpenCvSharp/Vec6f";
406
+ import type { Vec6iHostType } from "../types/OpenCvSharp/Vec6i";
407
+ import type { Vec6sHostType } from "../types/OpenCvSharp/Vec6s";
408
+ import type { Vec6wHostType } from "../types/OpenCvSharp/Vec6w";
409
+ import type { VideoAccelerationTypeHostType } from "../types/OpenCvSharp/VideoAccelerationType";
410
+ import type { VideoCaptureHostType } from "../types/OpenCvSharp/VideoCapture";
411
+ import type { VideoCaptureAPIsHostType } from "../types/OpenCvSharp/VideoCaptureAPIs";
412
+ import type { VideoCaptureParaHostType } from "../types/OpenCvSharp/VideoCapturePara";
413
+ import type { VideoCapturePropertiesHostType } from "../types/OpenCvSharp/VideoCaptureProperties";
414
+ import type { VideoWriterHostType } from "../types/OpenCvSharp/VideoWriter";
415
+ import type { VideoWriterParaHostType } from "../types/OpenCvSharp/VideoWriterPara";
416
+ import type { VideoWriterPropertiesHostType } from "../types/OpenCvSharp/VideoWriterProperties";
417
+ import type { WarpPolarModeHostType } from "../types/OpenCvSharp/WarpPolarMode";
418
+ import type { WeChatQRCodeHostType } from "../types/OpenCvSharp/WeChatQRCode";
419
+ import type { WindowHostType } from "../types/OpenCvSharp/Window";
420
+ import type { WindowFlagsHostType } from "../types/OpenCvSharp/WindowFlags";
421
+ import type { WindowPropertyFlagsHostType } from "../types/OpenCvSharp/WindowPropertyFlags";
422
+ import type { BriefDescriptorExtractorHostType } from "../types/OpenCvSharp/XFeatures2D/BriefDescriptorExtractor";
423
+ import type { FREAKHostType } from "../types/OpenCvSharp/XFeatures2D/FREAK";
424
+ import type { LATCHHostType } from "../types/OpenCvSharp/XFeatures2D/LATCH";
425
+ import type { LUCIDHostType } from "../types/OpenCvSharp/XFeatures2D/LUCID";
426
+ import type { SURFHostType } from "../types/OpenCvSharp/XFeatures2D/SURF";
427
+ import type { StarDetectorHostType } from "../types/OpenCvSharp/XFeatures2D/StarDetector";
428
+ import type { AdaptiveManifoldFilterHostType } from "../types/OpenCvSharp/XImgProc/AdaptiveManifoldFilter";
429
+ import type { AngleRangeOptionHostType } from "../types/OpenCvSharp/XImgProc/AngleRangeOption";
430
+ import type { CvXImgProcHostType } from "../types/OpenCvSharp/XImgProc/CvXImgProc";
431
+ import type { DTFilterHostType } from "../types/OpenCvSharp/XImgProc/DTFilter";
432
+ import type { EdgeAwareFiltersListHostType } from "../types/OpenCvSharp/XImgProc/EdgeAwareFiltersList";
433
+ import type { EdgeBoxesHostType } from "../types/OpenCvSharp/XImgProc/EdgeBoxes";
434
+ import type { FastBilateralSolverFilterHostType } from "../types/OpenCvSharp/XImgProc/FastBilateralSolverFilter";
435
+ import type { FastGlobalSmootherFilterHostType } from "../types/OpenCvSharp/XImgProc/FastGlobalSmootherFilter";
436
+ import type { FastLineDetectorHostType } from "../types/OpenCvSharp/XImgProc/FastLineDetector";
437
+ import type { GuidedFilterHostType } from "../types/OpenCvSharp/XImgProc/GuidedFilter";
438
+ import type { HoughDeskewOptionHostType } from "../types/OpenCvSharp/XImgProc/HoughDeskewOption";
439
+ import type { HoughOPHostType } from "../types/OpenCvSharp/XImgProc/HoughOP";
440
+ import type { LocalBinarizationMethodsHostType } from "../types/OpenCvSharp/XImgProc/LocalBinarizationMethods";
441
+ import type { RFFeatureGetterHostType } from "../types/OpenCvSharp/XImgProc/RFFeatureGetter";
442
+ import type { RulesOptionHostType } from "../types/OpenCvSharp/XImgProc/RulesOption";
443
+ import type { SLICTypeHostType } from "../types/OpenCvSharp/XImgProc/SLICType";
444
+ import type { GraphSegmentationHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/GraphSegmentation";
445
+ import type { SelectiveSearchSegmentationHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentation";
446
+ import type { SelectiveSearchSegmentationStrategyColorHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy";
447
+ import type { SelectiveSearchSegmentationStrategyFillHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy";
448
+ import type { SelectiveSearchSegmentationStrategyHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy";
449
+ import type { SelectiveSearchSegmentationStrategySizeHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy";
450
+ import type { SelectiveSearchSegmentationStrategyTextureHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy";
451
+ import type { SelectiveSearchSegmentationStrategyMultipleHostType } from "../types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategyMultiple";
452
+ import type { StructuredEdgeDetectionHostType } from "../types/OpenCvSharp/XImgProc/StructuredEdgeDetection";
453
+ import type { SuperpixelLSCHostType } from "../types/OpenCvSharp/XImgProc/SuperpixelLSC";
454
+ import type { SuperpixelSEEDSHostType } from "../types/OpenCvSharp/XImgProc/SuperpixelSEEDS";
455
+ import type { SuperpixelSLICHostType } from "../types/OpenCvSharp/XImgProc/SuperpixelSLIC";
456
+ import type { ThinningTypesHostType } from "../types/OpenCvSharp/XImgProc/ThinningTypes";
457
+ import type { WMFWeightTypeHostType } from "../types/OpenCvSharp/XImgProc/WMFWeightType";
458
+ import type { Bm3dStepsHostType } from "../types/OpenCvSharp/XPhoto/Bm3dSteps";
459
+ import type { CvXPhotoHostType } from "../types/OpenCvSharp/XPhoto/CvXPhoto";
460
+ import type { GrayworldWBHostType } from "../types/OpenCvSharp/XPhoto/GrayworldWB";
461
+ import type { InpaintTypesHostType } from "../types/OpenCvSharp/XPhoto/InpaintTypes";
462
+ import type { LearningBasedWBHostType } from "../types/OpenCvSharp/XPhoto/LearningBasedWB";
463
+ import type { SimpleWBHostType } from "../types/OpenCvSharp/XPhoto/SimpleWB";
464
+ import type { TonemapDurandHostType } from "../types/OpenCvSharp/XPhoto/TonemapDurand";
465
+ import type { TransformTypesHostType } from "../types/OpenCvSharp/XPhoto/TransformTypes";
466
+ import type { WhiteBalancerHostType } from "../types/OpenCvSharp/XPhoto/WhiteBalancer";
467
+
468
+ type OpenCvSharpCollection = HostTypeCollection & {
469
+ readonly OpenCvSharp: OpenCvSharpRoot;
470
+ };
471
+
472
+ type OpenCvSharpRoot = PropertyBag & {
473
+ readonly Aruco: OpenCvSharpRoot_Aruco;
474
+ readonly Detail: OpenCvSharpRoot_Detail;
475
+ readonly Dnn: OpenCvSharpRoot_Dnn;
476
+ readonly DnnSuperres: OpenCvSharpRoot_DnnSuperres;
477
+ readonly Face: OpenCvSharpRoot_Face;
478
+ readonly Features2D: OpenCvSharpRoot_Features2D;
479
+ readonly Flann: OpenCvSharpRoot_Flann;
480
+ readonly ImgHash: OpenCvSharpRoot_ImgHash;
481
+ readonly Internal: OpenCvSharpRoot_Internal;
482
+ readonly LineDescriptor: OpenCvSharpRoot_LineDescriptor;
483
+ readonly ML: OpenCvSharpRoot_ML;
484
+ readonly OptFlow: OpenCvSharpRoot_OptFlow;
485
+ readonly Quality: OpenCvSharpRoot_Quality;
486
+ readonly Segmentation: OpenCvSharpRoot_Segmentation;
487
+ readonly Text: OpenCvSharpRoot_Text;
488
+ readonly Tracking: OpenCvSharpRoot_Tracking;
489
+ readonly XFeatures2D: OpenCvSharpRoot_XFeatures2D;
490
+ readonly XImgProc: OpenCvSharpRoot_XImgProc;
491
+ readonly XPhoto: OpenCvSharpRoot_XPhoto;
492
+ readonly AKAZE: AKAZEHostType;
493
+ readonly AKAZEDescriptorType: AKAZEDescriptorTypeHostType;
494
+ readonly AccessFlag: AccessFlagHostType;
495
+ readonly AdaptiveThresholdTypes: AdaptiveThresholdTypesHostType;
496
+ readonly AgastFeatureDetector: AgastFeatureDetectorHostType;
497
+ readonly Algorithm: AlgorithmHostType;
498
+ readonly AlgorithmParamType: AlgorithmParamTypeHostType;
499
+ readonly BFMatcher: BFMatcherHostType;
500
+ readonly BOWImgDescriptorExtractor: BOWImgDescriptorExtractorHostType;
501
+ readonly BOWKMeansTrainer: BOWKMeansTrainerHostType;
502
+ readonly BOWTrainer: BOWTrainerHostType;
503
+ readonly BRISK: BRISKHostType;
504
+ readonly BackgroundSubtractor: BackgroundSubtractorHostType;
505
+ readonly BackgroundSubtractorGMG: BackgroundSubtractorGMGHostType;
506
+ readonly BackgroundSubtractorKNN: BackgroundSubtractorKNNHostType;
507
+ readonly BackgroundSubtractorMOG: BackgroundSubtractorMOGHostType;
508
+ readonly BackgroundSubtractorMOG2: BackgroundSubtractorMOG2HostType;
509
+ readonly BorderTypes: BorderTypesHostType;
510
+ readonly BroxOpticalFlow: BroxOpticalFlowHostType;
511
+ readonly ButtonType: ButtonTypeHostType;
512
+ readonly CLAHE: CLAHEHostType;
513
+ readonly CalibrateCRF: CalibrateCRFHostType;
514
+ readonly CalibrateDebevec: CalibrateDebevecHostType;
515
+ readonly CalibrateRobertson: CalibrateRobertsonHostType;
516
+ readonly CalibrationFlags: CalibrationFlagsHostType;
517
+ readonly CameraChannels: CameraChannelsHostType;
518
+ readonly CapturePosAviRatio: CapturePosAviRatioHostType;
519
+ readonly CaptureType: CaptureTypeHostType;
520
+ readonly CascadeClassifier: CascadeClassifierHostType;
521
+ readonly ChessboardFlags: ChessboardFlagsHostType;
522
+ readonly CircleSegment: CircleSegmentHostType;
523
+ readonly CmpType: CmpTypeHostType;
524
+ readonly ColorConversionCodes: ColorConversionCodesHostType;
525
+ readonly ColormapTypes: ColormapTypesHostType;
526
+ readonly ConnectedComponents: ConnectedComponentsHostType;
527
+ readonly ConnectedComponentsAlgorithmsTypes: ConnectedComponentsAlgorithmsTypesHostType;
528
+ readonly ConnectedComponentsTypes: ConnectedComponentsTypesHostType;
529
+ readonly ContourApproximationModes: ContourApproximationModesHostType;
530
+ readonly ConvertImageModes: ConvertImageModesHostType;
531
+ readonly CovarFlags: CovarFlagsHostType;
532
+ readonly CpuFeatures: CpuFeaturesHostType;
533
+ readonly CriteriaTypes: CriteriaTypesHostType;
534
+ readonly Cv2: Cv2HostType;
535
+ readonly CvErrorCallback: CvErrorCallbackHostType;
536
+ readonly CvObject: CvObjectHostType;
537
+ readonly CvTrackbar: CvTrackbarHostType;
538
+ readonly DMatch: DMatchHostType;
539
+ readonly DctFlags: DctFlagsHostType;
540
+ readonly DecompTypes: DecompTypesHostType;
541
+ readonly DenseOpticalFlowExt: DenseOpticalFlowExtHostType;
542
+ readonly DescriptorMatcher: DescriptorMatcherHostType;
543
+ readonly DetectionROI: DetectionROIHostType;
544
+ readonly DftFlags: DftFlagsHostType;
545
+ readonly DisposableCvObject: DisposableCvObjectHostType;
546
+ readonly DisposableObject: DisposableObjectHostType;
547
+ readonly DistanceTransformLabelTypes: DistanceTransformLabelTypesHostType;
548
+ readonly DistanceTransformMasks: DistanceTransformMasksHostType;
549
+ readonly DistanceTypes: DistanceTypesHostType;
550
+ readonly DistributionType: DistributionTypeHostType;
551
+ readonly DrawMatchesFlags: DrawMatchesFlagsHostType;
552
+ readonly DualTVL1OpticalFlow: DualTVL1OpticalFlowHostType;
553
+ readonly EM: EMHostType;
554
+ readonly EMStartStep: EMStartStepHostType;
555
+ readonly EMTypes: EMTypesHostType;
556
+ readonly EdgePreservingMethods: EdgePreservingMethodsHostType;
557
+ readonly ErrorCode: ErrorCodeHostType;
558
+ readonly EssentialMatMethod: EssentialMatMethodHostType;
559
+ readonly FASTType: FASTTypeHostType;
560
+ readonly FarnebackOpticalFlow: FarnebackOpticalFlowHostType;
561
+ readonly FastFeatureDetector: FastFeatureDetectorHostType;
562
+ readonly Feature2D: Feature2DHostType;
563
+ readonly FileNode: FileNodeHostType;
564
+ readonly FileNodeIterator: FileNodeIteratorHostType;
565
+ readonly FileStorage: FileStorageHostType;
566
+ readonly FindCirclesGridFlags: FindCirclesGridFlagsHostType;
567
+ readonly FishEyeCalibrationFlags: FishEyeCalibrationFlagsHostType;
568
+ readonly FlannBasedMatcher: FlannBasedMatcherHostType;
569
+ readonly FlipMode: FlipModeHostType;
570
+ readonly FloodFillFlags: FloodFillFlagsHostType;
571
+ readonly FormatType: FormatTypeHostType;
572
+ readonly FourCC: FourCCHostType;
573
+ readonly FrameSource: FrameSourceHostType;
574
+ readonly FundamentalMatMethods: FundamentalMatMethodsHostType;
575
+ readonly GFTTDetector: GFTTDetectorHostType;
576
+ readonly GemmFlags: GemmFlagsHostType;
577
+ readonly GeneralizedHough: GeneralizedHoughHostType;
578
+ readonly GeneralizedHoughBallard: GeneralizedHoughBallardHostType;
579
+ readonly GeneralizedHoughGuil: GeneralizedHoughGuilHostType;
580
+ readonly GrabCutClasses: GrabCutClassesHostType;
581
+ readonly GrabCutModes: GrabCutModesHostType;
582
+ readonly HOGDescriptor: HOGDescriptorHostType;
583
+ readonly HaarDetectionTypes: HaarDetectionTypesHostType;
584
+ readonly HandEyeCalibrationMethod: HandEyeCalibrationMethodHostType;
585
+ readonly HausdorffDistanceExtractor: HausdorffDistanceExtractorHostType;
586
+ readonly HersheyFonts: HersheyFontsHostType;
587
+ readonly HierarchyIndex: HierarchyIndexHostType;
588
+ readonly HistCompMethods: HistCompMethodsHostType;
589
+ readonly HistogramNormType: HistogramNormTypeHostType;
590
+ readonly HomographyMethods: HomographyMethodsHostType;
591
+ readonly HoughModes: HoughModesHostType;
592
+ readonly ICvPtrHolder: ICvPtrHolderHostType;
593
+ readonly IVec: IVecHostType;
594
+ readonly ImageEncodingParam: ImageEncodingParamHostType;
595
+ readonly ImreadModes: ImreadModesHostType;
596
+ readonly ImwriteEXRTypeFlags: ImwriteEXRTypeFlagsHostType;
597
+ readonly ImwriteFlags: ImwriteFlagsHostType;
598
+ readonly ImwritePAMFlags: ImwritePAMFlagsHostType;
599
+ readonly ImwritePNGFlags: ImwritePNGFlagsHostType;
600
+ readonly InOutArrayKind: InOutArrayKindHostType;
601
+ readonly InpaintMethod: InpaintMethodHostType;
602
+ readonly InputArray: InputArrayHostType;
603
+ readonly InputOutputArray: InputOutputArrayHostType;
604
+ readonly InterpolationFlags: InterpolationFlagsHostType;
605
+ readonly KAZE: KAZEHostType;
606
+ readonly KAZEDiffusivityType: KAZEDiffusivityTypeHostType;
607
+ readonly KMeansFlags: KMeansFlagsHostType;
608
+ readonly KalmanFilter: KalmanFilterHostType;
609
+ readonly KeyPoint: KeyPointHostType;
610
+ readonly KeyPointsFilter: KeyPointsFilterHostType;
611
+ readonly LDA: LDAHostType;
612
+ readonly Line2D: Line2DHostType;
613
+ readonly Line3D: Line3DHostType;
614
+ readonly LineIterator: LineIteratorHostType;
615
+ readonly LineSegmentDetector: LineSegmentDetectorHostType;
616
+ readonly LineSegmentDetectorModes: LineSegmentDetectorModesHostType;
617
+ readonly LineSegmentPoint: LineSegmentPointHostType;
618
+ readonly LineSegmentPolar: LineSegmentPolarHostType;
619
+ readonly LineTypes: LineTypesHostType;
620
+ readonly LocalOptimMethod: LocalOptimMethodHostType;
621
+ readonly LogLevel: LogLevelHostType;
622
+ readonly MSER: MSERHostType;
623
+ readonly MarkerTypes: MarkerTypesHostType;
624
+ readonly Mat: MatHostType;
625
+ readonly MatDiagType: MatDiagTypeHostType;
626
+ readonly MatExpr: MatExprHostType;
627
+ readonly MatExprRowColIndexer: MatExprRowColIndexerHostType;
628
+ readonly MatForeachFunctionByte: MatForeachFunctionByteHostType;
629
+ readonly MatForeachFunctionDouble: MatForeachFunctionDoubleHostType;
630
+ readonly MatForeachFunctionFloat: MatForeachFunctionFloatHostType;
631
+ readonly MatForeachFunctionInt16: MatForeachFunctionInt16HostType;
632
+ readonly MatForeachFunctionInt32: MatForeachFunctionInt32HostType;
633
+ readonly MatForeachFunctionVec2b: MatForeachFunctionVec2bHostType;
634
+ readonly MatForeachFunctionVec2d: MatForeachFunctionVec2dHostType;
635
+ readonly MatForeachFunctionVec2f: MatForeachFunctionVec2fHostType;
636
+ readonly MatForeachFunctionVec2i: MatForeachFunctionVec2iHostType;
637
+ readonly MatForeachFunctionVec2s: MatForeachFunctionVec2sHostType;
638
+ readonly MatForeachFunctionVec3b: MatForeachFunctionVec3bHostType;
639
+ readonly MatForeachFunctionVec3d: MatForeachFunctionVec3dHostType;
640
+ readonly MatForeachFunctionVec3f: MatForeachFunctionVec3fHostType;
641
+ readonly MatForeachFunctionVec3i: MatForeachFunctionVec3iHostType;
642
+ readonly MatForeachFunctionVec3s: MatForeachFunctionVec3sHostType;
643
+ readonly MatForeachFunctionVec4b: MatForeachFunctionVec4bHostType;
644
+ readonly MatForeachFunctionVec4d: MatForeachFunctionVec4dHostType;
645
+ readonly MatForeachFunctionVec4f: MatForeachFunctionVec4fHostType;
646
+ readonly MatForeachFunctionVec4i: MatForeachFunctionVec4iHostType;
647
+ readonly MatForeachFunctionVec4s: MatForeachFunctionVec4sHostType;
648
+ readonly MatForeachFunctionVec6b: MatForeachFunctionVec6bHostType;
649
+ readonly MatForeachFunctionVec6d: MatForeachFunctionVec6dHostType;
650
+ readonly MatForeachFunctionVec6f: MatForeachFunctionVec6fHostType;
651
+ readonly MatForeachFunctionVec6i: MatForeachFunctionVec6iHostType;
652
+ readonly MatForeachFunctionVec6s: MatForeachFunctionVec6sHostType;
653
+ readonly MatIndexer: MatIndexerHostType<any>;
654
+ readonly MatMemoryManager: MatMemoryManagerHostType<any>;
655
+ readonly MatType: MatTypeHostType;
656
+ readonly MergeDebevec: MergeDebevecHostType;
657
+ readonly MergeExposures: MergeExposuresHostType;
658
+ readonly MergeMertens: MergeMertensHostType;
659
+ readonly Moments: MomentsHostType;
660
+ readonly MorphShapes: MorphShapesHostType;
661
+ readonly MorphTypes: MorphTypesHostType;
662
+ readonly MotionTypes: MotionTypesHostType;
663
+ readonly MouseCallback: MouseCallbackHostType;
664
+ readonly MouseEventFlags: MouseEventFlagsHostType;
665
+ readonly MouseEventTypes: MouseEventTypesHostType;
666
+ readonly NeighborSearchMethod: NeighborSearchMethodHostType;
667
+ readonly NextEdgeType: NextEdgeTypeHostType;
668
+ readonly NormTypes: NormTypesHostType;
669
+ readonly ORB: ORBHostType;
670
+ readonly ORBScoreType: ORBScoreTypeHostType;
671
+ readonly OpenCVException: OpenCVExceptionHostType;
672
+ readonly OpenCvSharpException: OpenCvSharpExceptionHostType;
673
+ readonly OpticalFlowFlags: OpticalFlowFlagsHostType;
674
+ readonly OutputArray: OutputArrayHostType;
675
+ readonly OutputArrayOfMatList: OutputArrayOfMatListHostType;
676
+ readonly OutputArrayOfStructList: OutputArrayOfStructListHostType<any>;
677
+ readonly PCA: PCAHostType;
678
+ readonly PixelConnectivity: PixelConnectivityHostType;
679
+ readonly Point: PointHostType;
680
+ readonly Point2d: Point2dHostType;
681
+ readonly Point2f: Point2fHostType;
682
+ readonly Point3d: Point3dHostType;
683
+ readonly Point3f: Point3fHostType;
684
+ readonly Point3i: Point3iHostType;
685
+ readonly ProjectionType: ProjectionTypeHostType;
686
+ readonly Ptr: PtrHostType;
687
+ readonly PyrLKOpticalFlow: PyrLKOpticalFlowHostType;
688
+ readonly QRCodeDetector: QRCodeDetectorHostType;
689
+ readonly RNG: RNGHostType;
690
+ readonly RNG_MT19937: RNG_MT19937HostType;
691
+ readonly Range: RangeHostType;
692
+ readonly Rangef: RangefHostType;
693
+ readonly Rect: RectHostType;
694
+ readonly Rect2d: Rect2dHostType;
695
+ readonly Rect2f: Rect2fHostType;
696
+ readonly RectanglesIntersectTypes: RectanglesIntersectTypesHostType;
697
+ readonly ReduceDimension: ReduceDimensionHostType;
698
+ readonly ReduceTypes: ReduceTypesHostType;
699
+ readonly ResourcesTracker: ResourcesTrackerHostType;
700
+ readonly RetrievalModes: RetrievalModesHostType;
701
+ readonly RidgeDetectionFilter: RidgeDetectionFilterHostType;
702
+ readonly RobotWorldHandEyeCalibrationMethod: RobotWorldHandEyeCalibrationMethodHostType;
703
+ readonly RobustEstimationAlgorithms: RobustEstimationAlgorithmsHostType;
704
+ readonly RotateFlags: RotateFlagsHostType;
705
+ readonly RotatedRect: RotatedRectHostType;
706
+ readonly SVD: SVDHostType;
707
+ readonly SamplingMethod: SamplingMethodHostType;
708
+ readonly Scalar: ScalarHostType;
709
+ readonly ScoreMethod: ScoreMethodHostType;
710
+ readonly SeamlessCloneMethods: SeamlessCloneMethodsHostType;
711
+ readonly ShapeContextDistanceExtractor: ShapeContextDistanceExtractorHostType;
712
+ readonly ShapeDistanceExtractor: ShapeDistanceExtractorHostType;
713
+ readonly ShapeMatchModes: ShapeMatchModesHostType;
714
+ readonly SimilarRects: SimilarRectsHostType;
715
+ readonly SimpleBlobDetector: SimpleBlobDetectorHostType;
716
+ readonly Size: SizeHostType;
717
+ readonly Size2d: Size2dHostType;
718
+ readonly Size2f: Size2fHostType;
719
+ readonly SolveLPResult: SolveLPResultHostType;
720
+ readonly SolvePnPFlags: SolvePnPFlagsHostType;
721
+ readonly SortFlags: SortFlagsHostType;
722
+ readonly SparseMat: SparseMatHostType;
723
+ readonly SparseMatIndexer: SparseMatIndexerHostType<any>;
724
+ readonly StereoBM: StereoBMHostType;
725
+ readonly StereoMatcher: StereoMatcherHostType;
726
+ readonly StereoRectificationFlags: StereoRectificationFlagsHostType;
727
+ readonly StereoSGBM: StereoSGBMHostType;
728
+ readonly StereoSGBMMode: StereoSGBMModeHostType;
729
+ readonly Stitcher: StitcherHostType;
730
+ readonly Subdiv2D: Subdiv2DHostType;
731
+ readonly SuperResolution: SuperResolutionHostType;
732
+ readonly TemplateMatchModes: TemplateMatchModesHostType;
733
+ readonly TermCriteria: TermCriteriaHostType;
734
+ readonly TextDetector: TextDetectorHostType;
735
+ readonly TextDetectorCNN: TextDetectorCNNHostType;
736
+ readonly ThresholdTypes: ThresholdTypesHostType;
737
+ readonly Tonemap: TonemapHostType;
738
+ readonly TonemapDrago: TonemapDragoHostType;
739
+ readonly TonemapMantiuk: TonemapMantiukHostType;
740
+ readonly TonemapReinhard: TonemapReinhardHostType;
741
+ readonly TrackbarCallback: TrackbarCallbackHostType;
742
+ readonly TrackbarCallbackNative: TrackbarCallbackNativeHostType;
743
+ readonly Tracker: TrackerHostType;
744
+ readonly TrackerGOTURN: TrackerGOTURNHostType;
745
+ readonly TrackerMIL: TrackerMILHostType;
746
+ readonly UMat: UMatHostType;
747
+ readonly UMatUsageFlags: UMatUsageFlagsHostType;
748
+ readonly UsacParams: UsacParamsHostType;
749
+ readonly Vec2b: Vec2bHostType;
750
+ readonly Vec2d: Vec2dHostType;
751
+ readonly Vec2f: Vec2fHostType;
752
+ readonly Vec2i: Vec2iHostType;
753
+ readonly Vec2s: Vec2sHostType;
754
+ readonly Vec2w: Vec2wHostType;
755
+ readonly Vec3b: Vec3bHostType;
756
+ readonly Vec3d: Vec3dHostType;
757
+ readonly Vec3f: Vec3fHostType;
758
+ readonly Vec3i: Vec3iHostType;
759
+ readonly Vec3s: Vec3sHostType;
760
+ readonly Vec3w: Vec3wHostType;
761
+ readonly Vec4b: Vec4bHostType;
762
+ readonly Vec4d: Vec4dHostType;
763
+ readonly Vec4f: Vec4fHostType;
764
+ readonly Vec4i: Vec4iHostType;
765
+ readonly Vec4s: Vec4sHostType;
766
+ readonly Vec4w: Vec4wHostType;
767
+ readonly Vec6b: Vec6bHostType;
768
+ readonly Vec6d: Vec6dHostType;
769
+ readonly Vec6f: Vec6fHostType;
770
+ readonly Vec6i: Vec6iHostType;
771
+ readonly Vec6s: Vec6sHostType;
772
+ readonly Vec6w: Vec6wHostType;
773
+ readonly VideoAccelerationType: VideoAccelerationTypeHostType;
774
+ readonly VideoCapture: VideoCaptureHostType;
775
+ readonly VideoCaptureAPIs: VideoCaptureAPIsHostType;
776
+ readonly VideoCapturePara: VideoCaptureParaHostType;
777
+ readonly VideoCaptureProperties: VideoCapturePropertiesHostType;
778
+ readonly VideoWriter: VideoWriterHostType;
779
+ readonly VideoWriterPara: VideoWriterParaHostType;
780
+ readonly VideoWriterProperties: VideoWriterPropertiesHostType;
781
+ readonly WUsacParams: WUsacParamsHostType;
782
+ readonly WarpPolarMode: WarpPolarModeHostType;
783
+ readonly WeChatQRCode: WeChatQRCodeHostType;
784
+ readonly Window: WindowHostType;
785
+ readonly WindowFlags: WindowFlagsHostType;
786
+ readonly WindowPropertyFlags: WindowPropertyFlagsHostType;
787
+ };
788
+
789
+ type OpenCvSharpRoot_Aruco = PropertyBag & {
790
+ readonly CornerRefineMethod: CornerRefineMethodHostType;
791
+ readonly CvAruco: CvArucoHostType;
792
+ readonly DetectorParameters: DetectorParametersHostType;
793
+ readonly Dictionary: DictionaryHostType;
794
+ readonly PredefinedDictionaryName: PredefinedDictionaryNameHostType;
795
+ };
796
+
797
+ type OpenCvSharpRoot_Detail = PropertyBag & {
798
+ readonly AffineBestOf2NearestMatcher: AffineBestOf2NearestMatcherHostType;
799
+ readonly BestOf2NearestMatcher: BestOf2NearestMatcherHostType;
800
+ readonly Blender: BlenderHostType;
801
+ readonly BundleAdjusterBase: BundleAdjusterBaseHostType;
802
+ readonly CameraParams: CameraParamsHostType;
803
+ readonly CvDetail: CvDetailHostType;
804
+ readonly ExposureCompensator: ExposureCompensatorHostType;
805
+ readonly FeaturesFinder: FeaturesFinderHostType;
806
+ readonly FeaturesMatcher: FeaturesMatcherHostType;
807
+ readonly ImageFeatures: ImageFeaturesHostType;
808
+ readonly MatchesInfo: MatchesInfoHostType;
809
+ readonly SeamFinder: SeamFinderHostType;
810
+ readonly WImageFeatures: WImageFeaturesHostType;
811
+ readonly WarperCreator: WarperCreatorHostType;
812
+ readonly WaveCorrectKind: WaveCorrectKindHostType;
813
+ };
814
+
815
+ type OpenCvSharpRoot_Dnn = PropertyBag & {
816
+ readonly Backend: BackendHostType;
817
+ readonly CvDnn: CvDnnHostType;
818
+ readonly Net: NetHostType;
819
+ readonly Target: TargetHostType;
820
+ };
821
+
822
+ type OpenCvSharpRoot_DnnSuperres = PropertyBag & {
823
+ readonly DnnSuperResImpl: DnnSuperResImplHostType;
824
+ };
825
+
826
+ type OpenCvSharpRoot_Face = PropertyBag & {
827
+ readonly BasicFaceRecognizer: BasicFaceRecognizerHostType;
828
+ readonly EigenFaceRecognizer: EigenFaceRecognizerHostType;
829
+ readonly FaceRecognizer: FaceRecognizerHostType;
830
+ readonly Facemark: FacemarkHostType;
831
+ readonly FacemarkAAM: FacemarkAAMHostType;
832
+ readonly FacemarkLBF: FacemarkLBFHostType;
833
+ readonly FisherFaceRecognizer: FisherFaceRecognizerHostType;
834
+ readonly LBPHFaceRecognizer: LBPHFaceRecognizerHostType;
835
+ };
836
+
837
+ type OpenCvSharpRoot_Features2D = PropertyBag & {
838
+ readonly SIFT: SIFTHostType;
839
+ };
840
+
841
+ type OpenCvSharpRoot_Flann = PropertyBag & {
842
+ readonly AutotunedIndexParams: AutotunedIndexParamsHostType;
843
+ readonly CompositeIndexParams: CompositeIndexParamsHostType;
844
+ readonly FlannCentersInit: FlannCentersInitHostType;
845
+ readonly FlannDistance: FlannDistanceHostType;
846
+ readonly Index: IndexHostType;
847
+ readonly IndexParams: IndexParamsHostType;
848
+ readonly KDTreeIndexParams: KDTreeIndexParamsHostType;
849
+ readonly KMeansIndexParams: KMeansIndexParamsHostType;
850
+ readonly LinearIndexParams: LinearIndexParamsHostType;
851
+ readonly LshIndexParams: LshIndexParamsHostType;
852
+ readonly SavedIndexParams: SavedIndexParamsHostType;
853
+ readonly SearchParams: SearchParamsHostType;
854
+ };
855
+
856
+ type OpenCvSharpRoot_ImgHash = PropertyBag & {
857
+ readonly AverageHash: AverageHashHostType;
858
+ readonly BlockMeanHash: BlockMeanHashHostType;
859
+ readonly BlockMeanHashMode: BlockMeanHashModeHostType;
860
+ readonly ColorMomentHash: ColorMomentHashHostType;
861
+ readonly ImgHashBase: ImgHashBaseHostType;
862
+ readonly MarrHildrethHash: MarrHildrethHashHostType;
863
+ readonly PHash: PHashHostType;
864
+ readonly RadialVarianceHash: RadialVarianceHashHostType;
865
+ };
866
+
867
+ type OpenCvSharpRoot_Internal = PropertyBag & {
868
+ readonly Util: OpenCvSharpRoot_Internal_Util;
869
+ readonly Vectors: OpenCvSharpRoot_Internal_Vectors;
870
+ readonly ExceptionHandler: ExceptionHandlerHostType;
871
+ readonly ExceptionStatus: ExceptionStatusHostType;
872
+ readonly NativeMethods: NativeMethodsHostType;
873
+ readonly StdString: StdStringHostType;
874
+ readonly Win32Api: Win32ApiHostType;
875
+ readonly WindowsLibraryLoader: WindowsLibraryLoaderHostType;
876
+ };
877
+
878
+ type OpenCvSharpRoot_Internal_Util = PropertyBag & {
879
+ readonly ArrayAddress1: ArrayAddress1HostType<any>;
880
+ readonly ArrayAddress2: ArrayAddress2HostType<any>;
881
+ readonly PInvokeHelper: PInvokeHelperHostType;
882
+ readonly ReadOnlyArray2D: ReadOnlyArray2DHostType<any>;
883
+ readonly SaturateCast: SaturateCastHostType;
884
+ readonly ScopedGCHandle: ScopedGCHandleHostType;
885
+ };
886
+
887
+ type OpenCvSharpRoot_Internal_Vectors = PropertyBag & {
888
+ readonly IStdVector: IStdVectorHostType<any>;
889
+ readonly VectorOfByte: VectorOfByteHostType;
890
+ readonly VectorOfDMatch: VectorOfDMatchHostType;
891
+ readonly VectorOfDTreesNode: VectorOfDTreesNodeHostType;
892
+ readonly VectorOfDouble: VectorOfDoubleHostType;
893
+ readonly VectorOfFloat: VectorOfFloatHostType;
894
+ readonly VectorOfImageFeatures: VectorOfImageFeaturesHostType;
895
+ readonly VectorOfInt32: VectorOfInt32HostType;
896
+ readonly VectorOfKeyPoint: VectorOfKeyPointHostType;
897
+ readonly VectorOfMat: VectorOfMatHostType;
898
+ readonly VectorOfPoint: VectorOfPointHostType;
899
+ readonly VectorOfPoint2d: VectorOfPoint2dHostType;
900
+ readonly VectorOfPoint2f: VectorOfPoint2fHostType;
901
+ readonly VectorOfPoint3f: VectorOfPoint3fHostType;
902
+ readonly VectorOfRect: VectorOfRectHostType;
903
+ readonly VectorOfRect2d: VectorOfRect2dHostType;
904
+ readonly VectorOfRotatedRect: VectorOfRotatedRectHostType;
905
+ readonly VectorOfString: VectorOfStringHostType;
906
+ readonly VectorOfVec2f: VectorOfVec2fHostType;
907
+ readonly VectorOfVec3f: VectorOfVec3fHostType;
908
+ readonly VectorOfVec4f: VectorOfVec4fHostType;
909
+ readonly VectorOfVec4i: VectorOfVec4iHostType;
910
+ readonly VectorOfVectorByte: VectorOfVectorByteHostType;
911
+ readonly VectorOfVectorDMatch: VectorOfVectorDMatchHostType;
912
+ readonly VectorOfVectorDouble: VectorOfVectorDoubleHostType;
913
+ readonly VectorOfVectorInt32: VectorOfVectorInt32HostType;
914
+ readonly VectorOfVectorKeyPoint: VectorOfVectorKeyPointHostType;
915
+ readonly VectorOfVectorPoint: VectorOfVectorPointHostType;
916
+ readonly VectorOfVectorPoint2f: VectorOfVectorPoint2fHostType;
917
+ };
918
+
919
+ type OpenCvSharpRoot_LineDescriptor = PropertyBag & {
920
+ readonly KeyLine: KeyLineHostType;
921
+ readonly LSDParam: LSDParamHostType;
922
+ };
923
+
924
+ type OpenCvSharpRoot_ML = PropertyBag & {
925
+ readonly ANN_MLP: ANN_MLPHostType;
926
+ readonly Boost: BoostHostType;
927
+ readonly DTrees: DTreesHostType;
928
+ readonly KNearest: KNearestHostType;
929
+ readonly LogisticRegression: LogisticRegressionHostType;
930
+ readonly NormalBayesClassifier: NormalBayesClassifierHostType;
931
+ readonly ParamGrid: ParamGridHostType;
932
+ readonly RTrees: RTreesHostType;
933
+ readonly SVM: SVMHostType;
934
+ readonly SampleTypes: SampleTypesHostType;
935
+ readonly StatModel: StatModelHostType;
936
+ readonly TrainData: TrainDataHostType;
937
+ };
938
+
939
+ type OpenCvSharpRoot_OptFlow = PropertyBag & {
940
+ readonly CvOptFlow: CvOptFlowHostType;
941
+ };
942
+
943
+ type OpenCvSharpRoot_Quality = PropertyBag & {
944
+ readonly QualityBRISQUE: QualityBRISQUEHostType;
945
+ readonly QualityBase: QualityBaseHostType;
946
+ readonly QualityGMSD: QualityGMSDHostType;
947
+ readonly QualityMSE: QualityMSEHostType;
948
+ readonly QualityPSNR: QualityPSNRHostType;
949
+ readonly QualitySSIM: QualitySSIMHostType;
950
+ };
951
+
952
+ type OpenCvSharpRoot_Segmentation = PropertyBag & {
953
+ readonly IntelligentScissorsMB: IntelligentScissorsMBHostType;
954
+ };
955
+
956
+ type OpenCvSharpRoot_Text = PropertyBag & {
957
+ readonly BaseOCR: BaseOCRHostType;
958
+ readonly ComponentLevels: ComponentLevelsHostType;
959
+ readonly CvText: CvTextHostType;
960
+ readonly OCRTesseract: OCRTesseractHostType;
961
+ };
962
+
963
+ type OpenCvSharpRoot_Tracking = PropertyBag & {
964
+ readonly TrackerCSRT: TrackerCSRTHostType;
965
+ readonly TrackerKCF: TrackerKCFHostType;
966
+ readonly TrackerTypes: TrackerTypesHostType;
967
+ };
968
+
969
+ type OpenCvSharpRoot_XFeatures2D = PropertyBag & {
970
+ readonly BriefDescriptorExtractor: BriefDescriptorExtractorHostType;
971
+ readonly FREAK: FREAKHostType;
972
+ readonly LATCH: LATCHHostType;
973
+ readonly LUCID: LUCIDHostType;
974
+ readonly SURF: SURFHostType;
975
+ readonly StarDetector: StarDetectorHostType;
976
+ };
977
+
978
+ type OpenCvSharpRoot_XImgProc = PropertyBag & {
979
+ readonly Segmentation: OpenCvSharpRoot_XImgProc_Segmentation;
980
+ readonly AdaptiveManifoldFilter: AdaptiveManifoldFilterHostType;
981
+ readonly AngleRangeOption: AngleRangeOptionHostType;
982
+ readonly CvXImgProc: CvXImgProcHostType;
983
+ readonly DTFilter: DTFilterHostType;
984
+ readonly EdgeAwareFiltersList: EdgeAwareFiltersListHostType;
985
+ readonly EdgeBoxes: EdgeBoxesHostType;
986
+ readonly FastBilateralSolverFilter: FastBilateralSolverFilterHostType;
987
+ readonly FastGlobalSmootherFilter: FastGlobalSmootherFilterHostType;
988
+ readonly FastLineDetector: FastLineDetectorHostType;
989
+ readonly GuidedFilter: GuidedFilterHostType;
990
+ readonly HoughDeskewOption: HoughDeskewOptionHostType;
991
+ readonly HoughOP: HoughOPHostType;
992
+ readonly LocalBinarizationMethods: LocalBinarizationMethodsHostType;
993
+ readonly RFFeatureGetter: RFFeatureGetterHostType;
994
+ readonly RulesOption: RulesOptionHostType;
995
+ readonly SLICType: SLICTypeHostType;
996
+ readonly StructuredEdgeDetection: StructuredEdgeDetectionHostType;
997
+ readonly SuperpixelLSC: SuperpixelLSCHostType;
998
+ readonly SuperpixelSEEDS: SuperpixelSEEDSHostType;
999
+ readonly SuperpixelSLIC: SuperpixelSLICHostType;
1000
+ readonly ThinningTypes: ThinningTypesHostType;
1001
+ readonly WMFWeightType: WMFWeightTypeHostType;
1002
+ };
1003
+
1004
+ type OpenCvSharpRoot_XImgProc_Segmentation = PropertyBag & {
1005
+ readonly GraphSegmentation: GraphSegmentationHostType;
1006
+ readonly SelectiveSearchSegmentation: SelectiveSearchSegmentationHostType;
1007
+ readonly SelectiveSearchSegmentationStrategy: SelectiveSearchSegmentationStrategyHostType;
1008
+ readonly SelectiveSearchSegmentationStrategyColor: SelectiveSearchSegmentationStrategyColorHostType;
1009
+ readonly SelectiveSearchSegmentationStrategyFill: SelectiveSearchSegmentationStrategyFillHostType;
1010
+ readonly SelectiveSearchSegmentationStrategyMultiple: SelectiveSearchSegmentationStrategyMultipleHostType;
1011
+ readonly SelectiveSearchSegmentationStrategySize: SelectiveSearchSegmentationStrategySizeHostType;
1012
+ readonly SelectiveSearchSegmentationStrategyTexture: SelectiveSearchSegmentationStrategyTextureHostType;
1013
+ };
1014
+
1015
+ type OpenCvSharpRoot_XPhoto = PropertyBag & {
1016
+ readonly Bm3dSteps: Bm3dStepsHostType;
1017
+ readonly CvXPhoto: CvXPhotoHostType;
1018
+ readonly GrayworldWB: GrayworldWBHostType;
1019
+ readonly InpaintTypes: InpaintTypesHostType;
1020
+ readonly LearningBasedWB: LearningBasedWBHostType;
1021
+ readonly SimpleWB: SimpleWBHostType;
1022
+ readonly TonemapDurand: TonemapDurandHostType;
1023
+ readonly TransformTypes: TransformTypesHostType;
1024
+ readonly WhiteBalancer: WhiteBalancerHostType;
1025
+ };
1026
+
1027
+ declare global {
1028
+ /**
1029
+ * OpenCvSharp 类型集合宿主对象
1030
+ * @since 0.50.0
1031
+ */
1032
+ const OpenCvSharp: OpenCvSharpCollection;
1033
+ }
1034
+
1035
+ export {};