OpenCVSharpを使用して画像の中の輪郭?色の境界?を検出する。
処理のイメージは、画像の中心からいっぱいに一つの丸を描いて輪郭が出てくるまで徐々に狭めていく。
どれくらいまで敏感に輪郭に反応するかは、
$tremCriteria = New-Object OpenCvSharp.CvTermCriteria(270)
の値を大きくすれば、よりはっきりと囲まれる。
- [void][System.Reflection.Assembly]::LoadFrom((Join-Path $pwd OpenCvSharp.dll))
- # グレースケールで読み込む
- $srcIplImage = [OpenCvSharp.Cv]::LoadImage((Join-Path $pwd "src.jpg"), [OpenCvSharp.LoadMode]::GrayScale)
- $dstIplImage = New-Object OpenCvSharp.IplImage($srcIplImage.Size, [OpenCvSharp.BitDepth]::U8, 3)
- [OpenCvSharp.CvPoint[]]$contour = New-Object OpenCvSharp.CvPoint[] 100
- # 中心点
- $center = New-Object OpenCvSharp.CvPoint(($srcIplImage.Width / 2), ($srcIplImage.Height / 2))
- # 全体をかこむ丸を作る
- for ($i = 0; $i -lt $contour.Length; $i++) {
- $contour[$i] = New-Object OpenCvSharp.CvPoint([int]($center.X * [System.Math]::Cos(2 * [System.Math]::PI * $i / $contour.Length) + $center.X), [int]($center.Y * [System.Math]::Sin(2 * [System.Math]::PI * $i / $contour.Length) + $center.Y))
- }
- $size = New-Object OpenCvSharp.CvSize(15, 15)
- $tremCriteria = New-Object OpenCvSharp.CvTermCriteria(270)
- $alpha = [System.Single]0.45
- $beta = [System.Single]0.35
- $gamma = [System.Single]0.2
- # 輪郭を検出
- $srcIplImage.SnakeImage($contour, $alpha, $beta, $gamma, $size, $tremCriteria, $true)
- [OpenCvSharp.Cv]::CvtColor($srcIplImage, $dstIplImage, [OpenCvSharp.ColorConversion]::GrayToRgb)
- # 赤で輪郭を描く
- $color = [OpenCvSharp.CvColor]::Red
- for ($i = 0; $i -lt ($contour.Length - 1); $i++) {
- $dstIplImage.Line($contour[$i], $contour[($i + 1)], $color, 2)
- }
- $dstIplImage.Line($contour[($contour.Length -1)], $contour[0], $color, 2)
- $dstIplImage.SaveImage((Join-Path $pwd "dst.jpg"))
- $srcIplImage.Dispose()
- $dstIplImage.Dispose()
0 コメント:
コメントを投稿