pub trait CUDA_TemplateMatchingTrait: AlgorithmTrait + CUDA_TemplateMatchingTraitConst {
// Required method
fn as_raw_mut_CUDA_TemplateMatching(&mut self) -> *mut c_void;
// Provided methods
fn match_(
&mut self,
image: &impl ToInputArray,
templ: &impl ToInputArray,
result: &mut impl ToOutputArray,
stream: &mut Stream
) -> Result<()> { ... }
fn match__def(
&mut self,
image: &impl ToInputArray,
templ: &impl ToInputArray,
result: &mut impl ToOutputArray
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::cudaimgproc::CUDA_TemplateMatching
Required Methods§
fn as_raw_mut_CUDA_TemplateMatching(&mut self) -> *mut c_void
Provided Methods§
sourcefn match_(
&mut self,
image: &impl ToInputArray,
templ: &impl ToInputArray,
result: &mut impl ToOutputArray,
stream: &mut Stream
) -> Result<()>
fn match_( &mut self, image: &impl ToInputArray, templ: &impl ToInputArray, result: &mut impl ToOutputArray, stream: &mut Stream ) -> Result<()>
Computes a proximity map for a raster template and an image where the template is searched for.
Parameters
- image: Source image.
- templ: Template image with the size and type the same as image .
- result: Map containing comparison results ( CV_32FC1 ). If image is W x H and templ is w x h, then result must be W-w+1 x H-h+1.
- stream: Stream for the asynchronous version.
C++ default parameters
- stream: Stream::Null()
sourcefn match__def(
&mut self,
image: &impl ToInputArray,
templ: &impl ToInputArray,
result: &mut impl ToOutputArray
) -> Result<()>
fn match__def( &mut self, image: &impl ToInputArray, templ: &impl ToInputArray, result: &mut impl ToOutputArray ) -> Result<()>
Computes a proximity map for a raster template and an image where the template is searched for.
Parameters
- image: Source image.
- templ: Template image with the size and type the same as image .
- result: Map containing comparison results ( CV_32FC1 ). If image is W x H and templ is w x h, then result must be W-w+1 x H-h+1.
- stream: Stream for the asynchronous version.
Note
This alternative version of [match_] function uses the following default values for its arguments:
- stream: Stream::Null()
Object Safety§
This trait is not object safe.