-
Notifications
You must be signed in to change notification settings - Fork 93
/
phpdoc.php
1649 lines (1413 loc) · 33.6 KB
/
phpdoc.php
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* This file is helper for autocomplete and highlighting in PhpStorm and another IDEs
* @author: morozovsk
* @link: https://github.com/morozovsk
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace CV;
/**
* Class Mat
* @package CV
*/
class Mat {
/**
* @var
*/
public $rows;
/**
* @var
*/
public $cols;
/**
* @var
*/
public $type;
/**
* @var
*/
public $dims;
/**
* @var
*/
public $shape;
/**
* Mat constructor.
* @param int $rows
* @param int $cols
* @param int $type
* @param Scalar|null $scalar
*/
function __construct(int $rows = 0, int $cols = 0, int $type = 0, Scalar $scalar = null) {
}
/**
* @return null
*/
public function print() {
return null;
}
/**
* @return array
*/
public function data() {
return [];
}
/**
* @return int
*/
public function type() {
}
/**
* @return int
*/
public function depth() {
}
/**
* @return int
*/
public function channels() {
}
/**
* @return int
*/
public function empty() {
}
/**
* @param int $rows
* @param int $cols
* @param int $flags
* @return Mat|null
*/
public function ones(int $rows, int $cols, int $flags) {
}
/**
* @param int $rows
* @param int $cols
* @param int $flags
* @return Mat|null
*/
public function zeros(int $rows, int $cols, int $flags) {
}
/**
* @param Size $size
* @param int $flags
* @return Mat|null
*/
public function zerosBySize(Size $size, int $flags) {
}
/**
* @return Mat
*/
public function clone() {
}
/**
* @return bool
*/
public function isContinuous() {
}
/**
* @return bool
*/
public function isSubmatrix() {
}
/**
* @param $y
* @return Mat|null
*/
public function row($y) {
}
/**
* @param $y
* @return Mat|null
*/
public function col($x) {
}
/**
* @param array $rect
* @return Mat $image
*/
public function getImageROI(Rect $rect) {
}
/**
* @param Mat $mat
* @param Mat|null $to
* @return null
*/
public function copyTo(Mat $mat, Mat $to = null) {
return null;
}
/**
* @param int $row
* @param int $col
* @param int $channel
* @param null $value
* @return int|null
*/
public function at(int $row, int $col, int $channel = 0, $value = null) {
}
/**
* @param array $idx
* @param int $channel
* @param int|float|null $value
* @return int|float
*/
public function atIdx(array $idx, int $channel = 1, $value = null) {
}
/**
* @param int $index
* @return int|float
*/
public function dataAt(int $index) {
}
/**
* @param array $data
* @return null
*/
public function setData(array $data) {
}
/**
* @param Mat $src
* @param int $offset
* @return null
*/
public function useDataFrom(Mat $src, int $offset = 0) {
}
/**
* @return int
*/
public function total() {
}
/**
* @param Mat $dst
* @param int $rtype
* @param float|null $alpha
* @param float|null $beta
* @return null
*/
public function convertTo(Mat &$dst, int $rtype, float $alpha = null, float $beta = null) {
return null;
}
/**
* @return Size
*/
public function size() {
return new Size($this->cols, $this->rows);
}
/**
* @param int $number
* @return Mat|null
*/
public function plus(int $number) {
}
/**
* @param float $number
* @return Mat|null
*/
public function divide(float $number) {
}
/**
* @param Mat $value1
* @param Mat $value2
* @return Mat|null $mat
*/
public function add(Mat $value1, Mat $value2) {
}
/**
* @param Mat $value1
* @param Mat $value2
* @return Mat|null $mat
*/
public function subtract(Mat $value1, Mat $value2) {
}
/**
* @return Mat|null $mat
*/
public function t() {
}
/**
* @param int $diag
* @return Mat|null $mat
*/
public function diag(int $diag) {
}
/**
* @param int $dims
* @param array $shape
* @param int $type
* @return Mat|null
*/
public function createWithDims(int $dims, array $shape, int $type) {
return new Mat();
}
}
/**
* Class Rect
* @package CV
*/
class Rect {
/**
* @var
*/
public $x;
/**
* @var
*/
public $y;
/**
* @var
*/
public $width;
/**
* @var
*/
public $height;
/**
* Rect constructor.
* @param int $x
* @param int $y
* @param int $width
* @param int $height
*/
function __construct(int $x = 0, int $y = 0, int $width = 0, int $height = 0)
{
}
/**
* @return Point
*/
public function tl() {
return new Point($this->x, $this->y);
}
/**
* @return Point
*/
public function br() {
return new Point($this->x + $this->width, $this->y + $this->height);
}
/**
* @return Size
*/
public function size() {
return new Size($this->width, $this->height);
}
/**
* @return float|int
*/
public function area() {
return $this->width * $this->height;
}
/**
* @return null
*/
public function print() {
return null;
}
}
/*class RotatedRect {
function __construct(Point $center = null, Size $size = null, float $angle = 0.0)
{
}
}*/
/**
* Class Rect
* @package CV
*/
class Point {
/**
* @var
*/
public $x;
/**
* @var
*/
public $y;
function __construct(int $x = 0, int $y = 0) {
}
/**
* @return null
*/
public function print() {
return null;
}
}
/**
* Class Scalar
* @package CV
*/
class Scalar {
/**
* Scalar constructor.
* @param int $value1
* @param int $value2
* @param int $value3
* @param int $value4
*/
function __construct(int $value1 = 0, int $value2 = 0, int $value3 = 0, int $value4 = 0)
{
}
/**
* @return null
*/
public function print() {
return null;
}
}
/**
* Class Size
* @package CV
*/
class Size {
/**
* @var
*/
public $width;
/**
* @var
*/
public $height;
/**
* Size constructor.
* @param int $width
* @param int $height
*/
function __construct($width = 0, $height = 0)
{
}
/**
* @return null
*/
public function print() {
return null;
}
}
/**
* Class CascadeClassifier
* @package CV
*/
class CascadeClassifier {
/**
* @param string $filename
*/
public function load(string $filename) {
}
/**
* @param Mat $image
* @param array $objects
* @param float $scale_factor
* @param int $min_neighbors
* @param int $flags
* @param Size|null $minSize
* @param Size|null $maxSize
* @return null
*/
public function detectMultiScale(Mat $image, array &$rects, float $scale_factor = 1.1, int $min_neighbors = 3, int $flags = 0, Size $minSize = null, Size $maxSize = null) {
return null;
}
}
/**
* @param string $filename
* @param null $flags
* @return Mat|null
*/
function imread(string $filename, $flags = null) {
}
/**
* @param string $filename
* @param Mat $image
* @return true|null
*/
function imwrite(string $filename, Mat $image) {
}
/**
* @param Mat $image
* @param $code
* @return Mat|null
*/
function cvtColor(Mat $image, $code, $dstCn = null) {
}
/**
* @param Mat $image
* @param Point $startPoint
* @param Point $endPoint
* @param Scalar $color
* @param int $thickness
* @param int|null $lineType
* @param int $shift
* @return null
*/
function line(Mat $image, Point $startPoint, Point $endPoint, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param Point $point
* @param int $radius
* @param Scalar $color
* @param null $thickness
* @param int $lineType
* @param int $shift
* @return null
*/
function circle(Mat $image, Point $point, int $radius, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param Point $point
* @param Size $size
* @param int $angle
* @param int $startAngle
* @param int $endAngle
* @param Scalar $color
* @param int $thickness
* @param int $lineType
* @param int $shift
* @return null
*/
function ellipse(Mat $image, Point $point, Size $size, int $angle, int $startAngle, int $endAngle, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param int $startX
* @param int $startY
* @param int $endX
* @param int $endY
* @param Scalar $color
* @param int $thickness
* @param int $lineType
* @param int $shift
* @return null
*/
function rectangle(Mat &$image, int $startX, int $startY, int $endX, int $endY, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param Point $startPoint
* @param Point $endPoint
* @param Scalar $color
* @param int $thickness
* @param int|null $lineType
* @param int $shift
* @return null
*/
function rectangleByPoint(Mat $image, Point $startPoint, Point $endPoint, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param Rect $rect
* @param Scalar $color
* @param int $thickness
* @param int|null $lineType
* @param int $shift
* @return null
*/
function rectangleByRect(Mat $image, Rect $rect, Scalar $color, int $thickness = 1, int $lineType = null, int $shift = 0) {
return null;
}
/**
* @param Mat $image
* @param string $text
* @param Point $point
* @param int $fontFace
* @param float $fontScale
* @param Scalar $color
* @param int $thickness
* @param int|null $lineType
* @param bool $bottomLeftOrigin
* @return null
*/
function putText(Mat $image, string $text, Point $point, int $fontFace, float $fontScale, Scalar $color, int $thickness = 1, int $lineType = null, bool $bottomLeftOrigin = false) {
return null;
}
/**
* @param Mat $image
* @param Mat $dst
* @return null
*/
function equalizeHist(Mat $image, Mat &$dst) {
return null;
}
/**
* @param Mat $image
* @param Mat $dst
* @param Size $size
* @param float $fx
* @param float $fy
* @param int $interpolation
* @return null
*/
function resize(Mat $image, Mat &$dst, Size $size, float $fx = 0, float $fy = 0, int $interpolation = 1) {
return null;
}
/**
* @param Mat $mat
* @param Mat $dst
* @param float $thresh
* @param float $maxval
* @param int $type
* @return float
*/
function threshold(Mat $mat, Mat &$dst, float $thresh, float $maxval, int $type) {
}
/**
* @param Mat $mat
* @return array
*/
function split(Mat $mat) {
return [];
}
/**
* @param array $channels
* @param Mat $dst
* @return null
*/
function merge(array $channels, Mat &$dst) {
return null;
}
/**
* @param Mat $mat
* @param Mat $dst
* @param int $top
* @param int $bottom
* @param int $left
* @param int $right
* @param int $borderType
* @param Scalar|null $color
* @return null
*/
function copyMakeBorder(Mat $mat, Mat &$dst, int $top, int $bottom, int $left, int $right, int $borderType, Scalar $color = null) {
return null;
}
/**
* @param string $trackbarname
* @param string $winname
* @param int $value
* @param int $count
* @param callable|null $onChange
*/
function createTrackbar(string $trackbarname, string $winname, int $value, int $count, callable $onChange = null)
{
}
/**
* @param String $winname
*/
function destroyWindow(String $winname)
{
}
/**
* getOptimalDFTSize函数返回给定向量尺寸的傅立叶最优尺寸大小。
* 为了提高离散傅立叶变换的运行速度,需要扩充图像,
* 而具体扩充多少,就有这个函数来计算得到。
*
* @param int $vecsize 需要计算最优的原始大小
*
* @return int 返回最优大小
*/
function getOptimalDFTSize(int $vecsize)
{
}
/**
* 获取滑动条的值
* @param String $trackbarname 轨迹条的名称
* @param String $winname 轨迹条的父窗口名称
* @return int
*/
function getTrackBarPos(String $trackbarname, String $winname)
{
}
/**
* @return int
*/
function getTickCount()
{
}
/**
* @return float
*/
function getTickFrequency()
{
}
/**
* @param String $winname
* @param null $onMouse
*/
function setMouseCallback(String $winname, $onMouse = null)
{
}
/**
* 返回外部矩形边界
*
* @param array $points point数组
*
* @return Rect
*/
function boundingRect(array $points)
{
}
/**
* @param Point $center
* @param float $angle
* @param float $scale
* @return Mat
*/
function getRotationMatrix2D(Point $center, float $angle, float $scale) {
}
/**
* @param Mat $src
* @param Mat $dst
* @param Mat $M
* @param Size $dsize
* @param int $flags
* @param int $borderMode
* @param Scalar $border_value
* @return null
*/
function warpAffine(Mat $src, Mat $dst, Mat $M, Size $dsize, int $flags = null, int $borderMode = null, Scalar $border_value = null) {
}
/**
* @param Mat $image
* @param Size $patch_size
* @param Point $center
* @param Size $dsize
* @param object $patch
* @param int $patchType
* @return Mat
*/
function getRectSubPix(Mat $image, Size $patch_size, Point $center, object $patch, int $patchType = null) {
}
/**
* @param array $src
* @param array $dst
* @param int $solveMethod
* @return Mat
*/
function getPerspectiveTransform(array $src, array $dst, int $solveMethod = null) {
}
/**
* @param Mat $src
* @param Mat $dst
* @param Mat $M
* @param Size $dsize
* @param int $flags
* @param int $borderMode
* @param Scalar $border_value
* @return null
*/
function warpPerspective(Mat $src, Mat $dst, Mat $M, Size $dsize, int $flags = null, int $borderMode = null, Scalar $border_value = null) {
}
/**
* @param int $n
*
* @return int
*/
function CV_8UC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_8SC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_16UC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_16SC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_32SC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_32FC(int $n)
{
}
/**
* @param int $n
*
* @return int
*/
function CV_64FC(int $n)
{
}
/**
* GUI展示图片
* @param string $windowName 窗口名称
* @param Mat $mat 需要展示的Mat矩阵
*/
function imshow(string $windowName, Mat $mat)
{
}
/**
* 等待输入建输出后继续执行,
* 如果$sec大于0的等待多少秒,如果为0则一直等待
* @param int $sec 单位秒
*/
function waitKey(int $sec)
{
}
/**
* 移动窗口
* @param string $winname
* @param int $x
* @param int $y
*/
function moveWindow(string $winname, int $x, int $y)
{
}
/**
* 创建窗口
* @param string $winname
* @param int $flags
*/
function namedWindow(string $winname, int $flags = WINDOW_AUTOSIZE)
{
}
function addWeighted(Mat $src1, float $alpha, Mat $src2, float $beta, float $gamma, Mat &$dst = NULL, int $dtype = -1)
{
}
function dft(Mat $src, Mat $dst, int $flags = 0, int $nonzeroRows = 0)
{
}
/**
* @param Mat $x
* @param Mat $y
* @param Mat $dst
*/
function magnitude(Mat $x, Mat $y, Mat $dst)
{
}
/**
* @param Mat|Scalar $src1
* @param Mat|Scalar $src2
* @param Mat|Scalar $dst
*/
function add($src1, $src2, $dst)
{
}
function log() {}
/**
* @param Mat $src
* @param Mat $dst
* @param int $alpha
* @param int $beta
* @param int $norm_type
* @param int $dtype
*/
function normalize(Mat $src, Mat $dst, int $alpha = 1, int $beta = 0, int $norm_type = NORM_L2, $dtype = -1)
{
}
/**
* @param Mat $src
* @param int $norm_type
*/
function norm(Mat $src, int $norm_type = NORM_L2)
{
}
/**
* @param Mat $src
* @param Mat $mean