towise 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package towise --version 1.0.0
NuGet\Install-Package towise -Version 1.0.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="towise" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add towise --version 1.0.0
#r "nuget: towise, 1.0.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.
// Install towise as a Cake Addin
#addin nuget:?package=towise&version=1.0.0

// Install towise as a Cake Tool
#tool nuget:?package=towise&version=1.0.0

TOWISE C#/.NET API

Towise assists you to detect human faces and bodies with using the latest and reliable technology.

Getting Started

Installing

To install the package

nuget install towise 

To import your project

using Towise;

Using Towise

You must enter appKey and appId

For Example:

using Towise;

namespace towise_example
{
    class Example
    {

    static void Main(string[] args)
        {

            String image  = "https://media.wmagazine.com/photos/5ac7d8f315242c3533df119f/4:3/w_1536/GettyImages-888922454.jpg";
            Towise p = new Towise("your appId","your appKey");

            //detects the face in the given image
            Console.WriteLine(p.faceDetect(image));

            //detects the bodies in the given image
            Console.WriteLine(p.bodyDetect(image));

            //recognizes the emotions in the given photograph
            Console.WriteLine(p.emotionDetect(image));

            //compares the face in the given image with the registered faces in the system
            Console.WriteLine(p.faceCompare(image));

            //gets all users on system
            Console.WriteLine(p.getAllPerson());

            //gets user that given id
            Console.WriteLine(p.getPerson("03a42fa2e1d1407b9388385efc01f083"));

            //adds a user that given name to the system
            Console.WriteLine(p.addPerson("keles0glu"));

            //removes the given user
            Console.WriteLine(p.removePerson("5605503de45744228471426ee9e2bf06"));

            //gets all faces of given user id 
            Console.WriteLine(p.getAllFace("7"));

            //gets base64 image of user face
            Console.WriteLine(p.getFace("9f9e2de584e24470a5ac786c9d4fc1c6"));

            //adds face to user
            Console.WriteLine(p.addFace(image,"7","yes"));

            //removes the face of given id
            Console.WriteLine(p.removeFace("9f9e2de584e24470a5ac786c9d4fc1c6"));

            Console.ReadKey();
        }
    }
}

Versioning

For the versions available, see the https://github.com/argedor/TowiseCSharpAPI/tags

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 608 5/8/2019
1.0.0 523 5/8/2019