Click here to Skip to main content
15,887,683 members
Everything / Processing

Processing

processing

Great Reads

by Thomas Nielsen - getCore
This article will take a dive into one of the reasons why code sometimes sands over.
by Grasshopper.iics
Easy Image Inpainting using Local Binary Pattern
by Jochen Haar
Class to manage the content of Comma Separated Value Files or to deal with Structured Tables in memory
by Rick Lunglhofer
Details the Implementation and use of a C Language Interpreter with a browser Interface running on an ESP32

Latest Articles

by Intel
Take Advantage of On-Chip Acceleration of Data Transformation in 4th Gen Intel® Xeon® Scalable Processors
by Jochen Haar
Class to manage the content of Comma Separated Value Files or to deal with Structured Tables in memory
by ADMGNS
A very simple method to resampling points from a digital image and drawing it as antique mosaics, dots (stippling) and Voronoi cells
by Rick Lunglhofer
Details the Implementation and use of a C Language Interpreter with a browser Interface running on an ESP32

All Articles

Sort by Updated

Processing 

14 Apr 2011 by #realJSOP
It's because your "orphaned" process is still open, and hasn't released the filesystem resources that you're trying to access. What you need to do is change the scope of the process object so that when your app closes, the process in question can also be terminated.
8 Nov 2019 by #realJSOP
File size, the number of files and what you're doing to the data are all primary factors. Only you can determine the sweet spot, or if you should even implement any kind of threading.
22 Jul 2011 by Abhinav S
They are stored as double words. This article[^] discusses this from a basic perspective.For more detailed analysis, you probably need to read a few processor programming articles / whitepapers.Here[^] is more information on the word.
22 Apr 2022 by ADMGNS
A very simple method to resampling points from a digital image and drawing it as antique mosaics, dots (stippling) and Voronoi cells
16 Apr 2011 by Albin Abel
You may use different spatial filters for different directions. If you give weights on the vertical for 3 x 3 or 5 x 5 kernel it masks everything but only shows the vertical lines i.e computation of moments will weighted for only one direction. Same way for horizontal, diagonal etc., assign...
14 Sep 2016 by Alex Banu
this will end any MS Word, maybe this is a start :using System.Diagnostics;...Process[] word_apps= Process.GetProcessesByName("winword");foreach(var word_app in word_apps){ word_app.Kill();}
17 Mar 2014 by Andreas Gieriet
Have a look at How to subtract one bitmap from another in C#/.NET?[^].CheersAndi
24 Jun 2010 by Ankur\m/
AI : Neural Network for beginners (Part 1 of 3)[^]I am not very sure if this is exactly what you need. The "neural network" in the subject made me remember this article and I thought I will post it.See if it helps. Also, let me know if it is irrelevant, I will remove the answer.
16 Dec 2010 by Avi Farah
Allow for constructs within a string to be programmatically evaluated for a final string value
16 Jul 2012 by bikekowal
Hi all,I have a following problem. I want to build a application processing images from a camera in real time. The problem is that I cannot get to the bitmap data correctly. The following piece of code is running without errors but the problem is that the images don't change. The code...
10 Jul 2012 by Binu MD
RGB to YUV conversion with different chroma sampling using C++.
14 Oct 2013 by blitzkrieged
This is a demonstration of splicing an animated GIF (or any image) frame by frame without having to write to the disc.
22 Jan 2011 by bosco_boom
I have a program for image segmentation in WinForms Application C#, and I have an image loaded in a pictureBox. I need to draw a small circle(or an ellipse, it does not matter) on that image (inside a region of interest, and allowing it to grow outwards until it reaches the desired...
26 Feb 2012 by BupeChombaDerrick
Trying checking out this articlehttp://www.eecs.umich.edu/~silvio/teaching/EECS598/papers/leibe-dynamic3dscene-cvpr07.pdf[^]But be specific, what you are trying to do is not even a well understood problem, so you must do most of the research yourself.
12 Aug 2012 by butterflyzx4
I'm creating a project where I have to detect text regions in an image and localize text lines. This I have not yet implemented, in this project after the initial image pre-processing I will generate an edge map and then use CCL (two-pass algorithm) to localize text lines.My question is...
2 Nov 2011 by C_Johnson
A complete step by step guide to show newcomers to EMGUcv how to set up their project
7 Mar 2012 by C_Johnson
An intermediate example of signal processing using EMGU Image Processing Libraries
13 Jun 2012 by cheshm69
hi every body!i have four camera in my game project. they positioned in the center of sphere area and they look at their specific area.(each of them look at 1/4 sphere)when i want do something in my game(like: moving ,firing and etc) i want see it's effect in all of camera(example: if i...
29 Mar 2014 by CHill60
Further to Richard MacCutchan's post, someone else was asking a couple of days ago about Image Comparison. There may be more answers posted How To Find The Simillar Image From Couple Of Images[^]
4 Feb 2012 by codefreakk
I need to perform smoothing, rotation, segmentation and thresholding on image. Are there any inbuilt classes that can perform digital image processing in C# ?Thankx.
23 Apr 2013 by CPallini
Did you try Google[^]?
23 Apr 2013 by CPallini
In priciple you can, but that's 'the recipe to disaster' according to Multiple processes write to the same file (C)[^].
11 Jun 2015 by CPallini
It all depends on your 'real time' requirements, that is on the speed analog data is collected by the arduino device (an transmitted to your PC, data transmission could be the actual bottleneck). I would use the the language offering the more high level features (and richer library) the...
16 Sep 2015 by CPallini
There is no mention of C++ in your question body.Anyway, usually you might call C++ code packaged in a DLL via Platform Invoke[^].
27 Oct 2016 by CPallini
A simple solution would be using a variable containing current state as eitherProcessing a valid word.Processing blanks.Processing a to-be-skipped word.Then, based on current state and next char, your program could establish correctly what to do.
17 Sep 2011 by Daisy priscilla
is it possible to do a image processing project in .net or java other then java..which will be effective and useful for an COMPUTER SCIENCE ENGINEERING student ?
28 Jan 2014 by darne hitaro
How does request processing works out from the perspective of a php developer? More than that I'm concerned with e.g. once request is parsed through.htaccess ,mapped to the file and respone is sent back. The mechanism of how this response gets sent back to the client is what I eagerly want to...
30 Jan 2014 by darne hitaro
A php code sent a query to the database say credentials from login page for verifying and something was returned say TRUE OR FALSE as status. Now my question is, if I do not know the code of the developer who wrote the login form, does there exist any way to find out what query is made to the...
23 Apr 2013 by DARSANA K
what is pixel expansion in visual cryptography for color images and how it can be implemented in C#.If Anyone having idea please share...
3 Jun 2011 by Dave Kreskowiak
Without setting processor affinity, you can't.It's also a bad idea unless you have VERY SPECIFIC reasons for doing so and know the pitsfalls.One such pitfall is that you limit your code to running on single core even if the core is also busy doing other things and other cores are idle. ...
24 Dec 2012 by Dave Kreskowiak
You're missing a second type identifier in the following line: Image My_Image = new Image(Openfile.FileName);There has to be a second type identifier after the comma, in both places.Perhaps you should read Creating Your First EMGU Image Processing Project[^]
12 Jun 2016 by David A. Gray
What happens when you have more items in your list than you have items in your control string?
23 Mar 2020 by DragonNinjaBD
hello, im very new to coding. my college beginner's course uses Java script in Processing 3. for my project, i need to make my avatar scale to a different size every time he goes across the screen. the scaling using a while loop is what im having...
28 Mar 2012 by eduphilic
I am looking for a code in j-query , regarding image size reducing its size at different place on the same website (e.g. if you see facebook, the profile image of individual at left top panel is big and same image is reduced in size when this image appears with comment box) .
6 Jun 2021 by Ethan Franco
Hello all, I am currently trying to make the game Hangman using Python in Processing. I have the code to run the game, as well as code for some visuals. The problem is combining the code I've written so far. The game code is written in standard...
31 Aug 2022 by FitzEmmy
Hi, I'm trying to complete a project in Processing using python, but I'm completely stumped. I've been at it for days now and I can't seem to get past some parts of it. Here's the full prompt: "You will create an interactive program that will...
2 Aug 2011 by fjdiewornncalwe
How about trying some of the links that appear in a google searchFrom your question, what have you tries so far?
21 Jun 2010 by Fredrik Bornander
You can get the Raster out of an image and then get the pixels out of that.Here's an (unoptimized) example:package sandbox;import java.awt.Image;import java.awt.image.BufferedImage;import java.awt.image.Raster;import java.io.File;import java.io.IOException;import...
14 Sep 2014 by George Jonsson
You should go to the OpenCV official site for support. Welcome to opencv documentation![^]Here is an example from that site that looks like it shows what you want to do.Cascade Classifier[^]Quote:Use the CascadeClassifier class to detect objects in a video stream. Particularly, we will...
28 Feb 2019 by Gerry Schmitz
If you didn't "step through the code" with the debugger to see what happened in every intermediate step, how do you expect someone else to? Step through the code and come back when you have a better idea where the problem is because no one else can. It's called "testing".
29 Mar 2014 by Getrude Chando
I have to differentiate plastic water bottles of different sizes i.e. water bottles of different sizes will pass in front of a camera which will capture their image and brought it to PC for processing and I should be able to count a certain sized bottle and ignore others I have to make the...
25 Sep 2012 by Grasshopper.iics
Easy Image Inpainting using Local Binary Pattern
4 Apr 2012 by gregtheross
How to do third party image processing in new Metro style apps.
15 Apr 2014 by GuyThiebaut
One way to process this sort of information is to import the data into raw tables at the database side.Then to move the raw data to staging tables and then on to the actual tables making any changes to data when moving data into the staging tables.I would recommend against manipulating...
5 Jun 2010 by Henry Minute
This article Camera Vision - video surveillance on C#[^] might give you some ideas.And here[^] is a Webcam class which you may find useful.
21 Jan 2011 by Henry Minute
The circle will be drawn wherever you tell it to. The way that you tell it is by the Location and Size properties of the Rectangle. Try changing the Location that you use. If it is currently at top left then that is 0, 0, try changing that to 10, 10 or something else (remember to keep the...
2 Jun 2013 by HTaylor
Out-of-Scope Payment Processing on the Cloud
14 Aug 2015 by i00
It seems you are trying to get the top left pixel of text?If you just have text and everything else is transparent you can just load the Metafile and call .GetBounds(Imaging.MetafileFrameUnit.Pixel) on it!Kris
18 Dec 2023 by Intel
Take Advantage of On-Chip Acceleration of Data Transformation in 4th Gen Intel® Xeon® Scalable Processors
24 Dec 2012 by irfanniazi
i am developing automatic mcqs grader as my fyp.for this purpose i am using c# with emgu cv and the problem i am facing is when i want to load an image by using this code private void button1_Click(object sender, EventArgs e) { OpenFileDialog Openfile = new OpenFileDialog();...
13 Nov 2016 by Jack Vanlightly
In this article we'll look at common patterns in batch processing and how the Taskling libraries provide a simple and reliable way of using those patterns in your C# batch jobs.
9 Dec 2012 by Jackie00100
As the title says! can I force a method/function to run on an other process without going too much into assemblies/decompiling etc.?I'm having a app that is in need of doing some very heavy memory work with some graphic objects using GDI+, (up to ½-1 GB) so I want to have this to run in a...
6 Nov 2014 by Jakub Szymanowski
Article presents the problem of the detection and cancelation of impulse noise in acoustic signals using an Exponentially Weighted Least Squares (EWLS) and next step error prediction analysis.
6 Mar 2016 by Jakub Szymanowski
The article presents idea and implementation of Fourier Transform (DFT and FFT algorithms) in Digital Signal Processing.
10 Jan 2017 by Jakub Szymanowski
The article presents idea and implementation of fundamental algorithms in image processing.
3 Jun 2011 by jiji2663
helloi want to set a thread or task to one core's of cpu and manage it in c#?of corse whitout Process.GetCurrentProcess().ProcessorAffinity please F1F1F1F1F1F1F1F1 !!!!!!!!!!!thnx
22 Jan 2011 by JOAT-MON
You can get a Graphics reference to the image by using the Graphics.FromImage() function. Then I would use the function in the Graphics class called DrawEllipse[^]. It has an overload that allows you to pass a Pen (i.e. Pens.Red) and a Rectangle. The rectangle will define the location and the...
31 May 2022 by Jochen Haar
Class to manage the content of Comma Separated Value Files or to deal with Structured Tables in memory
2 Aug 2011 by jyoti87
Hi. I am akshata. I am a computer engineer. we present a novel fast video search algorithm for large video database. This algorithm is based on the adjacent pixel intensity difference quantization (APIDQ) algorithm, which had been reliably applied to human face recognition previously. An...
2 Aug 2011 by jyoti87
hi .please give me adjacent pixel intensity difference quantization (APIDQ) algorithm.and tell me what is the use of the algorithm.
2 Aug 2011 by jyoti87
Our project deals with searching for a video file and playing it from the given date and given time in minutes and seconds.The amount of audiovisual information available in digital format has grown exponentially in recent years. Gigabytes of new images, audio and video clips are generated...
18 Apr 2017 by KarstenK
Take a look at the article Multiple face detection and recognition in real time. It handles face detection with opencv. Please use the search box or Google the next time before askimg the Q&A ;-)
9 Jan 2011 by Kasson
Hope This[^] will give an idea.
12 Aug 2012 by Kenneth Haugland
This would be an extremly difficlult problem, if you are dealing with pictures alone. There are projects here on hte web site that detects numbers and you should be able to do the same with text:Realtime Webcam Sudoku Solver[^]other links could be found by searching this...
26 Jul 2011 by Kim Togo
All 32-bit versions of Windows 7 can support up to 32 processor cores, while 64‑bit versions can support up to 256 processor cores.http://windows.microsoft.com/en-US/windows7/products/system-requirements[^]
5 Nov 2021 by KINYUA TIMOTHY NJIRU
I am trying to align an image B with another image A, I have a method that should return the transformation that should align B to A with the minimum cost possible. I have gotten the derives to use in the method from a research paper that was...
19 May 2010 by kiway
hi, im getting the same error, if you have fixed that problem please tell me how u did.Thnx
28 Jul 2015 by Kornfeld Eliyahu Peter
You have to go back and learn about web applications...Web - by its nature - is a disconnected application, where the two parts of the application exists and active in an exclusive way...It means that when the server active the client not and when the client active the server not...The...
10 Sep 2012 by Kuthuparakkal
This would get you started:WPF 3D: Part 1 of n[^]
15 Apr 2011 by Lady Malie
we were tasked to simply find the orientation of an object in an image.we were able to find an algorithm which involves using the moments of the image. problem is that we were confused with the results...the codes we have are as follows:FOR GETTING THE MOMENTSpublic void...
4 May 2011 by Lady Malie
in our project, we are supposed to be looking for two or more objects from an image.is it possible to extract all of them all at once?if it is, how do we do that?we already did the pre-processing of the image using threshold and otsu threshold for auto-thresholding. all we need to do...
8 Nov 2019 by larry118
Hi, I found this neat little example on scrolling a regular picturebox in vb .net a while ago. I apologize because I can't give credit where credit is due, but it works great for zooming except for one little problem, actually two. I need to show some info while mousing over the image such as...
17 Mar 2014 by LyEliza
How do i subtract two images in C#?? i.e. i want the resultant image to contain only the differences. i am a student and new to C#. Pls help me out..i tried converting to color matrix and subtracting it but it didn't work out. MATLAB has direct option for subtracting images(imsubtract()). i am...
23 Oct 2013 by M Rayhan
Simple wav2mp3 converter console application.
5 Dec 2012 by Maazatron
Hello every oneIam developing a simple game in processing using javaI am getting an error in my code saying "unexpected token: void" this is in the void setup() partCan you please:-1) Help me find the problem and help me solve it.2) What does unexpected token meanHere is my code....
8 May 2012 by Mabchour 1989
Dear all,I have a signal that is composed of five different waves and I need to "filter" each wave and display it on its own, how can I do that(I'm not that good in electricity/signal processing x) )
14 Sep 2016 by Maciej Los
VisualBasic knows GetObject[^] method, which returns COM object or nothing (null). [EDIT]There's no C# equivalent method, unless you add a reference to Microsoft.VisualBasic (not recommended).Richard Deeming[^] wrote:There is a C# equivalent to GetObject -...
5 Jul 2012 by Mario Ghecea
This article describes the technique I used to ingest large text files to create an e-book publishing platform on the Android Market
13 Apr 2010 by Martin Jarvis
Well, without actually writing this for you you can change your algorithm:Select all "channel/item" elementsLoop through the elementsprint out the title, Description and pubDate child elementsI've not tested it but the solution should look something like this:XMLElement[]...
25 Jan 2012 by Master Div
Hello guys , i'm a newbie at programming still at the university. I need help for my project which consist of calculating the speed of vehicles from a video using openCV and C++. Any help would be greatly appreciated and so sample codes. The main part is calculating the average speed , added...
29 Nov 2013 by Mehdy Moini
Implementing a map as a tree, and finding the shortest path, between the streets, is what you will see.
14 Sep 2013 by Member 10274514
I cannot get me code count the vowels in the entry text box. What have I done wrong? string inputString; inputString = this.entryTextBox.Text.ToLower(); char[] vowels = new char[] {'a', 'e', 'i', 'o', 'u'}; ...
28 Jul 2015 by Member 10527204
Hello i have added following code in my web application protected void Page_Load(object sender, EventArgs e) { System.Diagnostics.Process.Start("Notepad.exe"); } as an example i am using notepad.exe , actually i want any exe to open from webpage.this...
30 Jan 2014 by Member 10562044
You can use this:..............................using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { ...
15 Apr 2014 by Member 10750764
Hello Y'all,I have a csv file to read through, no problem about reading through and processing it. see table...
7 May 2014 by Member 10791767
I have heard that FPGA is better than GPU. Can any one tell me why?
28 Oct 2014 by Member 11068482
after 4 week i find my problem and i should setup my camera driver and update it for my laptop but when i debug my code it say successful but Many Camera View windows open and after that when i use 'T' for tracking it have troubleshoot occur any body know what is the problem??!!!!i debug it...
3 Nov 2014 by Member 11203951
Hi, I have created an SSRS Custom Data Processing Extension to read a file kept on a windows server. I followed the steps given here http://www.codeproject.com/Articles/22946/Implementing-a-Data-Processing-ExtensionThe extension works fine in development box and reads the file correctly...
6 May 2015 by Member 11670301
I am building an interactive installation using live video footage. English isn't my native language, sorry for possible mistakes.I want to use live webcam footage. The program should have a reference image of the background and should subtract that from the moving foreground. Every few...
8 Jul 2016 by Member 12624805
Suppose that we are given the following code:int[] myArray = {4, 5, 6, 1, 2, 3, 21, 20};for (int i = 0; i
27 Oct 2016 by Member 12819728
I am reading content from a file to be read into a char array in C. How could I delete words which are uppercase // or which start with a non-vowel? I really cant understand how to save the last c ==> how to check if you have space before vowel.int main (){ FILE* read_me =...
27 Oct 2016 by Member 12819728
Yes indeed, in my opinion I should find a vowel and if we have space before it its TRUE, when we skip everything till other space. And this process continuous
18 Apr 2017 by Member 13131673
I need to input a lot of images and using haar detection to detect the people. However, I have some problem using opencv's haar detection. So can anyone give me some hints about how to implement this? What I have tried: I have tried to search some sample codes on my image, but they totally...
22 Jun 2017 by Member 13269839
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading.Tasks; using System.IO.Ports; using System.Windows.Forms.DataVisualization.Charting; ...
4 Oct 2017 by Member 13445625
Thanks for the reply, I solved it. I added counter and condition with it.
8 Oct 2017 by Member 13452762
I am learning processing and there is an assignment question that tells me to use while loop to print out random numbers between -100 and 100, then print out the average of those numbers. I know how to do the first part but not the second... What I have tried: I didn't know any alternatives to...
22 May 2018 by Member 13839779
Hey there! I'm a graphic designer and I know some CSS and HTML but I had an idea to complement a project and don't know how to make it happen! I don't mind learning a new language or learning how to make it but don't know what direction to go and don't even know if it's possible to do what I...