Tagged Questions
AForge.Net is a C# framework for Computer Vision and Artificial Intelligence. Applications include: image processing, neural networks, genetic algorithms, machine learning, robotics, etc.
14
votes
3answers
5k views
Differences between AForge and OpenCV
I am just learning about computer vision and C#. It seems like two prominent image processing libraries are OpenCV and AForge. What are some of the differences of the two?
I am making a basic image ...
8
votes
6answers
3k views
image focus calculation
I'm trying to develop an image focusing algorithm for some test automation work. I've chosen to use AForge.net, since it seems like a nice mature .net friendly system.
Unfortunately, I can't seem to ...
6
votes
4answers
3k views
Recognize objects in image
Hello I am in the process of doing a school project, where we have a robot driving on the ground in between Flamingo plates. We need to create an algorithm that can identify the locations of these ...
5
votes
2answers
1k views
Help needed in getting Webcam stream using Aforge.NET in C# and WPF
I want to capture a webcam feed using my camera. For that I am using the 2 references: AForge.Video.dll and AForge.Video.DirectShow.dll.
I looked at the following basic way to get the feed described ...
4
votes
3answers
1k views
Matlab vs Aforge vs OpenCV
I am about to start a project in visual image-processing and have no had experience with Matlab, Aforge, OpenCV and was wondering if anyone had any experiences with these different software packages.
...
4
votes
5answers
266 views
Robot, stereo vision, driving around and AForge
I am thinking about building a small robot that will drive around, judge distance to objects and avoid obstacles (hopefully it will) - nothing complex, just a home fun project.
I am planning on using ...
3
votes
1answer
557 views
Accessing Pixels and Object Tracking : Emgu CV or Aforge.Net? which one is faster and easier?
I am new to Image Processing and Machine Vision. I am going to write a simple app which works with multipage TIFF files and does some object tracking on them. I implemented the whole story in ...
2
votes
1answer
207 views
Watershed using c# or c++
I am trying to convert the Matlab function watershed into C# or C++.
I tried to use this code but CvFindContours returns NULL with this image.
I also tried to use this implementation but I had ...
2
votes
1answer
143 views
X-Ray print recognition via AForge.NET lib
I have quite an specific question about image recognition. I have to write a tool which recognizes objects on x-ray print, and calculates some data based on current x-ray shot. So the task basically ...
2
votes
2answers
533 views
How to convert pixel formats? From 32bppRGB to 16bpp grayscale in C#
I need to do some thresholding for my image. The threshold filter function just accepts 8-16bpp grayscale. My bitmap picture has the 32bppRGB pixelformat. Please suggest some code for the same. (I ...
2
votes
2answers
470 views
How to crop scanned image using C#?
I have a scanned image of a book page and i need to crop this scan for leaving only page area. I tried to use AForge to detect page borders, but it doesn't work because the space which i need to crop ...
2
votes
4answers
2k views
how to develop AForge.NET for Computer Vision
I'm trying to develop a program to recognize a hand gestures and base on the hand gestures, run some commands or move the mouse. how can I use AForge.NET with C#??? it is possible to do that? is there ...
2
votes
2answers
2k views
Implementing a WebCam on a WPF App using AForge.Net
I'm writing an WPF application where I need to show a Webcam feed. I was able to do this easly with the AForge framework.But when I've changed from a computer to a another computer the same code ...
2
votes
5answers
693 views
How to find the best parameters for a Genetic Algorithm?
Some Genetic Algorithm frameworks, such as http://www.aforgenet.com/ requires many parameters, such as mutation rate, population size, etc
There is universal best numbers for such parameters? I ...
1
vote
3answers
49 views
Simulate concatenated file using hard link?
I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue ...
1
vote
1answer
56 views
Aforge Memory Usage
I have written some c# code that needs to process upwards of about 3000 images, but by the 500th image the task manager is showing the program using 1.5gb of memory. The function below seems to be ...
1
vote
1answer
154 views
Decrease framerate of an AVI file in AForge
I am completely new to video input, and just started working with AForge a few days ago. Working with live video is comfortable, but I need to do something with files for a project now.
Using the ...
1
vote
0answers
443 views
Motion detection regions for Aforge.Net
I am using AForge for motion detection and I know that motion regions can be set. Is it possible to make that it triggers only when there are motions in ALL the defined regions?
If the above ...
1
vote
3answers
140 views
Code behaves weird when platform target is set to Any CPU like WPF projects is ?
This code should give me a collection of FilterInfo objects, representing the connected devices in the chosen category, which in this case is webcams.
FilterInfoCollection collection = new ...
1
vote
2answers
274 views
smoothing curve in an array in c#.net
I have an array of int and I plot that values in a graph. (using zedgraphcontrol)
In that curve I want to find local maxima using C#.net
My idea is smoothing the curve to remove the noices.
How can ...
1
vote
1answer
236 views
Detecting human body from video source in C#
I am trying to extract human from a video source, so that I can use his image later. I need to only extract human body, and ignore the environment. The good thing is that the background is static. I ...
1
vote
1answer
85 views
Why calling AForge library function causes AccessViolationException in C#?
The following code causes access violation exception - why is that? Can I call AForge filters from inside unsafe block?
unsafe
{
BitmapData bmd = ThresholdedImage.LockBits(boundingR, ...
1
vote
1answer
208 views
Using Aforge.NET under wince
How to use Aforge.NET under wince?
When I build my program that uses Aforge library for compact framework I get this error:
The type 'System.Drawing.Bitmap' is defined in an assembly that is not ...
1
vote
1answer
79 views
english language manupulation programatically? [closed]
I want to give priority for each sentences (like if we get request for leave, we need to give the most prior leave to accept)
ex: we have requests like this
i have a funereal.
we are going trip on ...
1
vote
0answers
415 views
C#, Split scanned image and find content area
And again question about image processing :)
With help of AForge.Net I've rotated and cropped scanned image of a book. And now i need to split result of rotating and cropping into separate pages. I ...
1
vote
1answer
680 views
License Plate recognition using AForge.Net
i am currently doing a project for "Automatic Number Plate Detection and
Recognition" and i am using AForge.Net ;i have used a simple algo;
though it is not very efficient but it will fulfills my ...
1
vote
2answers
634 views
Faking thermal image camera with aforge or any other .net solution , emgucv, tbeta
I am simulating a thermal camera effect. I have a webcam at a party pointed at people in front of a wall. I went with background subtraction technique and using Aforge blobcounter I get blobs that I ...
0
votes
0answers
80 views
How can I find a template image in another image? Kinect and AForge preferred
I copied the AForge-Sample from here:
http://www.aforgenet.com/framework/features/template_matching.html
And hoped, it would work with 2 Bitmaps as sources as in the following code:
Bitmap ...
0
votes
0answers
39 views
Aforge C# Augmented Reality : how to control my car by the orientation AR marker?
Hello all I successfully created application : Keyboard controlled car in augmented reality Like the BMW Z4 http://www.bmw.co.uk/bmwuk/augmented_re ... rce=vanity
But now I want to control my car by ...
0
votes
0answers
8 views
AForge and Fuzzy Color and Texture Histogram
Is Fuzzy Color and Texture Histogram implemented in AForge.NET ? If so, where can I find the code example?
0
votes
1answer
38 views
How to show crossbar property page of a directshow hardware device?
My question in summary: Is there a way to show a running video capture device's crossbar property page while not being the graph creator but knowing the moniker string. Can it be done? I am also think ...
0
votes
1answer
174 views
Cannot display webcam Using Aforge.NET in C#
I am currently working on a project where I need to simply display the users webcam on a
asp.image object. I am using the Aforge frame work and have gotten it to work on a windows app. In the windows ...
0
votes
1answer
306 views
AForge.net edge detection - how to get the edge points?
I am using Aforge to run edge detection on an image, how would I get the x,y for the detected edge(s) points? Other than the obvious way of looping through the image bitmaps.
This is the code from ...
0
votes
0answers
69 views
How do I extract the real/imaginary part from FFT in Aforgenet?
I am having trouble figuring out extracting the real and imaginary parts from AForgenet FFT. I have the following
ComplexImage cImage = ComplexImage.FromBitmap(inputImage);
...
0
votes
0answers
13 views
AForgeNet, does it support floating point values in images like OpenCV?
AForgeNet, does it support floating point values in images like OpenCV, or do I have to work all around my own floating point arrays for images so that I can perform operations like log, FFT and so ...
0
votes
1answer
143 views
C# Image Rotation using AForge.NET libraries?
Why my image wont rotate?
Image map = Properties.Resources.Map;
//Creates a new Bitmap as the size of the window
Bitmap bmp = new Bitmap(map.Width, map.Height);
//Creates a new ...
0
votes
2answers
323 views
ashx handler, access HttpContext.Current inside void
i've changed this question dramaticlly but here it goes. I'm reading a mjpeg stream from an IP cam which all goes fine. But now on every frame which I receive (See stream_NewFrame) I want to push this ...
0
votes
0answers
213 views
Extracting difference between 2 images in C#
I am using webcamera in C# (using AForge). I also have some default background. I need to extract the difference between current image and background and create a new image which contains only the ...
0
votes
1answer
560 views
Tracking mouse movement outside my form
I'm working on tracking application using AForge.net framework, i got a problem which it's when i click on the desktop while the "program" the form is still running, it's not tracking at all.
because ...
0
votes
1answer
233 views
facial shape segmentation
I need to know if it's there a way, with AForge or similar libraries, to develop an application that extract from a picture the facial shape. I mean: the application take a picture, detect the face, ...
0
votes
2answers
265 views
Refreshing a PictureBox in C#
I created a list of rectangles and draw them in a PictureBox. Elsewhere in the code we remove some rectangles from the list, but when I call PictureBox.Refresh() it shows the previous result: all the ...
0
votes
4answers
594 views
template matching in c#
I want to get the coordinates(X,Y) of specific image in a web page.After getting that image coordinates i shall move the cursor to this position and click programaticlly over this image.
I have saved ...
0
votes
2answers
139 views
Why is ImageStatistics.Gray null?
I'm using AForge.net and I want to show in a textbox the value of the standard deviation. The following code is not working:
AForge.Imaging.ImageStatistics stat = new ...
0
votes
0answers
175 views
draw editable rectangles in an image in AFORGE.net
I have to draw rectangles in automatically by identify the lanes of following image.
If it detect incorrect I want to move that rectangles means how to draw rectangle that can edit using AFORGE.net
I ...
0
votes
1answer
269 views
Detection of a known Object (By Template)
I need help with Object detection.
I habe to detect position of a Fork and a Knife on a Plate. The Plate is on a Tray.
The Objects are always the same but the Positions can vary.
I'm wokring with c# ...
0
votes
2answers
1k views
find a color in an image in c#
I stumbled across this youtube video here http://www.youtube.com/watch?v=Ha5LficiSJM that demonstrates someone doing color detection using the AForge.NET framework. I'd like to duplicate what that ...
0
votes
1answer
153 views
Glow in Aforge.net
How can I make a glow effect in Aforge. I have blobs on black background and I would like to surround them with a glow.
tnx
0
votes
2answers
1k views
Tracking blobs in Aforge
I looked and looked. Does anybody know how to track blobs from Aforge? I know they don't have it implemented but I would really need to use Aforge because of the rest of the code I'm using. I saw some ...
0
votes
0answers
720 views
Image processing using Aforge library for .net
I am a newbie in image processing techniques, what I want to do is if the user gives
a unclear or damaged image, using the Aforge library, I should clear this and give a resultant
image, we have an ...
0
votes
1answer
1k views
How to setup motion detection using AForge?
i'm trying to setup motiondetection using the AForge.NET framework. I'm using the information provided on this page.
I've setup a DirectShow videostream which feeds a part of my desktop through a ...