Skip to content

Commit

Permalink
meanStdDev
Browse files Browse the repository at this point in the history
  • Loading branch information
morozovsk committed Feb 18, 2021
1 parent 4e171c4 commit 98abdbc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion phpdoc.php
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,16 @@ function norm(Mat $src, int $norm_type = NORM_L2)

}

/**
* @param Mat $src
* @param Mat $mean
* @param Mat $sdv
*/
function meanStdDev(Mat $src, Mat &$mean, Mat &$sdv)
{

}

function GaussianBlur(Mat $src, Mat $dst, Size $ksize, double $sigmaX, double $sigmaY = 0, $borderType = BORDER_DEFAULT)
{

Expand Down Expand Up @@ -1411,7 +1421,7 @@ public function forward(string $name = '') {
* @param bool $crop
* @return Mat
*/
function blobFromImage(Mat $image, float $scalefactor = 1.0, Size $size, Scalar $mean, $swapRB = true, $crop = true) {
function blobFromImage(Mat $image, float $scalefactor = 1.0, Size $size, Scalar $mean, $swapRB = false, $crop = false) {
return new Mat();
}

Expand Down

0 comments on commit 98abdbc

Please sign in to comment.