You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 19, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,30 @@
1
1
# Flutter PixelMatching
2
2
3
-
| Module to perform feature matching using OpenCV
4
-
## Example
3
+
> Module to perform feature matching using OpenCV
5
4
5
+
An image comparison module written as an exercise in Flutter FFI and out of a need for that functionality. It is called PixelMatching, but it is actually a FeatureMatching module utilizing OpenCV. Isolate was utilized for asynchronous processing.
6
+
For the internal functionality, it was written in C++.
7
+
8
+
The matching algorithm is using **FLannBasedMatcher**, and for the detector, **Andorid uses SIFT****iOS uses KAZE**.
9
+
10
+
There is currently no method to change the algorithm, so if you want to change the algorithm and test it, please refer to `ios/Classes/src/ImageProcessor.cpp` and change it.
0 commit comments