A set of tools for dealing with machine vision cameras, based on interface ofxMachineVision::Device.
Requires:
- C++11 support (e.g. Visual Studio, XCode with openFrameworks C++11 branch, Linux)
- ofxLiquidEvent (https://github.com/elliotwoods/ofxLiquidEvent)
- Add the ofxMachineVisionLib/ofxMachineVisionLib.vcxproj project to your solution
- Go to your project properties, go to 'Common Properties' at the top of the tree on the left, select 'Add New Reference...' and add the ofxMachineVisionLib project.
- Add the props file from your camera driver to your project:
- Go to Property Manager tab
- Right click on your project
- 'Add Existing Property Sheet...'
- Select the property sheet for your camera driver addon (e.g. addons/ofxXimea/ofxXimea.props)
- Add the source files from your camera driver to your project (.cpp, .h)
- Include the camera driver header in your testApp.h (e.g. ofxXimea.h) or as appropriate
- Denote your camera driver's
Device
class when instantiatingofxMachineVison::Grabber
s (e.g.ofxMachineVision::SimpleGrabber<ofxXimea::Device> grabber;
)