Posted on March 23, 2013 by Thor

Read more – Scorpion Data Logging
With the release of Scorpion Vision Version X we have added a very good and easy to use module to provide dynamic data logging of calculated values and values measured from other input devices.
All functions are provided without any programming or scripting.

Click to check the Scorpion Data Logger Status Panel
Filed under: General, I/O, Profiles | Leave a comment »
Posted on March 17, 2013 by Thor
With Scorpion Vision 10.1 we support QRCodes with the updated STC-0006-Barcode 1.0.0.8 and the new STC-0070-ZBar 1.0.0.3

Supporting QRCodes
Filed under: General | Tagged: Identification, Machine Vision, QRCode | Leave a comment »
Posted on March 12, 2013 by Thor

Scorpion 3D Stinger Camera
To support our Scorpion 3D Stinger Camera we have created this new 3D lens calculator.
This calculator estimates the 3D FOV width, height and the corresponding pixel resolution at given minimum and maximum distance based on the following input
- The cameras CCD size,
- The image resolution,
- The lens size (focal length),
- The baseline distance between cameras,
- The minimum distance,
- The maximum distance.

Click to use the 3D Lens Calculator
Filed under: 3D Machine Vision, General | Tagged: 3D Stereo Vision, Lens Calculator, Machine Vision, Scorpion 3D Stinger Camera, Scorpion Vision Software | Leave a comment »
Posted on March 12, 2013 by Thor
Posted on February 17, 2013 by Thor
Yes – please follow this procedure:
- Read the description of the camera driver
- Change Scorpion camera driver to PvGrab.dll
- Download the AVT PvApi driver from AVT
- Configure your network card correctly
Good luck !
Filed under: Camera | Leave a comment »
Posted on November 15, 2012 by Dagrun
Posted on June 27, 2012 by Thor
Yes we do 🙂
The latest additions are implemented through the DirectShow driver firegrab.dll
The DirectShow driver supports basically all firewire cameras and usb cameras with a vdm-driver. Many ip-cameras and gige cameras can also be supported using the same Scorpion Camera Driver – firegrab.dll
The latest firegrab.dll versions 3.0.0.43 and 3.0.0.44 is updated to support:
Release notes and actual
FireGrab.dll Scorpion Camera Driver.
3.0.0.44 – 27jun2012, min Scorpion Vision Software version: 7.x.x.x – DirectX 7.0
- improved driver initialization
- Tested with Imaging Source WDM-driver
- Tested with ActiveGige driver with PixelLink GigE
- some GigE cameras caused application lock
3.0.0.43 – 07jun2012, min Scorpion Vision Software version: 7.x.x.x – DirectX 7.0
- added configurable timeout on camera opening (configurable in inifile)
- suited for IP camera drivers
Filed under: Camera | Leave a comment »
Posted on June 25, 2012 by Thor
This is not very likely – but this will work in many cases. The root cause of this is due to a weakness when hosting .net 2.0 in an application like Scorpion Vision Software.
3. Hint – Exit Code Exception
If you receive unhandled exceptions on Scorpion exit add code to Central Stop to stop event solvers:
# manually call application domain shutdown
import clr
import System
tp = System.Type.GetType(‘Microsoft.Win32.SystemEvents, System, Version=2.0.0.0, Culture=neutral, PublicKyToken=b77a5c561934e089’)
mi = tp.GetMethod(‘Shutdown’, System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static, None, [], [])
mi.Invoke(None, [])
Read more…
Note: This is only needed if you use .Net in your Scorpion Vision System
Filed under: Profiles | Leave a comment »
Posted on May 29, 2012 by Thor
The continuous triggering in Scorpion was designed to make it possible to captures 10 – 200 images/second. The initial and simple image aquisition model defined by this pattern:
- Issue the Grab command
- Wait for all ImageComplete events
- Issue the Inspect to process the aquired images
- Use the AfterInspection event to do IO
- Goto 1 or Stop the inspection cycle
Read the details explanation about the event-driven model in Scorpion – http://scorpion.tordivel.no/help/UsersGuide/Service/Actions/Default.htm
The simple model has a drawback when the camera is free-running or the system is hardware triggered if you want to run fast. The Grab command takes time and can be eliminated. This changes the basic models from:
- Issue the Grab command
- Wait for all ImageComplete events
- Goto 1
to the continous model
- Wait for all ImageComplete events
- Goto 1
The difference is the Grab command is implicit and not explicit in the continous model. The continous model is supported by most Scorpion Camera Drivers.
The implicit Grab command saves milliseconds which is important when running fast 20-100 images / second with a cycle time of 10 – 50 ms. It is more important the faster it goes.
The drawback with the continuous model is that Scorpion Vision might the pushed to hard – too many images might flow into the system and what we call “cpu-starvation” might occur. This may happen if images are pushed to hard into Scorpion or maybe the is noise on the hardware trigger input.
Important Rule of thumb: The basic image capture model is the best if you do not need the speed of the continuous model.
Filed under: Camera, Profiles | Leave a comment »
Posted on March 13, 2012 by Thor