You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"QR Code Autozoom is a Flutter application that addresses the challenge of intelligent autozoom in the camera. Inspired by the problem statement, the app enables users to take pictures of objects, specifically focusing on scenarios like capturing images of dogs or cats. In this app, I have used a QR code detection model inspired by Google Pay's autozoom feature. The app utilizes Ultralytics YOLO v8 model to intelligently autozoom to the right size, ensuring that the object in view is captured with optimal clarity.",
32
-
style:GoogleFonts.montserrat(fontSize:18),
33
-
textAlign:TextAlign.justify,
34
-
),
35
-
SizedBox(
36
-
height:MediaQuery.of(context).size.height *0.05,
37
-
),
38
-
GestureDetector(
39
-
onTap: () =>Get.toNamed('/qrautozoom'),
40
-
child:CircleAvatar(
41
-
backgroundColor:Colors.grey.shade200,
42
-
radius:40,
43
-
child:constIcon(
44
-
Icons.arrow_forward_ios,
45
-
size:52,
20
+
Column(
21
+
crossAxisAlignment:CrossAxisAlignment.center,
22
+
mainAxisAlignment:MainAxisAlignment.center,
23
+
children: [
24
+
SizedBox(
25
+
height:MediaQuery.of(context).size.height *0.1,
26
+
),
27
+
Text(
28
+
"Camera with intelligent autozoom in Flutter",
29
+
style:GoogleFonts.nunito(
30
+
fontSize:28, fontWeight:FontWeight.w600),
31
+
textAlign:TextAlign.center,
46
32
),
33
+
SizedBox(
34
+
height:MediaQuery.of(context).size.height *0.05,
35
+
),
36
+
Text(
37
+
"QR Code Autozoom is a Flutter application that addresses the challenge of intelligent autozoom in the camera. Inspired by the problem statement, the app enables users to take pictures of objects, specifically focusing on scenarios like capturing images of dogs or cats. In this app, I have used a QR code detection model inspired by Google Pay's autozoom feature. The app utilizes Ultralytics YOLO v8 model to intelligently recognize QR codes, ensuring that the object in view is captured with optimal clarity.",
0 commit comments