Click here to Skip to main content
15,881,856 members
Everything / Multimedia / Image Processing

Image Processing

image-processing

Great Reads

by Darko Jurić
SIR Particle Filter brief tutorial with samples in C#
by V.
Case study on how to solve a complex problem by dividing it into smaller problems.
by J. Broun
An article aimed at intermediate coders on decoding Stardent Corp.'s AVS Bitmap Image format.
by dynamichael
Build an oct-tree from a color palette for a fast nearest color search

Latest Articles

by Hans-Peter Kalb
C# library for reading and writing EXIF tags in JPEG, TIFF and PNG image files
by Huseyin Atasoy
An image classifier / tagger based on convolutional neural networks. Now more than 10 times faster with the Intel MKL support.
by napuzba
How to use pointers when processing images in C#
by dynamichael
Build an oct-tree from a color palette for a fast nearest color search

All Articles

Sort by Score

Image Processing 

25 May 2019 by dynamichael
Build an oct-tree from a color palette for a fast nearest color search
20 Nov 2011 by danlobo
I got what A.J tried to say. It's about implementing IDisposable in LockBitmap.Basically, it involves changing:public class LockBitmapto: public class LockBitmap : IDisposableThe constructor:public LockBitmap(Bitmap source){ this.source = source;}to:public...
15 Aug 2011 by Vano Maisuradze
The alternative solution, how to work with images faster.
13 Feb 2014 by Anand Gunasekaran
Scanner automatically scans multiple pages using BackgroundWorker Thread
15 Aug 2011 by robertjb20
You can increase the speed of both SetPixel and GetPixel by doing the following:Add the line 'int step = 0' at the LockBitmap class level.Remove 'int' declation of 'step' in the LockBits method and calculate as is.In both SetPixel and GetPixel, remove the line:int cCount = Depth /...
1 Jan 2015 by Benjamin Lifshitz
With this code, you can print images quickly and efficiently, using the largest part of the A4 page for your image.
7 Oct 2013 by Alexey Shtykov
How to print an image to a printer within a proper size
15 Aug 2012 by Shulha Yahya
Get Palm Hand Region from Binary Image of Hand on EmguCV
6 Jul 2013 by hirosht
Step by step method of thresholding a image using the EmguCV API in C#