whitecodel_image_compare 1.0.0 copy "whitecodel_image_compare: ^1.0.0" to clipboard
whitecodel_image_compare: ^1.0.0 copied to clipboard

Flutter image similarity — combines OpenCV pixel matching, perceptual hashes, and optional OCR into one tuned pipeline with production-ready performance.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'compare_lab_screen.dart';

void main() {
  runApp(const ImageCompareLabApp());
}

class ImageCompareLabApp extends StatelessWidget {
  const ImageCompareLabApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Image Compare Lab',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.teal),
        useMaterial3: true,
      ),
      home: const CompareLabScreen(),
    );
  }
}
3
likes
0
points
104
downloads

Publisher

verified publisherwhitecodel.com

Weekly Downloads

Flutter image similarity — combines OpenCV pixel matching, perceptual hashes, and optional OCR into one tuned pipeline with production-ready performance.

Repository (GitHub)
View/report issues

Topics

#image #comparison #opencv #ocr #computer-vision

License

unknown (license)

Dependencies

ffi, flutter, image, image_hash

More

Packages that depend on whitecodel_image_compare

Packages that implement whitecodel_image_compare