Windows Image Acquisition Object
https://msdn.microsoft.com/en-us/library/windows/desktop/ms630826(v=vs.85).aspx#SharedSample011
The "WIA.Vector" COM Example posted earlier, Object example led me to other WIA COM Objects
local $v
$v = ObjCreate("WIA.vector")
$v.Add(1)
$v.Add(42)
$v.Add(3)
$v.Remove(1)
$v.Remove(2)
ConsoleWrite("$v(1) = " & $v(1) & @CRLF)
$v.Clear
$v.Add("This")
$v.Ad