Unable to convert [UInt8] to String. Error: EXC_BAD_ACCESS - ios

I am trying to convert a UInt8 array to string but it is returning me nil.
func send(data: [UInt8]?) {
if(data == nil || data?.count == 0) { return }
let dataString = String(data: Data(bytes: data!, count: data!.count), encoding : String.Encoding.utf8)
print("DataString: \(dataString ?? "J[]")")
if(self.webSocket != nil) {
self.webSocket!.send(text: dataString ?? "J[]" )
}
}
when this function is called it has the input as
Optional<Array<UInt8>>
▿ some : 471 elements
- 0 : 68
- 1 : 31
- 2 : 139
- 3 : 8
- 4 : 0
- 5 : 0
- 6 : 0
- 7 : 0
- 8 : 0
- 9 : 0
- 10 : 19
- 11 : 117
- 12 : 148
- 13 : 201
- 14 : 82
- 15 : 228
- 16 : 48
- 17 : 12
- 18 : 134
- 19 : 223
- 20 : 197
- 21 : 103
- 22 : 29
- 23 : 108
- 24 : 45
- 25 : 142
- 26 : 211
- 27 : 199
- 28 : 169
- 29 : 225
- 30 : 1
- 31 : 88
- 32 : 102
- 33 : 46
- 34 : 20
- 35 : 135
- 36 : 0
- 37 : 125
- 38 : 27
- 39 : 104
- 40 : 10
- 41 : 194
- 42 : 129
- 43 : 162
- 44 : 120
- 45 : 119
- 46 : 36
- 47 : 47
- 48 : 77
- 49 : 22
- 50 : 79
- 51 : 37
- 52 : 94
- 53 : 218
- 54 : 95
- 55 : 44
- 56 : 75
- 57 : 191
- 58 : 228
- 59 : 190
- 60 : 253
- 61 : 116
- 62 : 243
- 63 : 155
- 64 : 59
- 65 : 4
- 66 : 225
- 67 : 68
- 68 : 126
- 69 : 148
- 70 : 72
- 71 : 41
- 72 : 50
- 73 : 184
- 74 : 199
- 75 : 105
- 76 : 158
- 77 : 220
- 78 : 225
- 79 : 211
- 80 : 221
- 81 : 127
- 82 : 204
- 83 : 71
- 84 : 165
- 85 : 183
- 86 : 40
- 87 : 2
- 88 : 24
- 89 : 34
- 90 : 228
- 91 : 17
- 92 : 5
- 93 : 136
- 94 : 64
- 95 : 16
- 96 : 226
- 97 : 8
- 98 : 1
- 99 : 61
- 100 : 4
- 101 : 47
- 102 : 218
- 103 : 16
- 104 : 188
- 105 : 62
- 106 : 195
- 107 : 96
- 108 : 175
- 109 : 7
- 110 : 46
- 111 : 63
- 112 : 61
- 113 : 36
- 114 : 109
- 115 : 33
- 116 : 128
- 117 : 62
- 118 : 162
- 119 : 179
- 120 : 182
- 121 : 26
- 122 : 235
- 123 : 24
- 124 : 56
- 125 : 26
- 126 : 138
- 127 : 11
- 128 : 52
- 129 : 54
- 130 : 164
- 131 : 7
- 132 : 40
- 133 : 178
- 134 : 253
- 135 : 212
- 136 : 150
- 137 : 106
- 138 : 179
- 139 : 30
- 140 : 109
- 141 : 143
- 142 : 44
- 143 : 64
- 144 : 30
- 145 : 163
- 146 : 237
- 147 : 193
- 148 : 161
- 149 : 135
- 150 : 6
- 151 : 155
- 152 : 179
- 153 : 223
- 154 : 152
- 155 : 195
- 156 : 58
- 157 : 227
- 158 : 113
- 159 : 225
- 160 : 194
- 161 : 112
- 162 : 222
- 163 : 147
- 164 : 20
- 165 : 137
- 166 : 95
- 167 : 32
- 168 : 244
- 169 : 141
- 170 : 37
- 171 : 85
- 172 : 3
- 173 : 194
- 174 : 216
- 175 : 119
- 176 : 143
- 177 : 36
- 178 : 171
- 179 : 162
- 180 : 58
- 181 : 108
- 182 : 220
- 183 : 64
- 184 : 175
- 185 : 1
- 186 : 83
- 187 : 4
- 188 : 26
- 189 : 118
- 190 : 144
- 191 : 33
- 192 : 22
- 193 : 89
- 194 : 36
- 195 : 171
- 196 : 26
- 197 : 117
- 198 : 8
- 199 : 88
- 200 : 154
- 201 : 87
- 202 : 63
- 203 : 124
- 204 : 54
- 205 : 175
- 206 : 70
- 207 : 147
- 208 : 13
- 209 : 172
- 210 : 64
- 211 : 213
- 212 : 9
- 213 : 62
- 214 : 3
- 215 : 66
- 216 : 144
- 217 : 102
- 218 : 44
- 219 : 7
- 220 : 128
- 221 : 155
- 222 : 99
- 223 : 23
- 224 : 11
- 225 : 26
- 226 : 169
- 227 : 70
- 228 : 164
- 229 : 186
- 230 : 115
- 231 : 202
- 232 : 125
- 233 : 209
- 234 : 219
- 235 : 150
- 236 : 82
- 237 : 102
- 238 : 17
- 239 : 36
- 240 : 213
- 241 : 143
- 242 : 116
- 243 : 98
- 244 : 235
- 245 : 163
- 246 : 217
- 247 : 95
- 248 : 33
- 249 : 201
- 250 : 8
- 251 : 219
- 252 : 102
- 253 : 82
- 254 : 79
- 255 : 200
- 256 : 50
- 257 : 198
- 258 : 59
- 259 : 225
- 260 : 209
- 261 : 142
- 262 : 46
- 263 : 112
- 264 : 159
- 265 : 21
- 266 : 204
- 267 : 177
- 268 : 152
- 269 : 26
- 270 : 220
- 271 : 79
- 272 : 139
- 273 : 161
- 274 : 181
- 275 : 194
- 276 : 1
- 277 : 34
- 278 : 215
- 279 : 202
- 280 : 225
- 281 : 85
- 282 : 174
- 283 : 216
- 284 : 252
- 285 : 23
- 286 : 95
- 287 : 29
- 288 : 54
- 289 : 74
- 290 : 251
- 291 : 180
- 292 : 233
- 293 : 129
- 294 : 41
- 295 : 51
- 296 : 238
- 297 : 177
- 298 : 44
- 299 : 51
- 300 : 75
- 301 : 118
- 302 : 224
- 303 : 199
- 304 : 172
- 305 : 214
- 306 : 83
- 307 : 54
- 308 : 85
- 309 : 74
- 310 : 213
- 311 : 244
- 312 : 222
- 313 : 196
- 314 : 16
- 315 : 48
- 316 : 101
- 317 : 136
- 318 : 157
- 319 : 248
- 320 : 44
- 321 : 2
- 322 : 99
- 323 : 212
- 324 : 221
- 325 : 168
- 326 : 142
- 327 : 24
- 328 : 228
- 329 : 46
- 330 : 180
- 331 : 242
- 332 : 87
- 333 : 56
- 334 : 108
- 335 : 148
- 336 : 17
- 337 : 104
- 338 : 247
- 339 : 102
- 340 : 91
- 341 : 122
- 342 : 132
- 343 : 103
- 344 : 20
- 345 : 124
- 346 : 207
- 347 : 151
- 348 : 88
- 349 : 33
- 350 : 242
- 351 : 57
- 352 : 192
- 353 : 96
- 354 : 25
- 355 : 104
- 356 : 184
- 357 : 132
- 358 : 97
- 359 : 10
- 360 : 252
- 361 : 136
- 362 : 195
- 363 : 160
- 364 : 121
- 365 : 211
- 366 : 151
- 367 : 83
- 368 : 51
- 369 : 205
- 370 : 241
- 371 : 191
- 372 : 56
- 373 : 174
- 374 : 175
- 375 : 15
- 376 : 215
- 377 : 146
- 378 : 178
- 379 : 62
- 380 : 149
- 381 : 227
- 382 : 161
- 383 : 123
- 384 : 91
- 385 : 98
- 386 : 49
- 387 : 184
- 388 : 190
- 389 : 14
- 390 : 82
- 391 : 9
- 392 : 237
- 393 : 8
- 394 : 233
- 395 : 181
- 396 : 195
- 397 : 124
- 398 : 215
- 399 : 145
- 400 : 250
- 401 : 117
- 402 : 19
- 403 : 169
- 404 : 36
- 405 : 241
- 406 : 14
- 407 : 220
- 408 : 243
- 409 : 244
- 410 : 116
- 411 : 116
- 412 : 7
- 413 : 247
- 414 : 247
- 415 : 52
- 416 : 31
- 417 : 95
- 418 : 29
- 419 : 184
- 420 : 183
- 421 : 121
- 422 : 122
- 423 : 157
- 424 : 127
- 425 : 233
- 426 : 191
- 427 : 154
- 428 : 59
- 429 : 248
- 430 : 175
- 431 : 51
- 432 : 125
- 433 : 127
- 434 : 249
- 435 : 119
- 436 : 154
- 437 : 30
- 438 : 127
- 439 : 159
- 440 : 30
- 441 : 222
- 442 : 159
- 443 : 142
- 444 : 207
- 445 : 179
- 446 : 126
- 447 : 54
- 448 : 127
- 449 : 188
- 450 : 216
- 451 : 250
- 452 : 213
- 453 : 197
- 454 : 229
- 455 : 159
- 456 : 139
- 457 : 235
- 458 : 27
- 459 : 247
- 460 : 117
- 461 : 247
- 462 : 13
- 463 : 251
- 464 : 171
- 465 : 44
- 466 : 100
- 467 : 39
- 468 : 5
- 469 : 0
- 470 : 0
And when this data is converted to string I am getting dataString as nil . And when I tried to debug I found this log
expression produced error: error: Execution was interrupted, reason:
EXC_BAD_ACCESS (code=2, address=0x16f174000). The process has been
returned to the state before expression evaluation.
My code is using this methods several times before and was working fine.

The reason for the failure is most likely the \0 bytes in the array and the data seems not to be an UTF8 string.
This is a more straightforward syntax. The parameter data is non-optional since when you call this method you want to send data.
if(self.webSocket != nil) { self.webSocket!... is pretty objective-c-ish. In Swift there is Optional chanining
func send(data: [UInt8]) {
guard !data.isEmpty, let dataString = String(data: Data(data), encoding: .utf8) else { return }
print("DataString:", dataString)
self.webSocket?.send(text: dataString)
}

Related

AccessibilitySettingsLoader SpeakTypingManager crash iOS15.4 (19E241)

1、always crash when launch
2、iPhoneX iOS15.4 and iOS15.1
When my application is launched it crashes with the following message
Has anyone else encountered this problem?
0 libobjc.A.dylib
_objc_retain + 16
1 AccessibilitySettingsLoader
___72-[SpeakTypingManager speakTypingLoadAccessibilityForExistingPredictions]_block_invoke + 196
2 AccessibilityUtilities
_AXPerformSafeBlockWithErrorHandler + 76
3 AccessibilitySettingsLoader
_soft_AXPerformSafeBlock + 124
4 AccessibilitySettingsLoader
___63-[SpeakTypingManager _installSpeakTypingSafeCategoriesIfNeeded]_block_invoke_9 + 84
5 AccessibilityUtilities
___121-[AXValidationManager performValidations:withPreValidationHandler:postValidationHandler:safeCategoryInstallationHandler:]_block_invoke + 720
6 AXCoreUtilities
_AXPerformBlockSynchronouslyOnMainThread + 68
7 AXCoreUtilities
-[AXAccessQueue performSynchronousWritingBlock:] + 64
8 AccessibilityUtilities
-[AXValidationManager performValidations:withPreValidationHandler:postValidationHandler:safeCategoryInstallationHandler:] + 248
9 AccessibilitySettingsLoader
___63-[SpeakTypingManager _installSpeakTypingSafeCategoriesIfNeeded]_block_invoke_6 + 80
10 AccessibilityUtilities
-[AXBinaryMonitor _applyHandlerBlocks:handlerMap:] + 200
11 AccessibilityUtilities
-[AXBinaryMonitor _handleLoadedImagePath:] + 324
12 AccessibilityUtilities
____axmonitor_dyld_image_callback_block_invoke + 116
13 libdispatch.dylib
__dispatch_client_callout + 16
14 libdispatch.dylib
__dispatch_continuation_pop$VARIANT$armv81 + 432
15 libdispatch.dylib
__dispatch_source_invoke$VARIANT$armv81 + 1560
16 libdispatch.dylib
__dispatch_main_queue_drain + 716
17 libdispatch.dylib
__dispatch_main_queue_callback_4CF$VARIANT$armv81 + 36
18 CoreFoundation
___CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
19 CoreFoundation
___CFRunLoopRun + 2544

How to overcome with this error when using Networkx's kernighan_lin_bisection

I want to use kernighan_lin_bisection from Networkx to separate a network data.
But the error below showed up and I'm stuck.
It would be highly appreciated if you could help me overcome this error.
QT-------------------------------------------------------------------------
IndexError Traceback (most recent call last)
in ()
17 for c in init_partition:
18 for n in c:
---> 19 color_map_i[n]=colors[counter]
20 counter=counter+1
21
IndexError: list assignment index out of range
UNQT---------------------------------------------------------------------------
The coding I used and data source"200224_04_act.prn" are below.
QT---------------------------------------------------
G=nx.read_edgelist("200224_04_act.prn",nodetype=int)
colors=["red","blue","green"]
pos=nx.spring_layout(G)
init_nodes=np.array_split(G.nodes(),2)
init_partition=[set(init_nodes[0]),set(init_nodes[1])]
print(init_partition)
from networkx.algorithms.community import kernighan_lin_bisection
color_map_i=["black"]*nx.number_of_nodes(G)
print(color_map_i)
counter=0
for c in init_partition:
for n in c:
color_map_i[n]=colors[counter]
counter=counter+1
print(color_map_i)
nx.draw_networkx_edges(G,pos)
nx.draw_networkx_nodes(G,pos,node_color=color_map_i)
nx.draw_networkx_labels(G,pos)
plt.axis("off")
plt.show()
lst_b=kernighan_lin_bisection(G,partition=init_partition)
color_map_b=["black"]*nx.number_of_nodes(G)
counter=0
for c in lst_b:
for n in c:
color_map_b[n]=colors[counter]
counter=counter+1
nx.draw_networkx_edges(G,pos)
nx.draw_networkx_nodes(G,pos,node_color=color_map_b)
nx.draw_networkx_labels(G,pos)
plt.axis("off")
plt.show()
UNQT--------------------------------------------------------------
"200224_04_act.prn" below.(Number of nodes is around 2000 but I made it
small due to the limit of number of character)
1 415
2 415
3 415
3 1350
4 1351
5 1352
6 383
7 993
8 1353
9 887
10 887
11 887
12 887
13 887
14 1185
15 1185
16 1185
17 1185
18 1185
19 1146
20 1146
21 1146
22 1146
21 776
23 776
24 707
25 707
26 707
27 707
28 707
29 754
21 754
30 754
31 754
32 754
33 778
34 778
35 778
36 778
37 778
38 859
39 859
40 1354
41 563
42 563
43 563
44 563
45 563
46 1209
47 1209
48 1209
49 1209
50 1209
51 715
52 715
53 715
54 715
55 715
56 1048
57 1048
58 1047
59 1047
60 1047
61 1047
62 1047
63 718
64 718
65 718
66 718
67 718
68 947
17 947
69 947
70 889
71 744
72 744
73 744
74 744
75 744
76 1137
77 1137
78 1137
79 1137
80 612
81 612
82 612
83 612
17 612
84 790
85 790
86 790
87 790
88 790
89 922
90 922
91 922
92 922
93 922
21 738
94 738
95 738
96 738
97 738
98 1355
81 807
99 807
17 807
100 725
101 725
17 725
102 725
103 725
23 1046
104 661
105 661
106 661
107 661
108 661
109 907
110 907
111 907
112 907
113 907
114 840
115 840
116 840
117 840
17 840
118 759
23 759
119 759
23 761
120 761
121 761
122 761
123 1356
124 1265
125 1265
126 1265
127 1265
128 1265
129 894
29 894
130 894
131 894
132 667
133 667
124 758
134 758
135 758
122 758
136 758
137 471
138 471
You've got
for c in init_partition:
for n in c:
color_map_i[n]=colors[counter]
counter=counter+1
It looks to me like n will loop over all of the nodes of the graph. I do not see any entries in the graph that are 0. So probably the nodes are numbered 1 to N, while color_map_i is indexed from 0 to N-1. So it would break when n=N.
A good way to hunt for bugs like this in general would be to print n right before the line giving the error. This would give a hint to what the problem is.

Why does calcHist in Opencv produce 0 array in output?

I do hist calculation using OpenCV. I have the following implementation.
//Check image
for (int i = 0; i < block.rows; i++)
{
unsigned char *ptr = block.ptr<unsigned char>(i);
for (int j = 0; j < block.cols; j++)
{
cout << (int)ptr[j] << " ";
}
cout << endl;
}
//That gave
240 130 176 129 96 122 192 127 240 123 112 122 64 121 80 118 128 129 224 119
160 138 176 132 144 128 144 132 64 128 64 126 16 128 16 129 112 126 64 127
128 128 96 133 240 124 240 132 96 126 32 124 144 128 144 129 176 128 144 124
0 136 112 136 80 131 64 131 16 132 48 131 0 128 224 129 240 126 144 129
16 132 240 138 160 132 64 134 16 131 112 129 208 126 0 128 16 126 176 122
208 139 176 133 176 135 240 138 176 136 80 131 128 133 192 132 64 129 144 132
32 136 176 138 224 139 224 136 80 127 160 135 144 132 64 131 192 131 48 126
80 144 192 138 16 136 192 138 240 135 112 135 32 133 208 132 32 130 64 130
144 141 144 135 48 139 32 135 32 134 112 134 80 130 160 126 144 131 96 128
80 144 208 139 112 141 16 137 96 138 48 134 0 136 96 137 32 135 192 130
208 143 224 140 64 140 240 132 224 132 96 133 160 133 96 134 0 129 96 131
128 148 144 140 128 139 96 139 32 136 48 135 80 132 96 137 0 133 240 140
208 136 96 144 64 137 144 135 16 135 16 132 0 134 160 136 128 134 128 132
240 147 176 144 160 138 176 144 176 139 160 143 224 135 128 137 96 139 160 136
176 139 144 133 240 142 192 139 112 133 112 135 208 131 208 132 128 135 48 133
32 150 0 144 128 139 0 141 64 142 32 136 16 137 112 136 16 137 48 133
128 143 0 141 48 141 192 135 128 144 16 138 80 136 192 134 16 134 160 131
0 144 144 148 16 143 48 136 144 140 144 138 160 136 192 137 80 138 160 136
16 142 32 141 192 140 160 135 32 136 192 135 192 135 240 135 48 138 0 143
208 142 96 149 160 146 208 146 32 138 192 141 112 136 208 138 96 142 160 137
128 145 64 142 16 136 0 137 144 132 32 136 96 138 48 136 240 131 208 130
48 142 128 143 128 143 160 149 208 140 16 142 176 137 208 136 240 138 0 143
192 146 160 141 112 144 96 143 112 135 224 140 96 135 176 135 80 135 128 135
48 144 224 147 0 139 48 139 128 142 224 143 0 144 80 140 16 139 192 140
0 146 160 143 176 138 160 146 240 135 128 136 176 137 192 134 192 136 112 136
208 147 16 143 80 149 112 146 224 134 16 145 48 141 224 138 128 137 112 135
64 146 0 140 192 140 0 143 208 140 96 138 128 137 176 138 208 138 48 135
64 148 224 142 16 140 64 143 112 137 64 141 64 143 224 135 80 138 80 138
240 143 240 142 64 145 0 142 208 142 128 139 0 136 240 141 48 138 80 137
64 147 32 148 112 145 80 140 64 143 112 144 0 139 112 137 176 136 80 143
48 148 64 146 144 142 160 139 176 140 0 140 144 139 32 138 80 137 112 139
208 145 192 145 96 148 240 145 128 139 16 141 80 142 224 137 16 144 208 140
240 142 96 139 176 148 16 139 96 143 16 141 32 139 176 141 48 134 192 141
128 147 64 145 80 150 112 140 112 143 240 142 96 143 224 139 192 143 144 137
0 148 80 145 128 142 48 146 160 140 32 141 192 139 16 136 176 138 16 143
48 149 80 143 80 144 112 144 64 144 208 143 96 142 192 142 240 138 48 138
192 143 48 149 176 145 176 142 64 142 160 139 16 138 128 139 64 139 192 138
192 147 224 144 64 143 64 148 0 144 96 143 32 147 208 142 64 141 224 137
112 146 208 144 96 141 64 142 208 141 112 138 144 138 80 135 16 140 176 140
208 146 96 144 112 148 112 146 112 147 192 148 16 141 32 143 224 137 80 140
128 149 96 146 224 144 32 141 240 144 112 136 192 141 64 139 96 135 144 138
160 144 80 149 208 146 96 145 128 142 64 142 64 147 208 141 144 141 16 141
48 145 192 145 32 140 176 142 0 143 96 136 160 139 80 136 192 138 96 138
32 151 224 152 208 143 112 142 0 142 144 145 176 145 0 139 240 141 32 139
112 142 0 139 176 136 64 140 128 140 64 135 64 139 128 140 64 137 96 138
128 150 0 153 32 146 208 140 80 149 240 141 240 136 224 140 160 140 32 146
240 141 160 142 192 144 208 138 112 141 144 138 128 138 48 135 176 140 16 135
96 150 176 148 80 142 224 142 16 148 208 140 240 136 224 141 32 140 144 137
192 139 0 144 64 142 144 143 32 139 192 138 160 139 208 137 80 140 96 134
48 148 192 146 16 149 0 141 144 137 32 140 192 142 176 138 240 140 16 138
80 146 144 142 80 143 192 137 224 141 176 140 80 139 128 138 64 135 144 134
160 146 208 143 160 143 0 145 112 140 224 144 208 142 80 144 0 138 144 142
144 143 48 139 32 141 0 147 16 140 0 143 176 140 128 133 176 139 160 134
176 150 240 145 64 146 144 142 96 138 240 141 128 141 112 140 128 137 160 135
176 140 128 139 224 144 160 138 208 138 224 135 48 139 208 132 160 137 96 134
208 143 112 148 0 141 96 143 96 136 32 143 176 138 240 139 160 141 176 141
176 148 176 142 112 140 16 143 96 136 80 139 240 139 144 138 160 139 160 137
96 145 32 151 224 142 96 143 48 143 96 141 112 135 48 141 240 136 80 138
80 145 0 140 64 141 48 144 32 141 208 137 80 136 192 134 32 135 16 137
64 147 48 148 240 143 208 139 112 140 240 138 176 141 32 144 64 138 64 139
160 142 208 141 160 142 48 140 208 138 80 136 160 137 48 141 224 137 96 134
64 149 48 147 32 142 80 148 176 142 192 142 208 138 48 139 112 136 64 139
144 144 96 143 240 140 240 138 160 140 0 140 0 135 208 133 32 134 192 132
80 143 0 145 128 140 48 143 208 141 96 143 96 139 192 138 0 139 112 140
96 144 80 140 64 144 32 141 192 137 32 138 176 137 80 137 80 138 0 136
64 147 144 145 208 140 64 138 144 145 224 137 48 140 0 140 96 139 192 134
64 141 208 143 128 144 80 135 192 135 112 139 176 135 128 139 144 135 128 134
80 145 32 146 80 142 64 143 192 143 176 140 224 142 112 141 32 139 144 141
96 141 64 141 240 143 224 136 48 142 160 132 192 136 160 136 64 137 32 134
224 147 192 144 96 145 16 140 192 142 128 138 0 141 0 145 176 136 96 140
128 146 16 143 160 139 176 141 192 138 208 137 48 141 160 129 96 137 144 134
112 145 32 146 208 135 240 139 240 137 192 142 176 132 96 138 144 131 16 140
64 143 112 141 112 142 0 140 160 141 0 135 240 136 224 141 112 137 64 134
160 144 80 143 160 145 192 141 96 135 80 140 240 134 224 138 48 137 176 137
64 140 80 138 0 138 64 136 48 136 128 133 16 133 224 132 80 135 224 133
224 142 16 146 80 145 224 137 144 138 160 138 160 132 64 137 112 133 0 135
224 140 80 141 0 138 112 135 0 132 144 136 240 131 112 137 208 133 0 135
16 143 32 139 32 142 160 138 96 133 128 136 112 132 16 136 176 133 112 136
96 141 0 138 96 133 176 136 112 133 176 136 240 126 0 131 16 127 80 130
112 142 160 138 0 136 16 140 192 132 48 138 64 136 176 135 208 130 160 140
So pixel values are there.
//Histogram calculation
int histbin = 128;//quantize
int histSize[] = { histbin };
float range[] = { 0, 255 };
const float *ranges[] = { range };
Mat hist;
int channels[] = { 0};
calcHist(&block, 1, channels, Mat(), hist, 1, histSize, ranges, true, false);
//Print output
for (int h = 0; h < histbin; h++)
{
float binVal = hist.at<float>(h);
cout << " " << binVal;
}
I have outputs as follow.
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
What is wrong with my implementation?

Uppercase All String According to Locale - Swift

I'm trying to uppercase all string according to 'Locale' but it is not working.
var text = "istanbul, izmir"
println(text.uppercaseStringWithLocale(NSLocale.currentLocale()))
In Turkish language the uppercase for i is İ not I. My Result is ISTANBUL, IZMIR but It should returns İSTANBUL, İZMİR.
Please where would be my issue?
NSLocale.currentLocale() is the locale which was selected in the
Settings of the device. If that is "en_US" then
text.uppercaseStringWithLocale(NSLocale.currentLocale())
will use the english language rules and the result is "ISTANBUL, IZMIR".
You can either select the turkish language in the device settings, or
specify the turkish locale explicitly:
let text = "istanbul, izmir"
text.uppercaseStringWithLocale(NSLocale(localeIdentifier: "tr"))
// İSTANBUL, İZMİR
Swift 3:
text.uppercased(with: Locale(identifier: "tr"))
If you want to use the current locale, you can use:
text.localizedUppercaseString
SWIFT 3.x, 4.x, 5.0
regardless of ISO standards, Apple using "tr" for Turkish language without country shortcode. you must explicitly set an identifier (if you don't care device settings from 'Local.current')
"istanbul, izmir, ateştuğla".uppercased(with: Locale(identifier: "tr"))
// Output is:
// "İSTANBUL, İZMİR, ATEŞTUĞLA"
to see all available identifiers i suggest to print them all, to your debugging console by:
po Locale.availableIdentifiers
..
Here is an example output from LLDB of XCode.10.2 by swift5:
(lldb) po Locale.availableIdentifiers
▿ 797 elements
- 0 : "eu"
- 1 : "hr_BA"
- 2 : "en_CM"
- 3 : "en_BI"
- 4 : "rw_RW"
- 5 : "ast"
- 6 : "en_SZ"
- 7 : "he_IL"
- 8 : "ar"
- 9 : "uz_Arab"
- 10 : "en_PN"
- 11 : "as"
- 12 : "en_NF"
- 13 : "ks_IN"
- 14 : "es_KY"
- 15 : "rwk_TZ"
- 16 : "zh_Hant_TW"
- 17 : "en_CN"
- 18 : "gsw_LI"
- 19 : "ta_IN"
- 20 : "th_TH"
- 21 : "es_EA"
- 22 : "fr_GF"
- 23 : "ar_001"
- 24 : "en_RW"
- 25 : "tr_TR"
- 26 : "de_CH"
- 27 : "ee_TG"
- 28 : "en_NG"
- 29 : "fr_TG"
- 30 : "az"
- 31 : "fr_SC"
- 32 : "es_HN"
- 33 : "en_AG"
- 34 : "ccp_IN"
- 35 : "ru_KZ"
- 36 : "gsw"
- 37 : "dyo"
- 38 : "so_ET"
- 39 : "zh_Hant_MO"
- 40 : "de_BE"
- 41 : "nus_SS"
- 42 : "km_KH"
- 43 : "my_MM"
- 44 : "mgh_MZ"
- 45 : "ee_GH"
- 46 : "es_EC"
- 47 : "kw_GB"
- 48 : "rm_CH"
- 49 : "en_ME"
- 50 : "nyn"
- 51 : "mk_MK"
- 52 : "bs_Cyrl_BA"
- 53 : "ar_MR"
- 54 : "es_GL"
- 55 : "en_BM"
- 56 : "ms_Arab"
- 57 : "en_AI"
- 58 : "gl_ES"
- 59 : "en_PR"
- 60 : "ff_CM"
- 61 : "ne_IN"
- 62 : "or_IN"
- 63 : "khq_ML"
- 64 : "en_MG"
- 65 : "pt_TL"
- 66 : "en_LC"
- 67 : "iu_CA"
- 68 : "ta_SG"
- 69 : "jmc_TZ"
- 70 : "om_ET"
- 71 : "lv_LV"
- 72 : "es_US"
- 73 : "en_PT"
- 74 : "vai_Latn_LR"
- 75 : "en_NL"
- 76 : "to_TO"
- 77 : "cgg_UG"
- 78 : "en_MH"
- 79 : "ta"
- 80 : "zu_ZA"
- 81 : "shi_Latn_MA"
- 82 : "es_FK"
- 83 : "ar_KM"
- 84 : "en_AL"
- 85 : "brx_IN"
- 86 : "te"
- 87 : "chr_US"
- 88 : "yo_BJ"
- 89 : "fr_VU"
- 90 : "pa"
- 91 : "tg"
- 92 : "kea"
- 93 : "ksh_DE"
- 94 : "sw_CD"
- 95 : "te_IN"
- 96 : "fr_RE"
- 97 : "th"
- 98 : "ur_IN"
- 99 : "yo_NG"
- 100 : "ti"
- 101 : "es_HT"
- 102 : "es_GP"
- 103 : "guz_KE"
- 104 : "tk"
- 105 : "kl_GL"
- 106 : "ksf_CM"
- 107 : "mua_CM"
- 108 : "lag_TZ"
- 109 : "lb"
- 110 : "fr_TN"
- 111 : "es_PA"
- 112 : "pl_PL"
- 113 : "to"
- 114 : "hi_IN"
- 115 : "dje_NE"
- 116 : "es_GQ"
- 117 : "en_BR"
- 118 : "kok_IN"
- 119 : "pl"
- 120 : "fr_GN"
- 121 : "bem"
- 122 : "ha"
- 123 : "ckb"
- 124 : "es_CA"
- 125 : "lg"
- 126 : "tr"
- 127 : "en_PW"
- 128 : "tt"
- 129 : "en_NO"
- 130 : "nyn_UG"
- 131 : "sr_Latn_RS"
- 132 : "gsw_FR"
- 133 : "pa_Guru"
- 134 : "he"
- 135 : "qu_BO"
- 136 : "ps_AF"
- 137 : "lu_CD"
- 138 : "mgo_CM"
- 139 : "sn_ZW"
- 140 : "en_BS"
- 141 : "da"
- 142 : "ps"
- 143 : "ln"
- 144 : "pt"
- 145 : "hi"
- 146 : "lo"
- 147 : "ebu"
- 148 : "de"
- 149 : "gu_IN"
- 150 : "wo_SN"
- 151 : "seh"
- 152 : "en_CX"
- 153 : "en_ZM"
- 154 : "fr_HT"
- 155 : "fr_GP"
- 156 : "pt_GQ"
- 157 : "lt"
- 158 : "lu"
- 159 : "es_TT"
- 160 : "ln_CD"
- 161 : "vai_Latn"
- 162 : "el_GR"
- 163 : "lv"
- 164 : "en_KE"
- 165 : "sbp"
- 166 : "hr"
- 167 : "en_CY"
- 168 : "es_GT"
- 169 : "twq_NE"
- 170 : "zh_Hant_HK"
- 171 : "kln_KE"
- 172 : "fr_GQ"
- 173 : "chr"
- 174 : "hu"
- 175 : "es_UY"
- 176 : "fr_CA"
- 177 : "ms_BN"
- 178 : "en_NR"
- 179 : "mer"
- 180 : "shi"
- 181 : "es_PE"
- 182 : "fr_SN"
- 183 : "bez"
- 184 : "sw_TZ"
- 185 : "wae_CH"
- 186 : "kkj"
- 187 : "hy"
- 188 : "dz_BT"
- 189 : "en_CZ"
- 190 : "teo_KE"
- 191 : "teo"
- 192 : "en_AR"
- 193 : "ar_JO"
- 194 : "yue_Hans_CN"
- 195 : "mer_KE"
- 196 : "khq"
- 197 : "ln_CF"
- 198 : "nn_NO"
- 199 : "es_SR"
- 200 : "en_MO"
- 201 : "ar_TD"
- 202 : "dz"
- 203 : "ses"
- 204 : "en_BW"
- 205 : "en_AS"
- 206 : "ar_IL"
- 207 : "es_BB"
- 208 : "bo_CN"
- 209 : "nnh"
- 210 : "teo_UG"
- 211 : "hy_AM"
- 212 : "ln_CG"
- 213 : "sr_Latn_BA"
- 214 : "en_MP"
- 215 : "ksb_TZ"
- 216 : "ar_SA"
- 217 : "smn_FI"
- 218 : "ar_LY"
- 219 : "en_AT"
- 220 : "so_KE"
- 221 : "fr_CD"
- 222 : "af_NA"
- 223 : "en_NU"
- 224 : "es_PH"
- 225 : "en_KI"
- 226 : "en_JE"
- 227 : "lkt"
- 228 : "en_AU"
- 229 : "fa_IR"
- 230 : "pt_FR"
- 231 : "uz_Latn_UZ"
- 232 : "zh_Hans_CN"
- 233 : "ewo_CM"
- 234 : "fr_PF"
- 235 : "ca_IT"
- 236 : "es_GY"
- 237 : "en_BZ"
- 238 : "ar_KW"
- 239 : "pt_GW"
- 240 : "fr_FR"
- 241 : "am_ET"
- 242 : "en_VC"
- 243 : "es_DM"
- 244 : "fr_DJ"
- 245 : "fr_CF"
- 246 : "es_SV"
- 247 : "en_MS"
- 248 : "pt_ST"
- 249 : "ar_SD"
- 250 : "luy_KE"
- 251 : "gd_GB"
- 252 : "de_LI"
- 253 : "it_VA"
- 254 : "fr_CG"
- 255 : "pt_CH"
- 256 : "ckb_IQ"
- 257 : "zh_Hans_SG"
- 258 : "en_MT"
- 259 : "ha_NE"
- 260 : "en_ID"
- 261 : "ewo"
- 262 : "af_ZA"
- 263 : "os_GE"
- 264 : "om_KE"
- 265 : "nl_SR"
- 266 : "es_ES"
- 267 : "es_DO"
- 268 : "ar_IQ"
- 269 : "fr_CH"
- 270 : "nnh_CM"
- 271 : "es_SX"
- 272 : "es_419"
- 273 : "en_MU"
- 274 : "en_US_POSIX"
- 275 : "yav_CM"
- 276 : "luo_KE"
- 277 : "dua_CM"
- 278 : "et_EE"
- 279 : "en_IE"
- 280 : "ak_GH"
- 281 : "rwk"
- 282 : "es_CL"
- 283 : "kea_CV"
- 284 : "fr_CI"
- 285 : "ckb_IR"
- 286 : "fr_BE"
- 287 : "se"
- 288 : "en_NZ"
- 289 : "en_MV"
- 290 : "en_LR"
- 291 : "es_PM"
- 292 : "en_KN"
- 293 : "nb_SJ"
- 294 : "ha_NG"
- 295 : "sg"
- 296 : "sr_Cyrl_RS"
- 297 : "ru_RU"
- 298 : "en_ZW"
- 299 : "sv_AX"
- 300 : "ga_IE"
- 301 : "si"
- 302 : "wo"
- 303 : "en_VG"
- 304 : "ff_MR"
- 305 : "ky_KG"
- 306 : "agq_CM"
- 307 : "mzn"
- 308 : "fr_BF"
- 309 : "naq_NA"
- 310 : "mr_IN"
- 311 : "en_MW"
- 312 : "de_AT"
- 313 : "az_Latn"
- 314 : "en_LS"
- 315 : "ka"
- 316 : "sk"
- 317 : "sl"
- 318 : "sn"
- 319 : "sr_Latn_ME"
- 320 : "fr_NC"
- 321 : "so"
- 322 : "is_IS"
- 323 : "twq"
- 324 : "ig_NG"
- 325 : "sq"
- 326 : "fo_FO"
- 327 : "sr"
- 328 : "tzm"
- 329 : "ga"
- 330 : "om"
- 331 : "en_LT"
- 332 : "bas_CM"
- 333 : "se_NO"
- 334 : "ki"
- 335 : "nl_BE"
- 336 : "ar_QA"
- 337 : "gd"
- 338 : "sv"
- 339 : "kk"
- 340 : "rn_BI"
- 341 : "es_CO"
- 342 : "az_Latn_AZ"
- 343 : "kl"
- 344 : "or"
- 345 : "es_AG"
- 346 : "ca"
- 347 : "en_VI"
- 348 : "km"
- 349 : "os"
- 350 : "sw"
- 351 : "en_MY"
- 352 : "kn"
- 353 : "en_LU"
- 354 : "fr_SY"
- 355 : "ar_TN"
- 356 : "en_JM"
- 357 : "fr_PM"
- 358 : "ko"
- 359 : "fr_NE"
- 360 : "ce"
- 361 : "fr_MA"
- 362 : "gl"
- 363 : "ru_MD"
- 364 : "es_BL"
- 365 : "saq_KE"
- 366 : "ks"
- 367 : "fr_CM"
- 368 : "lb_LU"
- 369 : "gv_IM"
- 370 : "fr_BI"
- 371 : "en_LV"
- 372 : "en_KR"
- 373 : "es_NI"
- 374 : "en_GB"
- 375 : "kw"
- 376 : "nl_SX"
- 377 : "dav_KE"
- 378 : "tr_CY"
- 379 : "ky"
- 380 : "en_UG"
- 381 : "es_BM"
- 382 : "en_TC"
- 383 : "es_AI"
- 384 : "ar_EG"
- 385 : "fr_BJ"
- 386 : "gu"
- 387 : "es_PR"
- 388 : "fr_RW"
- 389 : "gv"
- 390 : "lrc_IQ"
- 391 : "sr_Cyrl_BA"
- 392 : "es_MF"
- 393 : "fr_MC"
- 394 : "cs"
- 395 : "bez_TZ"
- 396 : "es_CR"
- 397 : "asa_TZ"
- 398 : "ar_EH"
- 399 : "fo_DK"
- 400 : "ms_Arab_BN"
- 401 : "ccp"
- 402 : "en_JP"
- 403 : "sbp_TZ"
- 404 : "en_IL"
- 405 : "lt_LT"
- 406 : "mfe"
- 407 : "en_GD"
- 408 : "es_LC"
- 409 : "cy"
- 410 : "ug_CN"
- 411 : "ca_FR"
- 412 : "es_BO"
- 413 : "en_SA"
- 414 : "fr_BL"
- 415 : "bn_IN"
- 416 : "uz_Cyrl_UZ"
- 417 : "lrc_IR"
- 418 : "az_Cyrl"
- 419 : "en_IM"
- 420 : "sw_KE"
- 421 : "en_SB"
- 422 : "pa_Arab"
- 423 : "ur_PK"
- 424 : "haw_US"
- 425 : "ar_SO"
- 426 : "en_IN"
- 427 : "fil"
- 428 : "fr_MF"
- 429 : "en_WS"
- 430 : "es_CU"
- 431 : "es_BQ"
- 432 : "ja_JP"
- 433 : "fy_NL"
- 434 : "en_SC"
- 435 : "yue_Hant_HK"
- 436 : "en_IO"
- 437 : "pt_PT"
- 438 : "en_HK"
- 439 : "en_GG"
- 440 : "fr_MG"
- 441 : "de_LU"
- 442 : "tzm_MA"
- 443 : "es_BR"
- 444 : "en_TH"
- 445 : "en_SD"
- 446 : "nds_DE"
- 447 : "shi_Tfng"
- 448 : "ln_AO"
- 449 : "as_IN"
- 450 : "en_GH"
- 451 : "ms_MY"
- 452 : "ro_RO"
- 453 : "jgo_CM"
- 454 : "es_CW"
- 455 : "dua"
- 456 : "en_UM"
- 457 : "es_BS"
- 458 : "en_SE"
- 459 : "kn_IN"
- 460 : "en_KY"
- 461 : "vun_TZ"
- 462 : "kln"
- 463 : "lrc"
- 464 : "en_GI"
- 465 : "ca_ES"
- 466 : "rof"
- 467 : "pt_CV"
- 468 : "kok"
- 469 : "pt_BR"
- 470 : "ar_DJ"
- 471 : "yi_001"
- 472 : "fi_FI"
- 473 : "zh"
- 474 : "es_PY"
- 475 : "ar_SS"
- 476 : "mua"
- 477 : "sr_Cyrl_ME"
- 478 : "vai_Vaii_LR"
- 479 : "en_001"
- 480 : "nl_NL"
- 481 : "en_TK"
- 482 : "fr_DZ"
- 483 : "en_SG"
- 484 : "ca_AD"
- 485 : "si_LK"
- 486 : "sv_SE"
- 487 : "pt_AO"
- 488 : "vi"
- 489 : "xog_UG"
- 490 : "xog"
- 491 : "en_IS"
- 492 : "nb"
- 493 : "seh_MZ"
- 494 : "es_AR"
- 495 : "sk_SK"
- 496 : "en_SH"
- 497 : "ti_ER"
- 498 : "nd"
- 499 : "az_Cyrl_AZ"
- 500 : "zu"
- 501 : "ne"
- 502 : "nd_ZW"
- 503 : "el_CY"
- 504 : "en_IT"
- 505 : "nl_BQ"
- 506 : "da_GL"
- 507 : "ja"
- 508 : "rm"
- 509 : "fr_ML"
- 510 : "rn"
- 511 : "en_VU"
- 512 : "rof_TZ"
- 513 : "ro"
- 514 : "ebu_KE"
- 515 : "ru_KG"
- 516 : "en_SI"
- 517 : "sg_CF"
- 518 : "mfe_MU"
- 519 : "nl"
- 520 : "brx"
- 521 : "bs_Latn"
- 522 : "fa"
- 523 : "zgh_MA"
- 524 : "en_GM"
- 525 : "shi_Latn"
- 526 : "en_FI"
- 527 : "nn"
- 528 : "en_EE"
- 529 : "ru"
- 530 : "yue"
- 531 : "kam_KE"
- 532 : "fur"
- 533 : "vai_Vaii"
- 534 : "ar_ER"
- 535 : "rw"
- 536 : "ti_ET"
- 537 : "ff"
- 538 : "luo"
- 539 : "fa_AF"
- 540 : "nl_CW"
- 541 : "es_MQ"
- 542 : "en_HR"
- 543 : "en_FJ"
- 544 : "fi"
- 545 : "pt_MO"
- 546 : "be"
- 547 : "en_US"
- 548 : "en_TO"
- 549 : "en_SK"
- 550 : "bg"
- 551 : "ru_BY"
- 552 : "it_IT"
- 553 : "ml_IN"
- 554 : "gsw_CH"
- 555 : "qu_EC"
- 556 : "fo"
- 557 : "sv_FI"
- 558 : "en_FK"
- 559 : "nus"
- 560 : "ta_LK"
- 561 : "vun"
- 562 : "sr_Latn"
- 563 : "es_BZ"
- 564 : "fr"
- 565 : "en_SL"
- 566 : "bm"
- 567 : "es_VC"
- 568 : "ar_BH"
- 569 : "guz"
- 570 : "bn"
- 571 : "bo"
- 572 : "ar_SY"
- 573 : "es_MS"
- 574 : "lo_LA"
- 575 : "ne_NP"
- 576 : "uz_Latn"
- 577 : "be_BY"
- 578 : "es_IC"
- 579 : "sr_Latn_XK"
- 580 : "ar_MA"
- 581 : "pa_Guru_IN"
- 582 : "br"
- 583 : "luy"
- 584 : "kde_TZ"
- 585 : "es_AW"
- 586 : "bs"
- 587 : "fy"
- 588 : "fur_IT"
- 589 : "hu_HU"
- 590 : "ar_AE"
- 591 : "en_HU"
- 592 : "sah_RU"
- 593 : "zh_Hans"
- 594 : "en_FM"
- 595 : "fr_MQ"
- 596 : "ko_KP"
- 597 : "en_150"
- 598 : "en_DE"
- 599 : "ce_RU"
- 600 : "en_CA"
- 601 : "hsb_DE"
- 602 : "sq_AL"
- 603 : "en_TR"
- 604 : "ro_MD"
- 605 : "es_VE"
- 606 : "tg_TJ"
- 607 : "fr_WF"
- 608 : "mt_MT"
- 609 : "kab"
- 610 : "nmg_CM"
- 611 : "ms_SG"
- 612 : "en_GR"
- 613 : "ru_UA"
- 614 : "fr_MR"
- 615 : "zh_Hans_MO"
- 616 : "de_IT"
- 617 : "ccp_BD"
- 618 : "ff_GN"
- 619 : "bs_Cyrl"
- 620 : "tt_RU"
- 621 : "nds_NL"
- 622 : "es_KN"
- 623 : "sw_UG"
- 624 : "yue_Hans"
- 625 : "ko_KR"
- 626 : "en_DG"
- 627 : "bo_IN"
- 628 : "en_CC"
- 629 : "shi_Tfng_MA"
- 630 : "lag"
- 631 : "it_SM"
- 632 : "os_RU"
- 633 : "en_TT"
- 634 : "ms_Arab_MY"
- 635 : "sq_MK"
- 636 : "es_VG"
- 637 : "bem_ZM"
- 638 : "kde"
- 639 : "ar_OM"
- 640 : "kk_KZ"
- 641 : "cgg"
- 642 : "bas"
- 643 : "kam"
- 644 : "wae"
- 645 : "es_MX"
- 646 : "sah"
- 647 : "zh_Hant"
- 648 : "en_GU"
- 649 : "fr_MU"
- 650 : "fr_KM"
- 651 : "ar_LB"
- 652 : "en_BA"
- 653 : "en_TV"
- 654 : "sr_Cyrl"
- 655 : "mzn_IR"
- 656 : "es_VI"
- 657 : "dje"
- 658 : "kab_DZ"
- 659 : "fil_PH"
- 660 : "se_SE"
- 661 : "vai"
- 662 : "hr_HR"
- 663 : "bs_Latn_BA"
- 664 : "nl_AW"
- 665 : "dav"
- 666 : "so_SO"
- 667 : "ar_PS"
- 668 : "en_FR"
- 669 : "uz_Cyrl"
- 670 : "ff_SN"
- 671 : "en_BB"
- 672 : "ki_KE"
- 673 : "en_TW"
- 674 : "naq"
- 675 : "en_SS"
- 676 : "mg_MG"
- 677 : "mas_KE"
- 678 : "en_RO"
- 679 : "en_PG"
- 680 : "mgh"
- 681 : "dyo_SN"
- 682 : "mas"
- 683 : "agq"
- 684 : "bn_BD"
- 685 : "haw"
- 686 : "yi"
- 687 : "nb_NO"
- 688 : "da_DK"
- 689 : "en_DK"
- 690 : "saq"
- 691 : "ug"
- 692 : "cy_GB"
- 693 : "fr_YT"
- 694 : "jmc"
- 695 : "ses_ML"
- 696 : "en_PH"
- 697 : "de_DE"
- 698 : "ar_YE"
- 699 : "es_TC"
- 700 : "bm_ML"
- 701 : "yo"
- 702 : "lkt_US"
- 703 : "uz_Arab_AF"
- 704 : "jgo"
- 705 : "sl_SI"
- 706 : "pt_LU"
- 707 : "uk"
- 708 : "en_CH"
- 709 : "asa"
- 710 : "en_BD"
- 711 : "lg_UG"
- 712 : "nds"
- 713 : "qu_PE"
- 714 : "mgo"
- 715 : "id_ID"
- 716 : "en_NA"
- 717 : "en_GY"
- 718 : "zgh"
- 719 : "pt_MZ"
- 720 : "fr_LU"
- 721 : "dsb"
- 722 : "mas_TZ"
- 723 : "en_DM"
- 724 : "ta_MY"
- 725 : "es_GD"
- 726 : "en_BE"
- 727 : "mg"
- 728 : "ur"
- 729 : "fr_GA"
- 730 : "ka_GE"
- 731 : "nmg"
- 732 : "en_TZ"
- 733 : "eu_ES"
- 734 : "ar_DZ"
- 735 : "id"
- 736 : "so_DJ"
- 737 : "hsb"
- 738 : "yav"
- 739 : "mk"
- 740 : "pa_Arab_PK"
- 741 : "ml"
- 742 : "en_ER"
- 743 : "ig"
- 744 : "se_FI"
- 745 : "mn"
- 746 : "ksb"
- 747 : "uz"
- 748 : "vi_VN"
- 749 : "ii"
- 750 : "qu"
- 751 : "en_PK"
- 752 : "ee"
- 753 : "ast_ES"
- 754 : "yue_Hant"
- 755 : "mr"
- 756 : "ms"
- 757 : "en_ES"
- 758 : "ha_GH"
- 759 : "it_CH"
- 760 : "sq_XK"
- 761 : "mt"
- 762 : "en_CK"
- 763 : "br_FR"
- 764 : "en_BG"
- 765 : "es_GF"
- 766 : "tk_TM"
- 767 : "sr_Cyrl_XK"
- 768 : "ksf"
- 769 : "en_SX"
- 770 : "bg_BG"
- 771 : "en_PL"
- 772 : "af"
- 773 : "el"
- 774 : "cs_CZ"
- 775 : "fr_TD"
- 776 : "zh_Hans_HK"
- 777 : "is"
- 778 : "ksh"
- 779 : "my"
- 780 : "mn_MN"
- 781 : "en"
- 782 : "it"
- 783 : "dsb_DE"
- 784 : "ii_CN"
- 785 : "eo"
- 786 : "iu"
- 787 : "en_ZA"
- 788 : "smn"
- 789 : "en_AD"
- 790 : "ak"
- 791 : "en_RU"
- 792 : "kkj_CM"
- 793 : "am"
- 794 : "es"
- 795 : "et"
- 796 : "uk_UA"
...

Monotouch memory limitation crash

I have a question about monotouch app memory limitation.
I tried to stress my iPad memory with a very simple app that allocates 1MB arrays into a list. On each loop I display the number of loop. I notice my app crashing around 130 MB allocation.
My code:
List<byte[]> arrays = new List<byte[]>();
try
{
for (int i = 0; i < 1323; i++)
{
arrays.Add(new byte[1024 * 1024]);
Console.WriteLine("RAM: " + (i + 1) + " Mo");
}
}
catch { }
I don't understand why, on an iPad 3 or iPad 4, my app crashes around 130MB with following message:
Native stacktrace:
0 TestMemory 0x002687f9 mono_handle_native_sigsegv + 244
1 TestMemory 0x00295d75 sigabrt_signal_handler + 112
2 libsystem_c.dylib 0x35a75e93 _sigtramp + 42
3 libsystem_c.dylib 0x35a6c123 pthread_kill + 58
4 libsystem_c.dylib 0x35aa8973 abort + 94
5 TestMemory 0x0026353d GC_expand_hp_inner + 0
6 TestMemory 0x00263637 GC_expand_hp_inner + 250
7 TestMemory 0x00263aed GC_collect_or_expand + 128
8 TestMemory 0x00265d99 GC_alloc_large + 96
9 TestMemory 0x00265fe9 GC_generic_malloc + 180
10 TestMemory 0x00266185 GC_malloc_atomic + 112
11 TestMemory 0x0028c011 mono_array_new_specific + 124
12 TestMemory 0x00172e04 wrapper_managed_to_native_object___icall_wrapper_mono_array_new_specific_intptr_int + 68
13 TestMemory 0x0007305c MonoTouch_UIKit_UIControlEventProxy_Activated + 68
14 TestMemory 0x0016df50 wrapper_runtime_invoke_object_runtime_invoke_dynamic_intptr_intptr_intptr_intptr + 200
15 TestMemory 0x002314e3 mono_jit_runtime_invoke + 1054
16 TestMemory 0x0028c8c3 mono_runtime_invoke + 90
17 TestMemory 0x0022b6f7 native_to_managed_trampoline_MonoTouch_UIKit_UIControlEventProxy_Activated + 178
18 UIKit 0x3ace40a5 <redacted> + 72
19 UIKit 0x3ace4057 <redacted> + 30
20 UIKit 0x3ace4035 <redacted> + 44
21 UIKit 0x3ace38eb <redacted> + 502
22 UIKit 0x3ace357b <redacted> + 242
23 UIKit 0x3ac0c523 <redacted> + 318
24 UIKit 0x3abf9801 <redacted> + 380
25 UIKit 0x3abf911b <redacted> + 6154
26 GraphicsServices 0x3637c5a3 <redacted> + 590
27 GraphicsServices 0x3637c1d3 <redacted> + 34
28 CoreFoundation 0x38856173 <redacted> + 34
29 CoreFoundation 0x38856117 <redacted> + 138
30 CoreFoundation 0x38854f99 <redacted> + 1384
31 CoreFoundation 0x387c7ebd CFRunLoopRunSpecific + 356
32 CoreFoundation 0x387c7d49 CFRunLoopRunInMode + 104
33 GraphicsServices 0x3637b2eb GSEventRunModal + 74
34 UIKit 0x3ac4d2f9 UIApplicationMain + 1120
35 TestMemory 0x0008b3c4 wrapper_managed_to_native_MonoTouch_UIKit_UIApplication_UIApplicationMain_int_string___intptr_intptr + 240
36 TestMemory 0x00219bf0 TestMemory_Application_Main_string__ + 152
37 TestMemory 0x0016df50 wrapper_runtime_invoke_object_runtime_invoke_dynamic_intptr_intptr_intptr_intptr + 200
38 TestMemory 0x002314e3 mono_jit_runtime_invoke + 1054
39 TestMemory 0x0028c8c3 mono_runtime_invoke + 90
40 TestMemory 0x0028f3a7 mono_runtime_exec_main + 306
41 TestMemory 0x0029262b mono_runtime_run_main + 482
42 TestMemory 0x00242ecf mono_jit_exec + 94
43 TestMemory 0x002cce3c main + 2220
44 TestMemory 0x00002028 start + 40
You crash because you use up all the memory iOS is willing to give you. This is not a MonoTouch limitation, it's an iOS limitation.

Resources