hybrid_vision 0.1.0 hybrid_vision: ^0.1.0 copied to clipboard
Apply computer vision algorithms to perform a variety of tasks on input images and video.
import 'package:flutter/material.dart';
import 'view/view.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: BarcodeView(),
);
}
}