You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
461 B
18 lines
461 B
#ifndef __OPENCV_DNN_HPP__ |
|
#define __OPENCV_DNN_HPP__ |
|
|
|
// This is an umbrealla header to include into you project. |
|
// We are free to change headers layout in dnn subfolder, so please include |
|
// this header for future compartibility |
|
|
|
|
|
/** @defgroup dnn Deep Neural Network module |
|
@{ |
|
This module contain tools to load artifical neural network models and to make forward test passes. |
|
@} |
|
*/ |
|
|
|
#include <opencv2/dnn/dnn.hpp> |
|
|
|
|
|
#endif /* __OPENCV_DNN_HPP__ */
|
|
|