Stefano Tommesani

  • Increase font size
  • Default font size
  • Decrease font size

AltaLux: new major release

Hits smaller text tool iconmedium text tool iconlarger text tool icon

AltaLux is an image processing technology that can significantly enhance the quality of images and videos with poor lighting conditions.

AltaLux/Demo is a Windows sample application that lets you enhance the quality of JPEG images for free (download it! from the download area). For even better usability, I strongly recommend using AltaPixShare as it has a vastly better interface.

For IrfanView and XnView users, you can download the AltaLux plugins for IrfanView and XnView.

The animation above shows how the AltaLux filter performs on a real photo, ranging from left (no enhancement) to right (max level of enhancement). On the original photo the palace is underexposed, it appears dark as the sky in the background is much clearer; increasing the amount of enhancement to an intermediate level takes the palace out of the dark, exposing its facade; moving the enhancement to max is too much of a good thing, as previously hidden details pop out of the screen but the scene does not appear natural at all.

Update: the new 2.5 version includes an additional setting (Scale) that changes how each zone of the image influences nearby ones.Click here for a visual explanation of how it affects filter's results.

 

AltaLux is an high-performing filter, due to the innovative implementation that fully exploits the capabilities of current processors (both SIMD and thread-level parallelism is exploited): being able to process well over 4 12 MPixel images per second on quad-core processors make it suitable for real-time enhancement of multiple video streams.

The number of possible applications is infinite:

  • CCTV video security systems could use AltaLux-enhanced video streams to discover moving objects that may not be discovered otherwise, and let the user gain a deeper insight of what is happening;
  • traffic monitoring in critical situations, such as dark crossroads or subways, would be greatly improved;
  • quality control systems based on visual inspection could work on even more detailed images;
  • and any other video-related application.

AltaLux/App can be used by both professional and non-professional users for image processing tasks without purchasing a license.
Distribution and bundling with commercial products is prohibited. Distribution and uploading to web sites is prohibited.
Every form of reverse engineering, development and debugging is prohibited.

Quote this article on your site

To create link towards this article on your website,
copy and paste the text below in your page.




Preview :

AltaLux: new major release
Wednesday, 05 January 2011

Powered by QuoteThis © 2008
Last Updated on Friday, 03 May 2013 16:03  

Add comment


Security code
Refresh

View Stefano Tommesani's profile on LinkedIn

Latest Articles

Comparing SSE2 and GPGPU C++ AMP 20 May 2013, 15.41 GPGPU
Comparing SSE2 and GPGPU C++ AMP
  The temporal median algorithm compares the same pixel in consecutive images in a sequence, and returns the median value of the pixel, i.e. the pixel value that has the same number of lower and higher values (an easy way to
Spidering Facebook public profiles with C++ and Boost
Back in 2010, security researcher Ron Bowes wrote a Ruby script that downloads information from Facebook's user directory, a searchable index of public profile pages. The directory did not expose a user's entire profile and
GPGPU performance on switchable graphics notebooks
Many notebooks on the market feature switchable graphics, that is, a notebook with an Intel CPU with built-in HD Graphics technology, as well as an additional AMD HD Radeon GPU or nVidia GeForce GPU. During normal usage, just
Unit testing with Visual C++ 2012 24 April 2013, 23.42 Testing
Unit testing with Visual C++ 2012
The article related to multi-threading and SSE2 optimizations (you can find it here) uses a quick-and-dirty way to check if the optimized code is correct, i.e. it runs an iteration on a given input image with a reference serial
Different types of parallel loops with Intel TBB, SSE2, SSSE3 and Visual C++ 2012
This is not the first article on this site that discusses how to use the Intel Thread Building Blocks library to spread the computation of an image-processing kernel over multiple threads: the article named "Multi thread loops