-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathimage_detection_page.dart
86 lines (76 loc) · 2.59 KB
/
image_detection_page.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import 'dart:async';
import 'package:arkit_plugin/arkit_plugin.dart';
import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' as vector;
class ImageDetectionPage extends StatefulWidget {
@override
_ImageDetectionPageState createState() => _ImageDetectionPageState();
}
class _ImageDetectionPageState extends State<ImageDetectionPage> {
late ARKitController arkitController;
Timer? timer;
bool anchorWasFound = false;
@override
void dispose() {
timer?.cancel();
arkitController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(title: const Text('Image Detection Sample')),
body: Container(
child: Stack(
fit: StackFit.expand,
children: [
ARKitSceneView(
detectionImagesGroupName: 'AR Resources',
onARKitViewCreated: onARKitViewCreated,
),
anchorWasFound
? Container()
: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'Point the camera at the earth image from the article about Earth on Wikipedia.',
style: Theme.of(context)
.textTheme
.headlineSmall
?.copyWith(color: Colors.white),
),
),
],
),
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
this.arkitController.onAddNodeForAnchor = onAnchorWasFound;
}
void onAnchorWasFound(ARKitAnchor anchor) {
if (anchor is ARKitImageAnchor) {
setState(() => anchorWasFound = true);
final material = ARKitMaterial(
lightingModelName: ARKitLightingModel.lambert,
diffuse: ARKitMaterialProperty.image('earth.jpg'),
);
final sphere = ARKitSphere(
materials: [material],
radius: 0.1,
);
final earthPosition = anchor.transform.getColumn(3);
final node = ARKitNode(
geometry: sphere,
position:
vector.Vector3(earthPosition.x, earthPosition.y, earthPosition.z),
eulerAngles: vector.Vector3.zero(),
);
arkitController.add(node);
timer = Timer.periodic(const Duration(milliseconds: 50), (timer) {
final old = node.eulerAngles;
final eulerAngles = vector.Vector3(old.x + 0.01, old.y, old.z);
node.eulerAngles = eulerAngles;
});
}
}
}