同步操作将从 海洋饼干/AForge.NET 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// AForge Image Processing Library// AForge.NET framework// http://www.aforgenet.com/framework///// Copyright Andrew Kirillov, 2005-2009// andrew.kirillov@aforgenet.com//// Copyright Joan Charmant, 2008// joan.charmant@gmail.com//namespace AForge.Imaging{using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imaging;/// <summary>/// Block matching interface./// </summary>////// <remarks><para>The interface specifies set of methods, which should be implemented by different/// block matching algorithms.</para>////// <para>Block matching algorithms work with two images - source and search image - and/// a set of reference points. For each provided reference point, the algorithm takes/// a block from source image (reference point is a coordinate of block's center) and finds/// the best match for it in search image providing its coordinate (search is done within/// search window of specified size). In other words, block matching algorithm tries to/// find new coordinates in search image of specified reference points in source image./// </para>/// </remarks>///public interface IBlockMatching{/// <summary>/// Process images matching blocks between them./// </summary>////// <param name="sourceImage">Source image with reference points.</param>/// <param name="coordinates">List of reference points to be matched.</param>/// <param name="searchImage">Image in which the reference points will be looked for.</param>////// <returns>Returns list of found block matches.</returns>///List<BlockMatch> ProcessImage( Bitmap sourceImage, List<IntPoint> coordinates, Bitmap searchImage );/// <summary>/// Process images matching blocks between them./// </summary>////// <param name="sourceImageData">Source image with reference points.</param>/// <param name="coordinates">List of reference points to be matched.</param>/// <param name="searchImageData">Image in which the reference points will be looked for.</param>////// <returns>Returns list of found block matches.</returns>///List<BlockMatch> ProcessImage( BitmapData sourceImageData, List<IntPoint> coordinates, BitmapData searchImageData );/// <summary>/// Process images matching blocks between them./// </summary>////// <param name="sourceImage">Source unmanaged image with reference points.</param>/// <param name="coordinates">List of reference points to be matched.</param>/// <param name="searchImage">Unmanaged image in which the reference points will be looked for.</param>////// <returns>Returns list of found block matches.</returns>///List<BlockMatch> ProcessImage( UnmanagedImage sourceImage, List<IntPoint> coordinates, UnmanagedImage searchImage );}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。