macro_rules! not_opencv_branch_5 {
($($tt:tt)*) => { ... };
}
Expand description
Conditional compilation macro based on OpenCV branch version for usage in external crates.
ยงExamples
Alternative import:
opencv::not_opencv_branch_34! {
use opencv::imgproc::LINE_8;
}
opencv::opencv_branch_34! {
use opencv::core::LINE_8;
}