Interface to OpenCV on mruby. This project has just begun.
- Install OpenCV
- Edit your
build_config.rb
. For example,
conf.gem 'path/to/here' do |g|
g.cxx.include_paths << 'path/to/OpenCV/modules/core/include'
g.cxx.include_paths << 'path/to/OpenCV/modules/highgui/include'
g.linker.library_paths << 'path/to/OpenCV libraries'
g.linker.libraries << %w(opencv_core243 opencv_highgui243)
end