EPatternFinder::Find
Locates a set of possible occurrences of the learned pattern in the supplied search field.
Namespace: Euresys::Open_eVision
[C++]
std::vector<EFoundPattern
> Find(
EROIBW8
* source
)
std::vector<EFoundPattern
> Find(
EROIBW8
* source,
const ERegion
& region
)
Parameters
source
Image or part of an image in which the learned model has to be searched for.
region
Region into the ROI where the search is performed.
Remarks
This method will fail if no pattern has been learned previously.
The result is a vector of EFoundPattern
objects. EFoundPattern instances can be retrieved by using the Vector<>::operator[]
method.
EPatternFinder.Find
Locates a set of possible occurrences of the learned pattern in the supplied search field.
Namespace: Euresys.Open_eVision
Parameters
source
Image or part of an image in which the learned model has to be searched for.
region
Region into the ROI where the search is performed.
Remarks
This method will fail if no pattern has been learned previously.
The result is a vector of EFoundPattern
objects.
EPatternFinder.Find
Locates a set of possible occurrences of the learned pattern in the supplied search field.
Module: open_evision
[Python]
Find(
source: EROIBW8
) -> list[EFoundPattern]
Find(
source: EROIBW8
region: ERegion
) -> list[EFoundPattern]
Parameters
source
Image or part of an image in which the learned model has to be searched for.
region
Region into the ROI where the search is performed.
Remarks
This method will fail if no pattern has been learned previously.
The result is a vector of EFoundPattern
objects.