apple_vision_hand 0.0.1 copy "apple_vision_hand: ^0.0.1" to clipboard
apple_vision_hand: ^0.0.1 copied to clipboard

A Flutter plugin to use Apple Vision Hand Detection to detect a single hand and fingers in an image or video stream, and identify key distal features.

example/lib/main.dart

import 'package:example/visionHand.dart';
import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: VisionHand()
    );
  }
}
1
likes
0
pub points
33%
popularity

Publisher

unverified uploader

A Flutter plugin to use Apple Vision Hand Detection to detect a single hand and fingers in an image or video stream, and identify key distal features.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

apple_vision_commons, flutter

More

Packages that depend on apple_vision_hand