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:
parent
46c5a08025
commit
801d1e8694
9 changed files with 218 additions and 90 deletions
16
ext/opencv/dnn_layer.hpp
Normal file
16
ext/opencv/dnn_layer.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue