All Projects → intel-iot-devkit → object-flaw-detector-cpp

intel-iot-devkit / object-flaw-detector-cpp

Licence: BSD-3-Clause license
Detect various irregularities of a product as it moves along a conveyor belt.

Programming Languages

C++
36643 projects - #6 most used programming language
shell
77523 projects
CMake
9771 projects

Projects that are alternatives of or similar to object-flaw-detector-cpp

object-size-detector-python
Monitor mechanical bolts as they move down a conveyor belt. When a bolt of an irregular size is detected, this solution emits an alert.
Stars: ✭ 26 (+36.84%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
concurrent-video-analytic-pipeline-optimization-sample-l
Create a concurrent video analysis pipeline featuring multistream face and human pose detection, vehicle attribute detection, and the ability to encode multiple videos to local storage in a single stream.
Stars: ✭ 39 (+105.26%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
object-flaw-detector-python
Detect various irregularities of a product as it moves along a conveyor belt.
Stars: ✭ 17 (-10.53%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
motor-defect-detector-python
Predict performance issues with manufacturing equipment motors. Perform local or cloud analytics of the issues found, and then display the data on a user interface to determine when failures might arise.
Stars: ✭ 24 (+26.32%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
intruder-detector-python
Build an application that alerts you when someone enters a restricted area. Learn how to use models for multiclass object detection.
Stars: ✭ 16 (-15.79%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
safety-gear-detector-python
Observe workers as they pass in front of a camera to determine if they have adequate safety protection.
Stars: ✭ 54 (+184.21%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, reference-implementation, live-demo, edge-computing, openvino, edge-ai
People Counter Python
Create a smart video application using the Intel Distribution of OpenVINO toolkit. The toolkit uses models and inference to run single-class object detection.
Stars: ✭ 62 (+226.32%)
Mutual labels:  intel, inference, edge, image-recognition, pretrained-models, edge-computing
Berrynet
Deep learning gateway on Raspberry Pi and other edge devices
Stars: ✭ 1,529 (+7947.37%)
Mutual labels:  edge-computing, openvino, edge-ai
nn-Meter
A DNN inference latency prediction toolkit for accurately modeling and predicting the latency on diverse edge devices.
Stars: ✭ 211 (+1010.53%)
Mutual labels:  inference, edge-computing, edge-ai
gaze-estimation-with-laser-sparking
Deep learning based gaze estimation demo with a fun feature :-)
Stars: ✭ 32 (+68.42%)
Mutual labels:  intel, inference, openvino
Awesome System For Machine Learning
A curated list of research in machine learning system. I also summarize some papers if I think they are really interesting.
Stars: ✭ 1,185 (+6136.84%)
Mutual labels:  inference, edge-computing
Server
The Triton Inference Server provides an optimized cloud and edge inferencing solution.
Stars: ✭ 2,994 (+15657.89%)
Mutual labels:  inference, edge
Bert Ner Tf
Named Entity Recognition with BERT using TensorFlow 2.0
Stars: ✭ 155 (+715.79%)
Mutual labels:  inference, pretrained-models
Bert Ner
Pytorch-Named-Entity-Recognition-with-BERT
Stars: ✭ 829 (+4263.16%)
Mutual labels:  inference, pretrained-models
Jetson Inference
Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.
Stars: ✭ 5,191 (+27221.05%)
Mutual labels:  inference, image-recognition
Openvino
OpenVINO™ Toolkit repository
Stars: ✭ 2,858 (+14942.11%)
Mutual labels:  inference, openvino
openncc
OpenNCC Kit
Stars: ✭ 23 (+21.05%)
Mutual labels:  intel, openvino
openvino pytorch layers
How to export PyTorch models with unsupported layers to ONNX and then to Intel OpenVINO
Stars: ✭ 17 (-10.53%)
Mutual labels:  intel, openvino
MobileNetV2-PoseEstimation
Tensorflow based Fast Pose estimation. OpenVINO, Tensorflow Lite, NCS, NCS2 + Python.
Stars: ✭ 99 (+421.05%)
Mutual labels:  intel, openvino
Tnn
TNN: developed by Tencent Youtu Lab and Guangying Lab, a uniform deep learning inference framework for mobile、desktop and server. TNN is distinguished by several outstanding features, including its cross-platform capability, high performance, model compression and code pruning. Based on ncnn and Rapidnet, TNN further strengthens the support and …
Stars: ✭ 3,257 (+17042.11%)
Mutual labels:  inference, openvino

DISCONTINUATION OF PROJECT

This project will no longer be maintained by Intel. Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project. Intel no longer accepts patches to this project.

Object Flaw Detector

Details
Target OS: Ubuntu* 18.04 LTS
Programming Language: C++
Time to complete: 30 min

intoduction

Introduction

Object flaw detector application detects anomalies such as color, crack and the orientation of an object moving on a conveyor belt. Anomalies are marked as defective and saved in the color, crack, orientation folders respectively. Also objects with no defects are saved in no_defect folder. These anomalies data are sent to InfluxDB* database and visualized on Grafana*. This application also measures length and width of the object in millimeters.

Requirements

Hardware

Software

  • Ubuntu* 18.04 LTS
  • Intel® Distribution of OpenVINO™ toolkit 2020 R3 Release
  • Intel® System Studio 2019

How It Works

  • This application accepts input from a video camera or a video file for processing.

    Data Flow Diagram

  • Orientation defect detection: Obtain the frame and change the color space to HSV format. Threshold the image based on the color of the object using inRange function to create a mask. Perform morphological opening and closing on the mask and find the contours using findContours function. Filter the contours based on the area. Perform PCA on the contours to get the orientation of the object.

    Figure 9

  • Color defect detection: Threshold the image based on the defective color of the object using inRange function. Use the mask obtained from the inRange function to find the defective area.

    Figure 10

  • Crack detection: Transform the image from BGR to Grayscale format using cvtColor function. Blur the image using blur function to remove the noises. Use the contours found on the blurred image to detect the cracks.

    Figure 11

  • Save the images of defective objects in their respective folders. For example, objects with color defect are saved in color folder, objects containing cracks are saved in crack folder, objects with orientation defect are saved in orientation folder and objects with no defect are stored in no_defect folder.

Setup

Get the code

Clone the reference implementation

sudo apt-get update && sudo apt-get install git
git clone https://github.com/intel-iot-devkit/object-flaw-detector-cpp.git

Install Intel® Distribution of OpenVINO™ toolkit

Refer to Install Intel® Distribution of OpenVINO™ toolkit on Linux* for more information on how to install and setup the toolkit.

Install Intel® System Studio 2019

  1. Download Intel® System Studio 2019 and extract the downloaded zip file.
  2. Open a new terminal and navigate to the directory where the contents are extracted in the previous step.
  3. Run ./install.sh script and follow the instructions provided there to install Intel® System Studio 2019.

Other dependencies

InfluxDB*
InfluxDB is a time series database designed to handle high write and query loads. InfluxDB is meant to be used as a backing store for any use case involving large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics.

Grafana*
Grafana is an open-source, general purpose dashboard and graph composer, which runs as a web application. It supports Graphite, InfluxDB, Prometheus, OpenTSDB etc., as backends. Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored.

Install the dependencies

To download the video and install the dependencies of the application, run the below command in the object-flaw-detector-cpp directory:

./setup.sh

The config file

The resources/config.json contains the path of video that will be used by the application as input.

For example:

{
    "inputs": [
       {
           "video":"path_to_video/video1.mp4"
       }
    ]
}

The path/to/video is the path to an input video file.

Which Input Video to use

We recommend using bolt-detection. For example:

{
    "inputs": [
       {
           "video":"sample-videos/bolt-detection.mp4
       }
    ]
}

If the user wants to use any other video, it can be used by providing the path in the config.json file.

Using the Camera instead of video

Replace path/to/video with the camera ID in the config.json file, where the ID is taken from the video device (the number X in /dev/videoX).

On Ubuntu, to list all available video devices use the following command:

ls /dev/video*

For example, if the output of above command is /dev/video0, then config.json would be:

  {
     "inputs": [
        {
           "video":"0"
        }
     ]
  }

Setup the environment

Configure the environment to use the Intel® Distribution of OpenVINO™ toolkit one time per session by exporting environment variables:

source /opt/intel/openvino/bin/setupvars.sh

Note: This command needs to be executed only once in the terminal where the application will be executed. If the terminal is closed, the command needs to be executed again.

Build the application

To build, go to intruder-detector-cpp directory and run the following commands:

mkdir -p build && cd build
cmake ..
make

Run the application

Run the Application from the Terminal

To run the application, use the following command:

./product-flaw-detector

Optional: If field of view and distance between the object and camera are available, use -f and -d command line arguments respectively. Otherwise a camera of 96 pixels per inch is considered by default. For example:

./product-flaw-detector -f 60 -d 50

Note: User can get field of view from camera specifications. The values for -f and -d should be in degrees and millimeters respectively.

Run the Application on Intel® System Studio 2019

On the system, open Intel® System Studio 2019 and choose your workspace.

  1. Click File -> New -> Project -> Intel Application Development.
  2. Select C++ project. Click Next.

Figure 1

  1. Select Tool Samples tab and click on Intel® C++ Complier -> Hello World example and change the name of the project to object-flaw-detector. Click Next.

Figure 2

  1. Select Complier for the project as GNU Compiler Collection (GCC)*. Click Finish.

Figure 3

  1. Delete the file named hello_world.cpp (example code) from the Project Explorer.
  2. Click File -> New -> File. Select the parent folder and name the new file as product-flaw-detector.cpp. Click Finish.
  3. Copy the code from main.cpp located in application/src to the newly created file.
  4. Copy the config.json from the /resources to the /resources directory.
  5. Open the config.json in the current-workspace directory and provide the path of the video.
  6. Copy the influxdb.cpp from the /application/src to the current working directory.

Add Include Path

  1. Select Project -> Properties -> C/C++ General -> Paths and Symbols.
  2. Select Includes -> GNU C++ and Click on Add...
  3. Click on File system... and add opt/intel/openvino/opencv/include, <path_to_object-flaw-detector_directory>/application/src, <path_to_object-flaw-detector_directory>/json/single_include and <path_to_object-flaw-detector_directory>/application/include to include the path of OpenVINO™ toolkit. Click Apply and Close.

Figure 4

Add Libraries

  1. Select Project -> Properties -> C/C++ Build -> Settings -> GCC C++ Linker -> Libraries.
  2. Click on File system... and add opt/intel/openvino/opencv/lib to Library Search Path (-L).
  3. Add opencv_core, curl, opencv_highgui, opencv_imgproc, opencv_imgcodecs, opencv_videoio to the Libraries (-l) and click Apply and Close.

Figure 5

Select Project -> Properties -> C/C++ Build -> Settings -> GCC C++ Compiler -> Dialect. Select the Language standard as ISO C++ 11(-std=c++0x) and click Apply and Close.

Figure 6

Build the Project

  1. Select Project -> Build Project.

Figure 7

Run the Project

  1. Select Run -> Run Configuration.. -> C/C++ Application ->. Choose the project object-flaw-detector.
  2. Click Run.

Figure 8

Optional- If field of view and distance between the object and camera are available, use -f and -d arguments respectively. Otherwise camera of 96 pixels per inch is considered by default.

Figure 9

  1. To run the program using camera as input, replace the video path in step 2 with cam.

Note- If you are running the application on Intel® System Studio, the defect images are stored in the directory in Intel® System Studio workspace.

Troubleshooting

If this error occurs while running the code on Intel® System Studio: error while loading shared libraries: libopencv_core.so.4.1: cannot open shared object file: No such file or directory

Execute these steps:

  • Create a file opencv.conf in /etc/ld.so.conf.d/.

  • Write the path of the particular library in the opencv.conf file.

  • Run sudo ldconfig -v.

  • To check the data on InfluxDB, run the following commands.

    influx
    show databases
    use Defect
    select * from Defect
    
  • To visualize data on Grafana, follow below steps.

  1. On the terminal, run the given command.

    sudo service grafana-server start
    
  2. In your browser, go to localhost:3000.

  3. Log in with user as admin and password as admin.

  4. Click on the Configuration on left side of the panel.

  5. Select “Data Sources”.

  6. Click on “+ Add data source” and provide below inputs

    • Name: Defect.

    • Type: InfluxDB.

    • URL: http://localhost:8086.

    • Database: Defect.

    • Click on “Save and Test”.

      Grafana1

  7. To add graph to the created Dashboard, follow the below steps

    • Click on Add(+) on left side of panel.

    • Select “Dashboard”.

    • Select “Graph”. Click on Panel Title, select Edit and then select Metrics tab.

    • On the Metrics tab

      1. From Datasource choose Defect.
      2. Click on the row just below the tab, starting with “A”.
      3. Click on “select measurement” and select “Defect”.
      4. From SELECT row, click on “fields” and select “objectNumber”. Also click on + in the same row, select Aggregations and click on distinct(). Again click on + in the same row, select Aliasing and click on alias to provide alias for the respective field. From GROUP BY row, click on time and select 1s also click on fill and select null. Name the query as objectNumber in the ALIAS BY row.
      5. Similarly, do it for “crackDefect”, “orientationDefect” and “colorDefect” by clicking Add Query.
    • On the Time range tab, change the override relative time to 100s.

    • Save the dashboard by clicking on top panel with name productFlawDetector.

      Grafana2

  8. To add table to the created Dashboard, follow the below steps

    • Click on the add panel icon on the top menu.
    • Select Table, click on Panel Title, select Edit and then select Metrics tab. Follow the steps mentioned in the previous step for configuring Metrics and Time range tab except for Aggregations and select none in fill.
    • Select Selectors and click on last from select row.
    • From the Column Styles tab, click on +Add in the Apply to columns named give the name objectNumber, and change the value to 0 in the Decimals under Type option.
    • In the same row click on +Add and select other fields (“crackDefect”, “orientationDefect” and “colorDefect”).
    • Save the dashboard and click on Back to dashboard icon which is on right corner of the top menu. Grafana3
  9. To add gauge to the created Dashboard, follow the below steps

    • Click on the add panel icon on the top menu.
    • Select Singlestat. Click on Panel Title, select Edit and then select Metrics tab menu and follow the steps mentioned in the previous steps for configuring Metrics tab except for aggregations and fill.
    • Select Selectors and click on last from select row. Do the following only for objectNumber.Name the query as objectNumber in the ALIAS BY row.
    • On the Options tab, select show under Gauge option and change the value of decimals to 0 under Value option.
    • Save the dashboard and click on Back to dashboard icon. Grafana4
  10. Mark the current directory as favorite by clicking on Mark as favorite icon on the top menu.

  11. Select Time picker from the top menu of dashboard. Under Custom range change the From value to now-10s and Refreshing every: to 5s.

  12. For re-testing, follow the below steps

    • In a new browser tab or window, go to http://localhost:3000/.

    • Log in with user as admin and password as admin.

    • The “New dashboard” will now show up in the list of starred dashboards (and probably also under “Recently viewed dashboards”).

    • Click on “New dashboard” to see the chart.

      Grafana5

    • Run the C++ code again to visualize data on grafana.

      Grafana6

  • Alternatively, visualization on Grafana can be done by following below steps

    1. In your browser, go to localhost:3000.
    2. Log in with user as admin and password as admin.
    3. Click on Configuration.
    4. Select “Data Sources”.
    5. Click on “+ Add data source” and provide below inputs.
    1. Click on + icon present on the left side of the browser, select import.
    2. Click on Upload.json File.
    3. Select the file name "productFlawDetector.json" from object-flaw-detector/resources directory.
    4. Select "Defect" in Select a influxDB data source.
    5. Click on import.
    6. Run the application to see the data on the dashboard.

(Optional) Save Data to the Cloud

As an optional step, send data results to an Amazon Web Services (AWS)* instance for graphing.

1. Make an EC2 Linux* instance on AWS (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EC2_GetStarted.html)

2. Install InfluxDB on EC2 Linux instance (https://github.com/influxdata/influxdb)

3. Install Grafana on EC2 Linux instance (https://grafana.com/get)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].