/
ccRecognition.FillIndexMask

ccRecognition.FillIndexMask

Parameter

(Results : Variant) : Boolean;

Beschreibung

FillIndexMask füllt die Indexmaske mit den in Results übergebenen Werten. Results entspricht einem zweidimensionalen Variantenarray wie es von der Funktion Execute zurückgeliefert wird. Die Zuordnung von Indexfeldern und Erkennungsfeldern erfolgt auf Grund der Definition im Feldschema.

Beispiel

BlobList := ccApplication.GetBlobList(ccWS_Stack,false,'');
ListSize := VarArrayHighBound(BlobList,1);

if ListSize >= 0 then
begin
  for i:=0 to ListSize do
  begin
    p := ((i+1)/(ListSize+1))*100;
    ccApplication.ShowStatus('Recognition','Document '+inttostr(i+1),p);
    RecoResults := ccRecognition.Exeute(BlobList[i]);
    ccRecognition.FillIndexMask(RecoResults);
  end;
end;

Related content

ccRecognition.FillIndexMask
ccRecognition.FillIndexMask
More like this
ccRecognition.Execute
ccRecognition.Execute
More like this
ccRecognition.Execute
ccRecognition.Execute
More like this
ccRecognition.Execute
ccRecognition.Execute
More like this
ccApplication.GetBlobList
ccApplication.GetBlobList
More like this
ccApplication.GetBlobList
ccApplication.GetBlobList
More like this