This repository was archived by the owner on Mar 19, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- ## 0.1.0
1+ ## 0.1.2
2+
3+ * [ Fix] Remove unused variables and update preparations for package uploads
4+ ## 0.1.1
25
36* [ Fix] Fixed a memory leak on some devices
47
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ packages:
156156 path: ".."
157157 relative: true
158158 source: path
159- version: "0.1.1 "
159+ version: "0.1.2 "
160160 flutter_plugin_android_lifecycle:
161161 dependency: transitive
162162 description:
Original file line number Diff line number Diff line change @@ -133,10 +133,4 @@ class PixelMatchingBindings {
133133 late final _disposePtr =
134134 _lookup< ffi.NativeFunction <ffi.Void Function ()>> ('dispose' );
135135 late final _dispose = _disposePtr.asFunction< void Function ()> ();
136- }
137-
138- const int __bool_true_false_are_defined = 1 ;
139-
140- const int true1 = 1 ;
141-
142- const int false1 = 0 ;
136+ }
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ class _PixelMatchingClient {
135135 _imageBufferSize = bytes.length;
136136 _imageBuffer ?? = malloc.allocate <Uint8 >(_imageBufferSize);
137137 _imageType ?? = imageType.toNativeUtf8 ();
138+ _imageTypeString = imageType;
138139
139140 // 이미지 내용 복사
140141 var imageBufferList = _imageBuffer! .asTypedList (_imageBufferSize);
@@ -151,9 +152,7 @@ class _PixelMatchingClient {
151152 imglib.Image ? getMarkerQueryDifferenceImage () {
152153 _debugImageLen ?? = malloc.allocate <Int >(1 );
153154 _debugImageLen? .value = 0 ;
154- print ("getMarkerQueryDifferenceImage len: ${_debugImageLen ?.value }" );
155155 final imgPointer = _native.getMarkerQueryDifferenceImage (_debugImageLen! );
156- print ("getMarkerQueryDifferenceImage len: ${_debugImageLen ?.value }" );
157156 if (imgPointer.address == nullptr.address) {
158157 return null ;
159158 }
Original file line number Diff line number Diff line change 11name : flutter_pixelmatching
22description : Module to perform feature matching using OpenCV
3- version : 0.1.1
3+ version : 0.1.2
44homepage : https://github.com/lowapple/flutter_pixelmatching
55
66environment :
You can’t perform that action at this time.
0 commit comments