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

Added documentation.

This commit is contained in:
Francois Deschenes 2018-07-27 00:10:39 -07:00
parent 99c8eec7fc
commit ac88971aff
8 changed files with 170 additions and 34 deletions

View file

@ -7,11 +7,11 @@
namespace rubyopencv {
namespace Dnn {
namespace Net {
void init(VALUE rb_module);
void init();
VALUE net2obj(cv::dnn::Net* ptr);
VALUE rb_read_net(int argc, VALUE *argv, VALUE self);
VALUE rb_read_net_from_caffe(VALUE self, VALUE prototxt, VALUE caffe_model);
VALUE rb_read_net_from_tensorflow(VALUE self, VALUE model);
VALUE rb_read_net_from_tensorflow(VALUE self, VALUE model, VALUE config);
VALUE rb_read_net_from_torch(VALUE self, VALUE model);
VALUE rb_read_net_from_darknet(VALUE self, VALUE cfg_file, VALUE darknet_model);
}