Posted here are references which are vital on my every projects development purposes. Hope to share this information with everyone, who, in one way or another, find it interestingly helpfull on projects like Image Checker Software Development.
ContourAnalysis
Complex[] newPoint = new Complex[newCount]; for (int i = 0; i < Count; i++) newPoint[i * newCount / Count] += this[i];
k
Complex[] newPoint = new Complex[newCount]; for (int i = 0; i < newCount; i++) { double index = 1d * i * Count / newCount; int j = (int)index; double k = index - j; newPoint[i] = this[j] * (1 - k) + this[j + 1] * k; }
Contour
Template
name
TemplateFinder
FoundTemplateDesc
ContourAnalysisProcessing
ImageProcessor
ImageProcessor.ProcessImage()
ImageProcessor.samples
ImageProcessor.foundTemplates
AdaptiveThreshold
TemplateGenerator
No comments:
Post a Comment