Browse Source

Comments

Former-commit-id: 89e20176e82973d3383abfc6c205349ed2db3e52
Former-commit-id: da4936d80e2a5dde736254b7b2fe8ee881e04336
Former-commit-id: 65c3212d30a4cae2f499c2369f59b176ace757b8
pull/1/head
James Jackson-South 10 years ago
parent
commit
640583c9df
  1. 4
      src/ImageProcessorCore/Bootstrapper.cs

4
src/ImageProcessorCore/Bootstrapper.cs

@ -9,9 +9,10 @@ namespace ImageProcessorCore
using System.Collections.Generic;
using System.Collections.ObjectModel;
using ImageProcessorCore.Formats;
using System.Threading.Tasks;
using Formats;
/// <summary>
/// Provides initialization code which allows extending the library.
/// </summary>
@ -77,6 +78,7 @@ namespace ImageProcessorCore
/// Gets an instance of the correct <see cref="IPixelAccessor"/> for the packed vector.
/// </summary>
/// <typeparam name="T">The type of pixel data.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
/// <param name="image">The image</param>
/// <returns>The <see cref="IPixelAccessor"/></returns>
public IPixelAccessor<T, TP> GetPixelAccessor<T, TP>(IImageBase image)

Loading…
Cancel
Save