C# 클래스 SANTA.Controller.ImageRecognition

A class that performs image recognition on an image.
파일 보기 프로젝트 열기: siegleal/iSanta

공개 메소드들

메소드 설명
ProcessImage ( String filename, int shotsFired, int pixelsPerRadius, int ROIx, int ROIy, int ROIheight, int ROIwidth ) : List

Performs image recognition on an image returning a list of points where possible bullet holes are located.

TestImageRecognition ( ) : void

Tests the image recognition module.

메소드 상세

ProcessImage() 공개 정적인 메소드

Performs image recognition on an image returning a list of points where possible bullet holes are located.
public static ProcessImage ( String filename, int shotsFired, int pixelsPerRadius, int ROIx, int ROIy, int ROIheight, int ROIwidth ) : List
filename String The filename of the image.
shotsFired int The number of bullet holes to look for.
pixelsPerRadius int The approximate number of pixels per radius of a bullet hole.
ROIx int The x-coordinate of the top left corner of the region of interest.
ROIy int The y-coordinate of the top left corner of the region of interest.
ROIheight int The height in pixels of the region of interest.
ROIwidth int The width in pixels of the region of interest.
리턴 List

TestImageRecognition() 공개 정적인 메소드

Tests the image recognition module.
public static TestImageRecognition ( ) : void
리턴 void