Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
133 views

Recognizing image within image in C#

I'd like to find an image (needle) within an image (haystack). To keep things simple I take two screenshots of my desktop. One full size (haystack) and a tiny one (needle). I then loop through the ...
4
votes
1answer
184 views

Why is the random pixel color not so random in my C# application?

I set up a code to randomly cover a bitmap 2 different colors, 7 out of 10 times the color would be blue, and 3 out of 10 times, the color would be green. However, when it's done it looks very ...
3
votes
1answer
338 views

C#: LockBits puts out a Giant Red X

Following Bob Powell's tutorial on LockBits, I put the following code into C# 2010 Visual Studio Express: System.Drawing.Imaging.BitmapData bmp = BitmapImage .LockBits(new Rectangle(0, ...
3
votes
1answer
726 views

Are Bitmap.LockBits and Graphics.FromImage combinable in C#

Can you combine the methods of Bitmap.LockBits and Graphics.FromImage, or in other words if I have a bitmap "bmp" and I want to edit the bitmap with a Graphics-object g, are the changes visible in the ...
2
votes
2answers
127 views

Using LockBits generates weird image

I'm trying to write out a grayscale image using Lockbits, my current code looks is /// <summary> /// Save the content of the FrameProc out to a bitmap /// </summary> public void ...
2
votes
1answer
147 views

BitmapData and Marshal.Copy? What alternative for windows phone?

UPDATED: Been looking around and trying to figure out what alternative there is for windows phone 7.1 for BitmapData. I have Commented out the code in question. I am aware of Lockbits and that its ...
2
votes
5answers
207 views

C# LockBits perfomance (int[,] to byte[])

Graphics g; using (var bmp = new Bitmap(_frame, _height, PixelFormat.Format24bppRgb)) { var data = bmp.LockBits(new Rectangle(0, 0, _frame, _height), ImageLockMode.ReadWrite, ...
1
vote
1answer
177 views

C# Move bitmap in picturebox

I create image with LockBits from array in cycle and scale to PictureBox.Width * n and Height: using (var bmp = new Bitmap(len, _height, PixelFormat.Format24bppRgb)) { var data = ...
1
vote
0answers
476 views

GDI+ Bitmap LockBits returns rotated image?

I loaded an image from file and want to write it to AVI file: Gdiplus::Bitmap frame(L"test.png", FALSE); Gdiplus::BitmapData bmp_data = {}; Gdiplus::Rect rect(0, 0, frame.GetWidth(), ...
1
vote
0answers
81 views

C#: Constructing a Grid Using Lockbits

I've made a simple program that uses LockBits to modify the image in a PictureBox. Right now, I'm trying to draw a grid to the image, the image being divided into 4x4 blocks, and the very left pixel ...
1
vote
1answer
802 views

C# Lockbits for more exotic PixelFormats

I'm writing a performance critical class in C# for image manipulation. I'm using LockBits to gain access to the actual data directly and all is working well but I'd like to get more info on the memory ...
1
vote
2answers
602 views

Why do my images seem to be in the format of Bgra instead of Argb?

So, I am very confused over a quick test that I just ran. I am doing some image processing in C#. Get/SetPixel() have proven to be too slow, so I am using LockBits to get at the raw data. ...
0
votes
0answers
22 views

Bitmap LockBits on Android?

My program on Android uses an algorithm that uses a lot of setPixel and getPixel, therefore, it's very slow. On .NET, I can use LockBits to make it faster. Is there LockBits or similar on Java or ...
0
votes
1answer
72 views

Locking Bits Fails To Detect Pixels

I am creating a program that scans all the pixels of an image, and whenever it finds a pixel that contains the color pink. It makes the pixel black. But it doesn't seem to find a pink pixel when there ...
0
votes
1answer
52 views

Creating a Color object for each pixel while using Bitmap.LockBits faster than BitMap.GetPixel?

Is creating a Color object for each pixel while using Bitmap.LockBits still faster than using Bitmap.GetPixel for each pixel? Or maybe creating that Color is the main overhead of Bitmap.GetPixel as ...
0
votes
2answers
170 views

Lockbits with ushort greyscale values

I want to create a bitmap from given 16 bit greyscale values. So far I have this code: var value = CamData.ToArray(); var b = new Bitmap(160, 112, PixelFormat.Format24bppRgb); var ...
0
votes
1answer
543 views

Problem with using lockbits

Hi i m really new in image processing in C# and the code below basically getpixel from the image i browsed from my computer and will compare the RGB value of the pixel with the right pixel and if its ...
0
votes
1answer
254 views

LockBits image rotation method not working?

Hey all. I resorted to using LockBits for 2d bitmap image rotation after getting fed up with the slow performance and wacky behavior of both Get/Set Pixel, and RotateTransfom. So here is the code I've ...