gitextract_xm4onwg5/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── actions/ │ │ └── setup/ │ │ └── action.yml │ └── workflows/ │ ├── ci.yml │ └── nextjs.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn/ │ └── releases/ │ └── yarn-4.4.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android/ │ ├── CMakeLists.txt │ ├── build.gradle │ ├── cpp-adapter.cpp │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ └── src/ │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifestNew.xml │ │ └── java/ │ │ └── com/ │ │ └── fastopencv/ │ │ ├── FastOpencvModule.kt │ │ └── FastOpencvPackage.kt │ ├── newarch/ │ │ └── FastOpencvSpec.kt │ └── oldarch/ │ └── FastOpencvSpec.kt ├── babel.config.js ├── cpp/ │ ├── ConvertImage.cpp │ ├── ConvertImage.hpp │ ├── FOCV_Function.cpp │ ├── FOCV_Function.hpp │ ├── FOCV_FunctionArguments.cpp │ ├── FOCV_FunctionArguments.hpp │ ├── FOCV_Ids.cpp │ ├── FOCV_Ids.hpp │ ├── FOCV_JsiObject.cpp │ ├── FOCV_JsiObject.hpp │ ├── FOCV_Object.cpp │ ├── FOCV_Object.hpp │ ├── FOCV_Storage.cpp │ ├── FOCV_Storage.hpp │ ├── UUID.cpp │ ├── UUID.hpp │ ├── jsi/ │ │ ├── Promise.cpp │ │ ├── Promise.h │ │ ├── TypedArray.cpp │ │ └── TypedArray.h │ ├── react-native-fast-opencv.cpp │ └── react-native-fast-opencv.h ├── docs/ │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _meta.json │ │ ├── apidetails.md │ │ ├── availablefunctions.md │ │ ├── customized.md │ │ ├── examples/ │ │ │ ├── _meta.json │ │ │ ├── blur.md │ │ │ └── realtimedetection.md │ │ ├── index.md │ │ ├── installation/ │ │ │ ├── _meta.json │ │ │ ├── visioncamera.md │ │ │ └── worklets.md │ │ ├── installation.md │ │ └── usage.md │ └── theme.config.jsx ├── example/ │ ├── .bundle/ │ │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── fastopencv/ │ │ │ │ └── example/ │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── rn_edit_text_material.xml │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios/ │ │ ├── .xcode.env │ │ ├── .xcode.env.local │ │ ├── AppDelegate.swift │ │ ├── FastOpencvExample/ │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── FastOpencvExample-Bridging-Header.h │ │ ├── FastOpencvExample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── FastOpencvExample.xcscheme │ │ ├── FastOpencvExample.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── FastOpencvExampleTests/ │ │ │ ├── FastOpencvExampleTests.m │ │ │ └── Info.plist │ │ ├── File.swift │ │ └── Podfile │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ └── src/ │ ├── App.tsx │ ├── examples/ │ │ ├── CameraPassthrough.tsx │ │ ├── CameraRealtimeDetection.tsx │ │ ├── DocumentDetection.tsx │ │ └── ImageExample.tsx │ ├── home/ │ │ ├── Home.tsx │ │ └── Item.tsx │ └── types.ts ├── ios/ │ ├── FastOpencv.h │ └── FastOpencv.mm ├── lefthook.yml ├── package.json ├── react-native-fast-opencv.podspec ├── src/ │ ├── NativeFastOpencv.ts │ ├── constants/ │ │ ├── ColorConversionsCodes.ts │ │ ├── Core.ts │ │ ├── DataTypes.ts │ │ ├── ImageProcessing.ts │ │ └── ImageTransform.ts │ ├── functions/ │ │ ├── ColorConversion.ts │ │ ├── Core.ts │ │ └── ImageProcessing/ │ │ ├── ColorMap.ts │ │ ├── Drawing.ts │ │ ├── Feature.ts │ │ ├── ImageFiltering.ts │ │ ├── ImageTransform.ts │ │ ├── Misc.ts │ │ ├── ObjectDetection.ts │ │ └── Shape.ts │ ├── index.tsx │ ├── objects/ │ │ ├── ObjectType.ts │ │ └── Objects.ts │ └── utils/ │ └── UtilsFunctions.ts ├── tsconfig.build.json ├── tsconfig.json └── turbo.json