Aspose.Imaging.Accord.Adapter
24.11.0
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
<PackageReference Include="Aspose.Imaging.Accord.Adapter" Version="24.11.0" />
<PackageVersion Include="Aspose.Imaging.Accord.Adapter" Version="24.11.0" />
<PackageReference Include="Aspose.Imaging.Accord.Adapter" />
paket add Aspose.Imaging.Accord.Adapter --version 24.11.0
#r "nuget: Aspose.Imaging.Accord.Adapter, 24.11.0"
#addin nuget:?package=Aspose.Imaging.Accord.Adapter&version=24.11.0
#tool nuget:?package=Aspose.Imaging.Accord.Adapter&version=24.11.0
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)
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 :
- Aspose.Imaging .NET is distributed under Aspose EULA license;
- FileFormat.Accord is distributed under LGPL license
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 | Versions 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. |
-
net7.0
- Aspose.Imaging (>= 24.10.0)
- FileFormat.Accord (>= 24.11.0-25.2)
-
net8.0
- Aspose.Imaging (>= 24.10.0)
- FileFormat.Accord (>= 24.11.0-25.2)
GitHub repositories
This package is not used by any popular GitHub repositories.