Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~230 People Reached
Favorite Forums
Member Avatar for labby

Hi, I want to do image processing with real-time image and I’m using C#. I got to grab the image from webcam and it runs smoothly. However, I got some error when I attach with other code for image processing. I cannot run more than one time in one execution …

Member Avatar for jonesc5
0
189
Member Avatar for labby

Hi, I want to scan intensity value of pixel for binary image. Here is the code that I build. byte* p = (byte*)imgData.Scan0.ToPointer(); int i = 0; for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { { if (*p …

0
41