1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

Added Dnn::Layer, more Ruby-ish code, etc.

This commit is contained in:
Francois Deschenes 2018-07-26 15:28:00 -07:00
parent 46c5a08025
commit 801d1e8694
9 changed files with 218 additions and 90 deletions

16
ext/opencv/dnn_layer.hpp Normal file
View file

@ -0,0 +1,16 @@
#ifndef RUBY_OPENCV_DNN_LAYER_H
#define RUBY_OPENCV_DNN_LAYER_H
/*
* Document-class: Cv::Dnn::Layer
*/
namespace rubyopencv {
namespace Dnn {
namespace Layer {
void init(VALUE rb_module);
VALUE layer2obj(cv::dnn::Layer* ptr);
}
}
}
#endif // RUBY_OPENCV_DNN_LAYER_H