Skip to content
This repository was archived by the owner on Nov 14, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (31 loc) · 1.53 KB

File metadata and controls

35 lines (31 loc) · 1.53 KB

Classify Images Machine Learning

Classify Images Machine Learning

Introduction

How to use this form?

Instructions for using this form

Replace C:\Users\lenovo\Desktop\Scan\ to folder containing the images to your classification!
Replace C:\Users\lenovo\Desktop\Result\ to Result folder in the Guide folder

This sample identification:

  • People (ConNguoi)
  • Animals (DongVat)
  • Items (DoVat)
  • Flowers (Hoa)
  • Document (TaiLieu)
  • Nature (ThienNhien)
  • Food (ThucAn)

You must not rename in the Result folder, the classification may be corrupted!
You can Console.WriteLine Name of images with result.Prediction

Example of using this form:

First, the image will be loaded into the program:
  var input = new ModelInput ();
  input.ImageSource = <your_image_url>;
  // Load model and predict output of sample data
  ModelOutput result = ConsumeModel.Predict (input);
Finally, result.Prediction is the name of the image classified based on the above 7 neu characteristics.

Goodluck!