1
1
import 'dart:convert' ;
2
2
import 'dart:math' ;
3
3
4
- import 'package:admin/models/user_data.dart' ;
5
- import 'package:admin/utils.dart' ;
6
- import 'package:flutter/cupertino.dart' ;
7
4
import 'package:flutter/foundation.dart' ;
8
5
import 'package:flutter/material.dart' ;
9
- import 'package:flutter/widgets.dart' ;
10
6
import 'package:http/http.dart' as http;
11
7
import 'package:image/image.dart' as img;
12
8
9
+ import '../../../models/user_data.dart' ;
10
+ import '../../../utils.dart' ;
11
+
13
12
class SelectTheAreaGame extends StatefulWidget {
14
13
const SelectTheAreaGame ({super .key});
15
14
@@ -53,7 +52,6 @@ class _CircleImageComparisonScreenState extends State<SelectTheAreaGame> {
53
52
void initState () {
54
53
super .initState ();
55
54
_loadImages ();
56
- checkImages ();
57
55
}
58
56
59
57
void _getPixelsTypeCount () {
@@ -81,10 +79,10 @@ class _CircleImageComparisonScreenState extends State<SelectTheAreaGame> {
81
79
// 3: (0, 255, 0), # Tumor Stroma
82
80
// 4: (0, 255, 255), # Others
83
81
84
- // Select randomly one of the tissues pixelCount exept 0
85
- final List <int > keysTissueTypes = pixelCount.keys.toList ().. remove ( 0 );
86
- final int randomIndex = Random (). nextInt (tissueTypes.length - 1 );
87
- indexTissueToFind = keysTissueTypes[randomIndex ];
82
+ // Select randomly one of the keys in pixelCount exept 0
83
+ final List <int > pixelValues = pixelCount.keys.toList ();
84
+ pixelValues. remove ( 0 );
85
+ indexTissueToFind = pixelValues[ Random (). nextInt (pixelValues.length) ];
88
86
89
87
if (kDebugMode) {
90
88
final String tissueName = tissueTypes[indexTissueToFind]! ;
@@ -93,49 +91,53 @@ class _CircleImageComparisonScreenState extends State<SelectTheAreaGame> {
93
91
}
94
92
}
95
93
94
+ void _processImageResponse (Map <String , dynamic > jsonImageResponse) {
95
+ setState (() {
96
+ imageBytes = base64Decode (jsonImageResponse['rows' ]! [0 ][1 ] as String );
97
+ maskImageBytes = base64Decode (jsonImageResponse['rows' ]! [0 ][2 ] as String );
98
+ cmappedMaskImageBytes =
99
+ base64Decode (jsonImageResponse['rows' ]! [0 ][3 ] as String );
100
+
101
+ fullImage = img.decodeImage (imageBytes);
102
+ maskImage = img.decodeImage (maskImageBytes);
103
+ cmappedMaskImage = img.decodeImage (cmappedMaskImageBytes);
104
+ displayedFullImage = Image .memory (
105
+ imageBytes,
106
+ fit: BoxFit .cover,
107
+ width: 600 ,
108
+ height: 600 ,
109
+ );
110
+
111
+ displayedCmappedMaskImage = Image .memory (
112
+ cmappedMaskImageBytes,
113
+ fit: BoxFit .cover,
114
+ width: 600 ,
115
+ height: 600 ,
116
+ );
117
+ });
118
+ }
119
+
96
120
Future <void > _loadImages () async {
97
- final http.Response response = await http.get (
98
- Uri .parse ('https://microcosm-backend.gmichele.com/get/low/random/' ));
99
-
100
- final Map <String , dynamic > jsonImageResponse =
101
- jsonDecode (response.body) as Map <String , dynamic >;
102
-
103
- imageBytes = base64Decode (jsonImageResponse['rows' ]! [0 ][1 ] as String );
104
- maskImageBytes = base64Decode (jsonImageResponse['rows' ]! [0 ][2 ] as String );
105
- cmappedMaskImageBytes =
106
- base64Decode (jsonImageResponse['rows' ]! [0 ][3 ] as String );
107
-
108
- fullImage = img.decodeImage (imageBytes);
109
- maskImage = img.decodeImage (maskImageBytes);
110
- cmappedMaskImage = img.decodeImage (cmappedMaskImageBytes);
111
-
112
- displayedFullImage = Image .memory (
113
- imageBytes,
114
- fit: BoxFit .cover,
115
- width: 600 ,
116
- height: 600 ,
117
- );
121
+ bool keepLoading = true ;
118
122
119
- displayedCmappedMaskImage = Image .memory (
120
- cmappedMaskImageBytes,
121
- fit: BoxFit .cover,
122
- width: 600 ,
123
- height: 600 ,
124
- );
125
- }
123
+ while (keepLoading) {
124
+ final http.Response response = await http.get (
125
+ Uri .parse ('https://microcosm-backend.gmichele.com/get/low/random/' ));
126
126
127
- void checkImages () {
128
- // If there is only one type of tissue, reload the images
129
- _getPixelsTypeCount ();
127
+ final Map <String , dynamic > jsonImageResponse =
128
+ jsonDecode (response.body) as Map <String , dynamic >;
130
129
131
- if (pixelCount.length == 1 ) {
132
- _loadImages ();
133
- }
130
+ _processImageResponse (jsonImageResponse);
131
+ _getPixelsTypeCount ();
134
132
135
- if (fullImage == null || maskImage == null || cmappedMaskImage == null ) {
136
- _loadImages ();
133
+ // Check if 0 is the only pixel value
134
+ if (pixelCount.length == 1 && pixelCount.containsKey (0 )) {
135
+ continue ;
136
+ }
137
+
138
+ _getTissueToFind ();
139
+ break ;
137
140
}
138
- _getTissueToFind ();
139
141
}
140
142
141
143
void _onPanStart (DragStartDetails details) {
@@ -283,20 +285,13 @@ class _CircleImageComparisonScreenState extends State<SelectTheAreaGame> {
283
285
),
284
286
),
285
287
),
286
- //Lorem Ipsum with title
287
-
288
- Container (
289
- height: 500 ,
290
- width: 500 ,
291
- child: const Text (
292
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. '
293
- 'Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '
294
- 'Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. '
295
- 'Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. '
296
- 'Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.' ,
297
- overflow: TextOverflow .visible,
298
- maxLines: 20 ,
299
- ),
288
+ // Give an explanation of the game and the tissue to find
289
+ Column (
290
+ children: < Widget > [
291
+ const Text ('Find the Tissue Type:' ),
292
+ const SizedBox (height: 10 ),
293
+ Text (tissueTypes[indexTissueToFind]! ),
294
+ ],
300
295
),
301
296
],
302
297
),
0 commit comments