Based on this wiki : a convolutional neural network (CNN, or ConvNet) is a class of deep neural network, most commonly applied to analyze visual imagery. They are also known as shift invariant or space invariant artificial neural networks (SIANN).
Table of Contents
Convolutional Neural Network? That sounds complicated! Is it?
Good news, DeepAI.org has provided an API to access, so we can quickly build applications using it. Follow along as we show you how..
How do I set up an app with DeepAI API?
- Signup and Login to https://deepai.org
- Then you will automatically get the API Key.
- Now create a new Multi Device Application in your RAD Studio Delphi IDE
- Read the API Doc here https://deepai.org/machine-learning-model/toonify
We can emulate what curl
does for access to DeepAI API, because it looks quite straight-forward.
here what that looks like in Delphi code:
[crayon-672a019a4a602133362796/]Using the API’s JSON output
The above code is only accessing JSON result from Toonify API, which JSON result similar to the following:
[crayon-672a019a4a605534046508/]Converting the API output into something useful
So, to download the image and then attach it to the component Timage
as a result of the process, here is the code:
Full Delphi source code to cartoonify and image using the DeepAI API
The full Tonify method is this:
[crayon-672a019a4a608076871967/]What does the application look like?
Check out the full source code here (GitHub link) https://github.com/herux/DelphiDeepAI-Toonify.git
Now you know how to use a Neural Network to cartoonify images in your Windows and mobile apps using Delphi! How would you use it?