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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
|
/*************************************************************************************************************************************************************************************************
* Author: Umang Agrawal *
* Code: detectFASTFeatures.cpp *
* Function Format: detectFASTFeatures( Image, Optional Arguments... ) *
* Requirements: Image should be a grayscale image *
* Optional Arguments: 1. 'MinContrast' Value: Range 0 < x < 1 *
* 2. 'MinQuality' Value: Range 0 < x < 1 *
* 3. 'ROI' Value: [ x_cordinate, y_cordinate, width, height ] *
*************************************************************************************************************************************************************************************************/
#include <iostream>
#include <numeric>
#include <vector>
#include <string>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/nonfree/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/nonfree/nonfree.hpp"
using namespace cv;
using namespace std;
extern "C"
{
#include "api_scilab.h"
#include "Scierror.h"
#include "BOOL.h"
#include <localization.h>
#include "sciprint.h"
//#include "../common.h"
// Function using OpenCV to detect FAST Features
int opencv_detectFASTFeatures(char *fname, unsigned long fname_len)
{
int *piAddr = NULL;
//Various Declarations
SciErr sciErr; //Error Variable
int sca_read; //Error Variable
int *imgAddr = NULL; //Address of the Image List Argument
int *piAddrChild = NULL; //Address of the Child of the Image Matrix List
int no_item_list; //Number of items in the list
int iPrec = 0; //Precesision of the image in the lsit
int iRows=0, iCols=0; //Rows & Columns in the image
int inp_params; //Number of Input Arguments
int *piAddr1 = NULL; //Address of Argument Head
int *piAddr2 = NULL; //Address of Value_1 of Argument
//int *piAddr3 = NULL; //Address of Value_2 of Argument
//int *piAddr4 = NULL; //Address of Value_3 of Argument
//int *piAddr5 = NULL; //Address of Value_4 of Argument
int Rows,Cols; //Rows & Columns of String Matrix
int *len = NULL; //Length of each String Element
char **arg; //String Argument
double *roi_arg = NULL; //ROI Argument Matrix Address
int rows,cols; //Rows and Columns of ROI value matrix
//int *point = NULL; //Points returned by the FAST Algorithm
double arg_val; //Variables for Contrast/Quality Argument
double x = 0, y = 0, width, height; //Variables for ROI Argument
double thresh; //Effective Threshold
double thresh_c = 0; //Threshold due to arguments
double thresh_q = 0; //Threshold due to arguments
int count_q = 0; //Count of Argument Quality Call
int count_c = 0; //Count of Argument Contrast Call
int count_r = 0; //Count of Argument ROI call
vector<KeyPoint> keypoints; //Keypoint Vector to store the points returned by FAST Algorithm
int i,j; //Iterators
double count = 0; //Count of number of Features Detected
double *metric = NULL;
Mat image; //Image Container
Mat cropped; //Image Container
//Checks on Input and Output Arguments
CheckInputArgument(pvApiCtx, 1, 7);
CheckOutputArgument(pvApiCtx, 1, 3);
//Image Retrieval
//Get Address of the Image List
sciErr = getVarAddressFromPosition(pvApiCtx, 1, &imgAddr);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Get Number of items in the list
sciErr = getListItemNumber(pvApiCtx, imgAddr, &no_item_list);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Check if it is a Grayscal image by checking whether 1 item is present in the list
if( no_item_list == 1)
{
//Address of the Grayscale Matrix
sciErr = getListItemAddress(pvApiCtx, imgAddr, 1, &piAddrChild);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Check whether it is an integer Matrix or not
if(isIntegerType(pvApiCtx, piAddrChild))
{
//If integer matrix getting precision
sciErr = getMatrixOfIntegerPrecision(pvApiCtx, piAddrChild, &iPrec);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Based on precision Read the matrix
switch(iPrec)
{
case SCI_UINT8: //for unsigned integer 8
{
unsigned char *pstDatagray = NULL;
sciErr = getMatrixOfUnsignedInteger8InList(pvApiCtx, imgAddr, 1, &iRows, &iCols, &pstDatagray);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
image = Mat(iRows,iCols,CV_8UC1);
for(i=0;i<iRows;i++)
for(j=0;j<iCols;j++)
image.at<uchar>(i,j)=pstDatagray[i+iRows*j];
break;
}
case SCI_UINT16: //for unsigned integer 16
{
short unsigned int *pstDatagray = NULL;
sciErr = getMatrixOfUnsignedInteger16InList(pvApiCtx, imgAddr, 1, &iRows, &iCols, &pstDatagray);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
image = Mat(iRows,iCols,CV_16UC1);
for(i=0;i<iRows;i++)
for(j=0;j<iCols;j++)
image.at<ushort>(i,j)=pstDatagray[i+iRows*j];
break;
}
case SCI_INT32: //for unsigned integer 32
{
int *pstDatagray = NULL;
sciErr = getMatrixOfInteger32InList(pvApiCtx, imgAddr, 1, &iRows, &iCols, &pstDatagray);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
image = Mat(iRows,iCols,CV_32SC1);
for(i=0;i<iRows;i++)
for(j=0;j<iCols;j++)
image.at<int>(i,j)=pstDatagray[i+iRows*j];
break;
}
}
}
else
{
//If not Integer then must be double
double *pstDatagray = NULL;
sciErr = getVarAddressFromPosition(pvApiCtx, 1, &imgAddr);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
sciErr = getMatrixOfDoubleInList(pvApiCtx, imgAddr, 1, &iRows, &iCols, &pstDatagray);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
image = Mat(iRows,iCols,CV_64FC1);
for(i=0;i<iRows;i++)
for(j=0;j<iCols;j++)
image.at<double>(i,j)=pstDatagray[i+iRows*j];
}
}
//If not single element in list than it is not a grayscale image and hence error
else
{
Scierror(999,"Expecting a single Matrix in grayscale format\n");
return 0;
}
//Get the Number of Arguments
inp_params = *getNbInputArgument(pvApiCtx);
//Based on Number of Arguments Evaluate each Argument
for(i=2; i<inp_params; i++)
{
//Reading the Name of the Argument
sciErr = getVarAddressFromPosition(pvApiCtx, i, &piAddr1);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Check for Argument type
if( !isStringType(pvApiCtx, piAddr1))
{
Scierror(999, "%s: Wrong type of argument #%d. A string is expected.\n", fname, 1);
return 0;
}
//Matrix of Stings
sciErr = getMatrixOfString(pvApiCtx, piAddr1, &Rows, &Cols, NULL, NULL);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
len = (int*)malloc(sizeof(int) * Rows * Cols);
//second call to retrieve the length of the string
sciErr = getMatrixOfString(pvApiCtx, piAddr1, &Rows, &Cols, len, NULL);
if(sciErr.iErr)
{
printError(&sciErr, 0);
free(len);
return 0;
}
arg = (char**)malloc(sizeof(char*) * Rows * Cols);
for(int j=0;j< Rows * Cols; j++)
{
arg[j] = (char*)malloc(sizeof(char) * (len[j] + 1));
}
//third call to retrieve data
sciErr = getMatrixOfString(pvApiCtx, piAddr1, &Rows, &Cols, len, arg);
if(sciErr.iErr)
{
printError(&sciErr, 0);
free(len);
free(arg);
return 0;
}
//Evaluating the Read Arguments Name
//MinContrast Argument
if(strcmp(arg[0],"MinContrast") == 0)
{
if(count_c == 0)
{
sciErr = getVarAddressFromPosition(pvApiCtx, i+1, &piAddr2);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Checking the type of value
if( !isDoubleType(pvApiCtx, piAddr2))
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
//Reading the Value of the argument
sca_read = getScalarDouble(pvApiCtx, piAddr2, &arg_val);
if(sca_read)
{
Scierror(999,"Not a valid value.\n");
return 0;
}
//Check for valid range
if(arg_val<0 && arg_val>=1)
{
Scierror(999,"Not a valid range.Should be between 0 and 1.\n");
return 0;
}
//Threshold Calculation
else thresh_c = 256*arg_val;
i++; //Incrementing iterator to count for the value argument read
count_c += 1; //Indicating MinContrast has been called once
}
else
{
Scierror(999,"Specified MinContrast twice. Check Arguments\n");
return 0;
}
}
//MinQuality Argument
else if(strcmp(arg[0],"MinQuality") == 0)
{
if(count_q == 0)
{
sciErr = getVarAddressFromPosition(pvApiCtx, i+1, &piAddr2);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Checking the type of Value
if( !isDoubleType(pvApiCtx, piAddr2))
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
//Reading the Value of argument
sca_read = getScalarDouble(pvApiCtx, piAddr2, &arg_val);
if(sca_read)
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
//Cheack for valid range
if(arg_val<0 && arg_val>=1)
{
Scierror(999,"Not a valid range.Should be between 0 and 1.\n");
return 0;
}
//Threshold Calculation
else thresh_q = 240*arg_val;
i++; //Incrementing iterator to count for the value argument read
count_q += 1; //Indicating MinQuality has been called once
}
else
{
Scierror(999,"Specified MinQuality twice. Check Arguments\n");
return 0;
}
}
//ROI Argument
else if(strcmp(arg[0],"ROI") == 0)
{
if(count_r == 0)
{
sciErr = getVarAddressFromPosition(pvApiCtx, i+1, &piAddr2);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Checking the type of argument
if( !isDoubleType(pvApiCtx, piAddr2))
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
//Reading the Value of the argument
sciErr = getMatrixOfDouble(pvApiCtx, piAddr2, &rows, &cols, &roi_arg);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Assigning the elements of the list to their proper function
x = roi_arg[0];
y = roi_arg[1];
width = roi_arg[2];
height = roi_arg[3];
//Code for reading the value associated with ROI individually rather than in a list form
/*sca_read = getScalarDouble(pvApiCtx, piAddr2, &x);
if(sca_read)
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
sciErr = getVarAddressFromPosition(pvApiCtx, i+2, &piAddr3);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
sca_read = getScalarDouble(pvApiCtx, piAddr3, &y);
if(sca_read)
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
sciErr = getVarAddressFromPosition(pvApiCtx, i+3, &piAddr4);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
sca_read = getScalarDouble(pvApiCtx, piAddr4, &width);
if(sca_read)
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}
sciErr = getVarAddressFromPosition(pvApiCtx, i+4, &piAddr5);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
sca_read = getScalarDouble(pvApiCtx, piAddr5, &height);
if(sca_read)
{
Scierror(999,"Not a valid type of value.\n");
return 0;
}*/
//Checking for valid crop area
if(x>=image.cols || y>=image.rows || x<0 || y<0)
{
sciprint("Invalid x or y value\n");
return 0;
}
if(width<=0 || height<=0 || x+width > image.cols || y+height > image.rows)
{
sciprint("Invalid width or height value\n");
return 0;
}
//Croppint the image
Rect myROI(x, y, width, height);
Mat croppedRef(image, myROI);
croppedRef.copyTo(cropped);
i++; //Incrementing iterator to count for the value argument read
count_r += 1; //Indicating ROI has been called once
}
else
{
Scierror(999,"Specified ROC twice. Check Arguments\n");
return 0;
}
}
else
{
Scierror(999,"Invalid Argument\n");
return 0;
}
}
//Calculating the effective threshold by selecting the maximum threshold
if(thresh_c > 0 && thresh_c >= thresh_q)
thresh = thresh_c;
else if(thresh_q > 0 && thresh_q > thresh_c)
thresh = thresh_q;
else thresh = 256*0.2;
//Implementing FAST Algorithm
if(count_r != 0)
FAST(cropped, keypoints, thresh, 1);
else
FAST(image, keypoints, thresh, 1);
count = keypoints.size();
metric = (double*)malloc(sizeof(double)*keypoints.size()*1);
for( i=0; i<keypoints.size(); i++)
{
metric[i] = keypoints[i].response;
}
//Returning the obtained point co-ordinates
//Checking what type of Input matrix image was
//If input matrix was integer
if(isIntegerType(pvApiCtx, piAddrChild))
{
//Based on Precision of the Image given in input
switch(iPrec)
{
case SCI_UINT8: {
//Output point Matrix
unsigned char *point = (unsigned char *)malloc(keypoints.size()*2*sizeof(char));
for(i=0;i!=keypoints.size();i++)
{
point[i] = keypoints[i].pt.x + x;
point[keypoints.size()+i] = keypoints[i].pt.y + y;
}
sciErr = createMatrixOfUnsignedInteger8(pvApiCtx, nbInputArgument(pvApiCtx) + 1, int(keypoints.size()), 2, point);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
free(point);
break;
}
case SCI_UINT16:{
//Output point Matrix
unsigned short *point = (unsigned short *)malloc(keypoints.size()*2*sizeof(short));
for(i=0;i!=keypoints.size();i++)
{
point[i] = keypoints[i].pt.x + x;
point[keypoints.size()+i] = keypoints[i].pt.y + y;
}
sciErr = createMatrixOfUnsignedInteger16(pvApiCtx, nbInputArgument(pvApiCtx) + 1, int(keypoints.size()), 2, point);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
free(point);
break;
}
case SCI_INT32: {
//Output Point Matrix
int *point = (int *)malloc(keypoints.size()*2*sizeof(int));
for(i=0;i!=keypoints.size();i++)
{
point[i] = keypoints[i].pt.x + x;
point[keypoints.size()+i] = keypoints[i].pt.y + y;
}
sciErr = createMatrixOfInteger32(pvApiCtx, nbInputArgument(pvApiCtx) + 1, int(keypoints.size()), 2, point);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
free(point);
break;
}
}
}
//If not Integer than must be double input image
else
{
//Ouput point matrix
double *point = (double *)malloc(keypoints.size()*2*sizeof(double));
for(i=0;i!=keypoints.size();i++)
{
point[i] = keypoints[i].pt.x + x;
point[keypoints.size()+i] = keypoints[i].pt.y + y;
}
sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 1, keypoints.size(), 2, point);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
free(point);
}
sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 2, 1, 1, &count);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 3, keypoints.size(), 1, metric);
if(sciErr.iErr)
{
printError(&sciErr, 0);
return 0;
}
//Returning the Output Matrix
AssignOutputVariable(pvApiCtx, 1) = nbInputArgument(pvApiCtx) + 1;
AssignOutputVariable(pvApiCtx, 2) = nbInputArgument(pvApiCtx) + 2;
AssignOutputVariable(pvApiCtx, 3) = nbInputArgument(pvApiCtx) + 3;
ReturnArguments(pvApiCtx);
return 0;
}
}
|