12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*M
- #ifndef __OPENCV_DNN_HPP__
- #define __OPENCV_DNN_HPP__
- /** @defgroup dnn Deep Neural Network module
- @{
- This module contains:
- - API for new layers creation, layers are building bricks of neural networks;
- - set of built-in most-useful Layers;
- - API to constuct and modify comprehensive neural networks from layers;
- - functionality for loading serialized networks models from differnet frameworks.
- Functionality of this module is designed only for forward pass computations (i. e. network testing).
- A network training is in principle not supported.
- @}
- */
- #include <opencv2/dnn/dnn.hpp>
- #endif /* __OPENCV_DNN_HPP__ */
|