Aspose.Imaging.Accord.Adapter 24.11.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Imaging.Accord.Adapter --version 24.11.0
                    
NuGet\Install-Package Aspose.Imaging.Accord.Adapter -Version 24.11.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.Imaging.Accord.Adapter" Version="24.11.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aspose.Imaging.Accord.Adapter" Version="24.11.0" />
                    
Directory.Packages.props
<PackageReference Include="Aspose.Imaging.Accord.Adapter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aspose.Imaging.Accord.Adapter --version 24.11.0
                    
#r "nuget: Aspose.Imaging.Accord.Adapter, 24.11.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Aspose.Imaging.Accord.Adapter&version=24.11.0
                    
Install Aspose.Imaging.Accord.Adapter as a Cake Addin
#tool nuget:?package=Aspose.Imaging.Accord.Adapter&version=24.11.0
                    
Install Aspose.Imaging.Accord.Adapter as a Cake Tool

Aspose.Imaging.Accord.Adapter for .NET

Aspose.Imaging.Accord.Adapter is designed to extend the functionality of the Aspose.Imaging library by adding functions from FileFormat.Accord library. This association allows all raster formats supported by the Aspose.Imaging library to be covered by popular methods from the FileFormat.Accord library. The following methods from the FileFormat.Aссord library are applicable to all raster formats of the Aspose.Imaging library:

  • CornerDetector(FastCornersDetector, HarrisCornersDetector),
  • FastRetinaKeypointDetector,
  • SpeededUpRobustFeaturesDetector,
  • GrayLevelCooccurrenceMatrix,
  • FindContour,
  • GetIntegralImage,
  • FeatureExtracor(Haralick, HistogramsOfOrientedGradients)
  • ApplyFilter (DifferenceOfGaussians, GaborFilter, NiblackThreshold, SaulovaThreshold)

More details

Platform dependence

Aspose.Imaging.Accord.Adapter for .NET can be used to develop applications on Windows Desktop (x86, x64), Windows Server (x86, x64), Windows Azure, Windows Embedded (CE 6.0 R2), as well as Linux x64. The supported platforms include .Net7.0, .Net8.0.

New Features & Enhancements in Version 24.11

New project

Getting Started with Aspose.Imaging.Accord.Adapter for .NET

Are you ready to give Aspose.Imaging.Accord.Adapter for .NET a try? Simply execute

Install-Package Aspose.Imaging.Accord.Adapter

from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Imaging.Accord.Adapter for .NET and want to upgrade the version, please execute

Update-Package Aspose.Imaging.Accord.Adapter

to get the latest version.

Product dependencies

This product is dependent on :

Usage example

Corner Detector

Aspose.Imaging.License imagingLic = new License();
imagingLic.SetLicense("license.lic");

using (var image = (RasterImage)Image.Load("polygons.cdr.png"))
{
	//detect corners
    var points = image.CornerDetector(image.Bounds, new FastCornersDetectorProperties());
    foreach (var point in points)
    {
        Console.WriteLine(point);
    }
}

Fast Retina Keypoint Detector

Aspose.Imaging.License imagingLic = new License();
imagingLic.SetLicense("license.lic");

using (var image = (RasterImage)Image.Load("polygons.cdr.png"))
{
    //detect keypoints
    var points = image.FastRetinaKeypointDetector(image.Bounds, new HarrisCornersDetectorProperties());
    Console.WriteLine(points.Count);
    Console.WriteLine(points[0].ToBase64());
}

Feature extractor


Aspose.Imaging.License imagingLic = new License();
imagingLic.SetLicense("license.lic");

using (var image = (RasterImage)Image.Load("polygons.cdr.png"))
{
    //detect features
    var descriptors = image.FeatureExtracor(image.Bounds, new HistogramsOfOrientedGradientsProperties());
    foreach (var descriptor in descriptors)
    {
        Console.WriteLine(descriptor);   
    }
}
 

Apply filter


Aspose.Imaging.License imagingLic = new License();
imagingLic.SetLicense("license.lic");

using (var image = (RasterImage)Image.Load("lena.jpg"))
{
    //Apply filter
    image.ApplyFilter(image.Bounds, new NiblackThresholdProperties());
    image.Save("lena_filtered.jpg");
}
 
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.11.1 1 11/27/2024
24.11.0 0 11/27/2024