ADFI is an AI cloud service for image anomaly detection.
You can create a machine learning model of image anomaly detection without coding and use it as an API.
With ADFI, you can easily adopt the latest AI to visual inspection at low cost.


Please try ADFI for free now.

Download

These are image datasets that you can try out with ADFI right away. It’s free to use.

A visual inspection application that using ADFI has released on GitHub as OSS (open source software). By downloading it from GitHub and installing it on your PC, you can easily start inspection with a web camera.

These are useful tools when using ADFI.


Datasets

For your convenience, we provide image datasets for anomaly detection.
Please use these datasets when trying ADFI.

DML

PCA-MSPC

Attribution

If you use the dataset in scientific work or web site, please cite:

ADFI, “Real-World Dataset for Anomaly Detection”, AI Robotics LTD., 2022, https://adfi.jp


Tools

For your convenience, we provide tools for ADFI.
Please use these tools when trying ADFI.

Spectrogram conversion tool

It is a tool to create anomaly detection AI in sound. This tool can convert sound data into image data for ADFI.

After extracting the downloaded zip file, please execute the following command at the level where the sound data (WAV file) exists at the command prompt etc.
create_image_from_wav.exe WAV_file_name Number_of_seconds_per_image Output_directory_name

# Example 1: Create images every 3 seconds of sound data (test.wav) and save them in the "spectrogram_images" directory.  
create_image_from_wav.exe test.wav 3 spectrogram_images

# Example 2: Create images (200 x 200 pix) every 5 seconds from 20 seconds to 100 seconds of sound data (test.wav) and save them in the "spectrogram_images" directory.
create_image_from_wav.exe test.wav 5 spectrogram_image --start 20 --end 100 --size 200