Skip to content

Instantly share code, notes, and snippets.

@beligum
Created November 30, 2016 00:38
Show Gist options
  • Save beligum/2146b7819612e99af4536be032849bc0 to your computer and use it in GitHub Desktop.
Save beligum/2146b7819612e99af4536be032849bc0 to your computer and use it in GitHub Desktop.
package org.bytedeco.javacpp.presets;
import org.bytedeco.javacpp.annotation.Platform;
import org.bytedeco.javacpp.annotation.Properties;
import org.bytedeco.javacpp.tools.InfoMap;
import org.bytedeco.javacpp.tools.InfoMapper;
/**
* Wrapper for OpenCV module text, part of OpenCV_Contrib.
*
* @author Jarek Sacha
*/
@Properties(inherit = {opencv_highgui.class, opencv_ml.class}, value = {
@Platform(include = {"<opencv2/text.hpp>", "<opencv2/text/erfilter.hpp>" , "<opencv2/text/ocr.hpp>"}, link = "opencv_text@.3.1"),
@Platform(value = "windows", link = "opencv_text310")},
target = "org.bytedeco.javacpp.opencv_text")
public class opencv_text implements InfoMapper {
public void map(InfoMap infoMap) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment