Returns an edkmatch object that you can use to manipulate the match.
edkEnMasseMatch:getMatch()
An edkmatch object.
The following example Lua script uses the getMatch method to obtain an edkmatch object:
function processmatches(matches)
-- example that discards matches with score < 0.5
for k,v in ipairs (matches) do
local edkmatch = v:getMatch()
if edkmatch:getScore() < 0.5 then
v:setOutput(false)
end
end
end
_FT_HTML5_bannerTitle.htm