Posted on November 22, 2009 by Dagrun
The clue about sub-pixel measurement is removing lens distortion. The Calibrator tool is the key for for this. More information is found in the Scorpion Online Help. All Scorpion tools work with reference and process image with subpixel accuracy the reference chain contains a Calibrator. This gives the user the advantage of sub-pixel measurement without [...]
Filed under: 3D Machine Vision, Toolbox | 2 Comments »
Posted on November 22, 2009 by Dagrun
Scorpion’s advanced blob tools – Blob4, PolylineEdgeFaults2 – PLEF2 and PolygonMatch – has polygon rois (regions of interest). For Blob4 this is very useful in assembly verification for detecting the presence of an object. Simply shape the blob to the shape of the object. In surface defects, applications having the possibility to cover every details [...]
Filed under: Toolbox | Leave a Comment »
Posted on November 20, 2009 by Dagrun
The following tools works on directly on color images: ColorMatcher – classify color based on reference images ColorSegmenter – converts a color image based on hsi filter to bw image ColorAnalyzer – a matrix of color matcher work on a square area to calculate an area with a specific color SurfaceAnalyzer – ColorAnalyzer combined with [...]
Filed under: Toolbox | Leave a Comment »
Posted on November 20, 2009 by Dagrun
Scorpion has the following classes of tools: Basic, Data, Edge, Reference, Geometry, Advanced, 3D Basic and 3D Advanced.
Filed under: Toolbox | Leave a Comment »
Posted on November 20, 2009 by Dagrun
There is an educational kit – the software licence price have 75% discount or 25% of the list price. The package is made for institutions that want to build a vision lab for their student. With this package the students will learn how to build the vision solutions of tomorrow. More about pricelists.
Filed under: Sales and Licensing | Leave a Comment »
Posted on November 20, 2009 by Dagrun
When Scorpion is running – follow this procedure: 1. Activate About 2. Press the licence button 3. Paste the new licence code 4. Press register and close the dialog The licence can also be updated from the Profile Selection Dialog.
Filed under: Sales and Licensing | Leave a Comment »
Posted on November 20, 2009 by Dagrun
Yes, there is a free Scorpion demo licence. The licence is required to evaluate the Scorpion vision software. The licence is obtained from www.scorpionvision.com.
Filed under: Sales and Licensing | Leave a Comment »
Posted on November 20, 2009 by Dagrun
Scorpion Vision Software are normally sold to System Integrators around the world that use Scorpion to make system solutions. Scorpion is also sold on an OEM-basis to companies using it as a part of their product. List of Scorpion Distributors and partners
Filed under: Sales and Licensing | Leave a Comment »
Posted on November 20, 2009 by Dagrun
Python is the glue between vision tools and the system states. It provides a unique flexibility – when configuring Scorpion any business logic can be defined. From Python one can for example access the Draw API providing overlay graphics or the kernel API giving access to all the image processing results. Python examples in Scorpion [...]
Filed under: Python | Leave a Comment »
Posted on November 20, 2009 by Dagrun
Yes this is possible to do. To do this install Python and the Win32 python extensions on the PC. The following function will then run a macro in Excel: from win32com.client import Dispatch def RunExcelMacro(name): myExcel = Dispatch(‘Excel.Application’) myExcel.Visible = 0 myExcel.Workbooks.Add(‘c:Termoetiketter1_2.xls’) myExcel.Run(name) myExcel.DisplayAlerts = 0 myExcel.Quit()
Filed under: Python | Leave a Comment »