Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 74 results for
aforge
- Page 1
Aforge and c#(Template matching) for video object detection
Programming
Software Development
12 Years Ago
by peevey
# Template Matching(
Aforge
) # Hi all, I'm having difficulties on how to use the codes for template matching because i dont know how to create a template in order to match them,is there any tutorials that can guide me?
AVIWriter in Aforge not recording
Programming
Software Development
12 Years Ago
by suneye
…, I am trying to record video by aviwriter class in
aforge
but the resulting avi file is either 0Kb or the….Text; using System.Windows.Forms; using
AForge
.Video; using
AForge
.Video.DirectShow; using
AForge
.Video.FFMPEG; using
AForge
.Video.VFW; using System.IO; namespace…
Image Processing Aforge
Programming
Software Development
12 Years Ago
by jahanzebgul
Hello i recently started using
aforge
lib in dot for my project. I need the help … know that either the following operations can be done using
aforge
, if yes how ? 1 ). I need to implement two image…
C# AFORGE
Programming
Software Development
15 Years Ago
by baogeliao
Hi guys, i need some help in doing C# regarding
Aforge
. i am new in this. thanks:)
Re: 2 color filters using Aforge
Programming
Software Development
12 Years Ago
by Kousha
… filter = new EuclideanColorFiltering(); filter.CenterColor = new
AForge
.Imaging.RGB(colorDialog1.Color); //Pure White filter.Radius…filter.ApplyInPlace(image); filter.CenterColor = new
AForge
.Imaging.RGB(colorDialog2.Color); filter.Radius = …
Re: 2 color filters using Aforge
Programming
Software Development
12 Years Ago
by Cronicle8
… the code : private void cam_NewFrame(object sender,
AForge
.Video.NewFrameEventArgs eventArgs) { Bitmap image = (Bitmap… filter = new EuclideanColorFiltering(); filter.CenterColor = new
AForge
.Imaging.RGB(colorDialog1.Color); //Pure White filter.Radius…
Re: AVIWriter in Aforge not recording
Programming
Software Development
12 Years Ago
by lolafuertes
I sounds taht at each frame, you open and close the writer, overwritting the content. I woudl move the > AVIWriter writer = new AVIWriter("DivX"); to the private variables definition before the > public Form1() then i'll move // create new AVI file and open it writer.Open("test1.avi", 640, 480); to the …
Re: AVIWriter in Aforge not recording
Programming
Software Development
12 Years Ago
by suneye
thank u lolafuertes,,,I've tried what you said but writer.AddFrame() generated an error : "object is in use elsewhere" . any ideas?
Re: AVIWriter in Aforge not recording
Programming
Software Development
11 Years Ago
by fabiodbmacedo
Anyone solved that problem? I have the same problem
Motion Detector and images
Programming
Software Development
12 Years Ago
by Cronicle8
…; using System.Threading; using
AForge
; using
AForge
.Imaging; using
AForge
.Video; using
AForge
.Video.VFW; using
AForge
.Video.DirectShow; using
AForge
.Vision.Motion; namespace MotionDetectorSample { public…
AVIWriter problem
Programming
Software Development
12 Years Ago
by suneye
…, I am trying to record video by aviwriter class in
aforge
but the resulting avi file is either 0Kb or the….Text; using System.Windows.Forms; using
AForge
.Video; using
AForge
.Video.DirectShow; using
AForge
.Video.FFMPEG; using
AForge
.Video.VFW; using System.IO; namespace…
Re: AVIWriter problem
Programming
Software Development
12 Years Ago
by Momerath
Why wouldn't you ask on the
AForge
forums?
simple image processing c# code crashing , but work in seperate flow
Programming
Software Development
15 Years Ago
by kdcorp87
… void smoohting(Bitmap b) { toolStripProgressBar1.Value = 90;
AForge
.Imaging.Filters.OilPainting filter = new
AForge
.Imaging.Filters.OilPainting(14); Bitmap a = filter.Apply…
Getting a motion detector to work
Programming
Game Development
12 Years Ago
by Cronicle8
…'t seem to get a Motion Detector to work using
Aforge
, so far i've got: private void device_NewFrame(object sender…,
AForge
.Video.NewFrameEventArgs eventArgs) { tmpImage = eventArgs.Frame.Clone(Rec, PixelFormat.Format24bppRgb); …
Re: Getting a motion detector to work
Programming
Game Development
12 Years Ago
by Cronicle8
Motion Detector online: private void device_NewFrame(object sender,
AForge
.Video.NewFrameEventArgs eventArgs) { tmpImage = eventArgs.Frame.Clone(Rec, PixelFormat.Format24bppRgb); …
Matlab or C# for image processing?
Programming
Computer Science
17 Years Ago
by hammerhead
I just started with image processing concepts and cannot decide upon a platform to try examples on. The two most commonly used platforms are Matlab and C# (using
Aforge
libraries). I know a bit of both and learning the syntax will not be a problem. Which one should I go for and what are its pros and cons?
K Means Clustering Algorithm
Programming
Software Development
15 Years Ago
by sathya8819
….Image.Clone(); Bitmap dstimg = new Bitmap(pictureBox1.Width, pictureBox1.Height);
AForge
.Imaging.Filters.Grayscale g = new Grayscale(0.299, 0.587…
Updating a picture box in one class from a different class.
Programming
Software Development
14 Years Ago
by tomprice0189
… class is a custom class called 'camera' which uses the
AForge
.Net framework to grab images from my webcam. The important…
C# form crash on exit
Programming
Software Development
14 Years Ago
by tomprice0189
… close, which stops a webcam stream in another class (using
Aforge
.Net framework) This stream is run on another thread hence…
SYSTEM ouf of memory exception
Programming
Game Development
12 Years Ago
by Cronicle8
…); } texture.SetData(imgData); return texture; } private void device_NewFrame(object sender,
AForge
.Video.NewFrameEventArgs eventArgs) { image = eventArgs.Frame.Clone(Rec, PixelFormat.Format8bppIndexed…
2 color filters using Aforge
Programming
Software Development
12 Years Ago
by Cronicle8
Good morning, I'm having some trouble getting this to work, but i am using 1 color filter to detect a color in my webcam video, but to achieve what i want, is it possible to use 2 color filters? Thank you in advance.
Re: 2 color filters using Aforge
Programming
Software Development
12 Years Ago
by Mitja Bonca
Hi, Would you mind showing as some code? Check here this link if it helps: http://irslab.blogspot.com/2010/07/aforgenet-color-filter-c.html thx
Re: 2 color filters using Aforge
Programming
Software Development
12 Years Ago
by Kousha
Its really easy: ColorFiltering colorFilter = new ColorFiltering( ); colorFilter.FillOutsideRange = false; //black colorFilter.Red = new IntRange( 0, 100 ); colorFilter.Green = new IntRange( 0, 100 ); colorFilter.Blue = new IntRange( 0, …
Re: An impasse with object tracking
Programming
Software Development
12 Years Ago
by AdmiralDonkey
… //New HSL filter
AForge
.Imaging.Filters.HSLFiltering hslFilter = new
AForge
.Imaging.Filters.HSLFiltering(); …//New blob counter
AForge
.Imaging.BlobCounter detectBlob = new
AForge
.Imaging.BlobCounter(); //Get…
Re: Using Images in a folder
Programming
Software Development
15 Years Ago
by sathya8819
…System.Drawing.Imaging; using
AForge
.Imaging; using
AForge
.Imaging.ComplexFilters; using
AForge
.Imaging.Filters; using
AForge
.Imaging.Textures; using …Image.Clone(); if (srcImage.PixelFormat != PixelFormat.Format8bppIndexed) {
AForge
.Imaging.Filters.Grayscale grayFilter = new Grayscale(0.2125, 0…
Re: watershed image segmentation
Programming
Software Development
15 Years Ago
by sathya8819
…)pictureBox1.Image; Bitmap b2 = (Bitmap)pictureBox1.Image;
AForge
.Imaging.Filters.Grayscale a = new
AForge
.Imaging.Filters.Grayscale(0.2125, 0.7154, 0….0721); bmp = a.Apply(bmp);
AForge
.Imaging.Filters.GaussianBlur g = new GaussianBlur(); for (int i = 0…
Re: systemC
Programming
8 Years Ago
by yosri_1
… store this image in folder any help plz Imports
AForge
Imports
AForge
.Video Imports
AForge
.Video.DirectShow Imports System.IO Public Class Form1…
Re: systemC
Programming
8 Years Ago
by yosri_1
… seconds it captures a photo and save it Imports
AForge
Imports
AForge
.Video Imports
AForge
.Video.DirectShow Imports System.IO Public Class Form1…
Re: systemC
Programming
8 Years Ago
by yosri_1
… it debeugs but it runs an exception ''''' Imports
AForge
Imports
AForge
.Video Imports
AForge
.Video.DirectShow Imports System.IO Public Class Form1 Dim…
Re: systemC
Programming
8 Years Ago
by yosri_1
…") i think i instanciated all object Imports
AForge
Imports
AForge
.Video Imports
AForge
.Video.DirectShow Imports System.IO Public Class Form1 Dim…
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC