Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 335 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 335 Bytes

mruby-opencv

OpenCV binding for mruby.

Install

  1. Install OpenCV
  2. Edit your build_config.rb. For example,
  conf.gem 'path/to/here' do |g|
    g.cxx.include_paths << 'path/to/OpenCV/include'
    g.linker.library_paths << 'path/to/OpenCV/lib'
    g.linker.libraries << %w(opencv_core320)
  end