in

Drowning In Technical Debt

C# | ASP.NET | SharePoint | SQL | Architecture | SOA |
All Tags » .NET » Images » C# (RSS)

Browse by Tags

  • Image Processing v2.1

    BTW to convert from the byte[] back to an image is simple enough private Bitmap ConvertBitmap(byte[] frame, int width, int height) { Bitmap bmp = new Bitmap( width, height, PixelFormat.Format24bppRgb); BitmapData data = bmp.LockBits( new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.WriteOnly...
    Posted to Shawn Weisfeld [MVP] (Weblog) by sweisfeld on 09-17-2007
  • Image Processing v2

    I was tearing into v1.5 of Microsoft Robotics Studio ( http://www.microsoft.com/robotics ) and came across a novel way to process the pixels in an image. In previous posts I was using unmanaged C# code and pointers to move around the image. This worked well but is hard to manage. They take the approach...
    Posted to Shawn Weisfeld [MVP] (Weblog) by sweisfeld on 09-17-2007
  • Tampa Code Camp Robot Vision Presentation

    Here is the powerpoint for my presentation tomorrow. http://www.onetug.org/DNN/Portals/0/member_files/2007_07_14_robot.ppt
    Posted to Shawn Weisfeld [MVP] (Weblog) by sweisfeld on 07-13-2007
  • Stack Based Flood Fill Algorithm

    For a recent project I needed a Flood Fill Algorithm (see Flood Fill in Wikipedia, http://en.wikipedia.org/wiki/Flood_fill ). Here is my implementation in C++. Some things to note 1) I am using the ImagerBitmapClass from a previous post ( http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive...
    Posted to Shawn Weisfeld [MVP] (Weblog) by sweisfeld on 12-04-2006
Page 1 of 1 (4 items)
Community Credit
Powered by Community Server (Commercial Edition), by Telligent Systems