SetKeywords

KeywordsAIProcessor.SetKeywords method

Sets the keywords used for searching OCR-recognized text.

public void SetKeywords(string[] keywords)
ParameterTypeDescription
keywordsString[]Keywords to search for. Matching is case-insensitive and order-independent.

Examples

var processor = new KeywordsAIProcessor();
processor.SetKeywords(new[] { "Total", "Subtotal", "Discount", "Quantity" });

See Also