Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Win32

Optimized Image Inversion Using SSE2

Rate me:
Please Sign up or sign in to vote.
4.11/5 (10 votes)
2 May 2009CPOL6 min read 46.1K   971   20  
Fast image inversion forms a good basis for optimizing pixel wise operations. We will discuss the ways to achieve the best speed on this inversion operator.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenCVTests", "OpenCVTests\OpenCVTests.vcproj", "{A967C699-B843-42ED-9E76-44B42CBC6B30}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{A967C699-B843-42ED-9E76-44B42CBC6B30}.Debug|Win32.ActiveCfg = Debug|Win32
		{A967C699-B843-42ED-9E76-44B42CBC6B30}.Debug|Win32.Build.0 = Debug|Win32
		{A967C699-B843-42ED-9E76-44B42CBC6B30}.Release|Win32.ActiveCfg = Release|Win32
		{A967C699-B843-42ED-9E76-44B42CBC6B30}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Gravi Information Technologies and Consultancy Ltd
Turkey Turkey
Currently, also an MSc. student in Technical University of Munich, I develop practical application in computer vision for more than 5 years. I design real-time solutions to industrial and practical vision problems, both 3D and 2D. Very interested in developing algorithms in C relating math and vision.

Please visit Gravi's web page (http://www.gravi.com.tr) and my page (http://www.tbirdal.me) to learn more about what we develop.

I admire performance in algorithms.

"Great minds never die, they just tend to infinity..."

Comments and Discussions