Forum: C++ Jun 1st, 2009 |
| Replies: 1 Views: 385 Hello,
I am currently attempting to write some code in Matlab which will allow me to output information to a USB port (which is changed into a PPM signal however this part is already accomplished... |
Forum: HTML and CSS Oct 24th, 2008 |
| Replies: 3 Views: 479 OK. So basically I am creating a website and I would like add a feature where I can access websites from my own websites. If you don't know where I'm going then its basically simple. I would like to... |
Forum: C# Mar 31st, 2008 |
| Replies: 10 Views: 11,983 its the tif that i cant delete after I've saved it and used it for MODI. basically look at the bitonalImage.Save line |
Forum: C# Mar 31st, 2008 |
| Replies: 5 Views: 2,180 Sorry, should have posted that as well...
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text... |
Forum: C# Mar 30th, 2008 |
| Replies: 10 Views: 11,983 oo wait your going to have to modify it a little.. i was playing around with it so your going to have to add a string parameter to the OCRprocess and delete the string file already in place. |
Forum: C# Mar 30th, 2008 |
| Replies: 10 Views: 11,983 Dont work... heres the rest of the code that will allow you to run the program.
private static Bitmap bmpScreenshot;
private static Graphics gfxScreenshot;
public... |
Forum: C# Mar 30th, 2008 |
| Replies: 10 Views: 11,983 I am fairly new to C# lol so can you please write down in code by what you mean. I've been trying to chase down the source of this "generic error in GDI+" for over a week. I tried to delete the file... |
Forum: C# Mar 30th, 2008 |
| Replies: 10 Views: 11,983 Does anyone know how to close a file? I saved an image... then when i try and save the image to the same filename.. or delete the file after i saved it... i get an error which states that the file is... |
Forum: C# Mar 28th, 2008 |
| Replies: 5 Views: 2,180 I added a
try
{
code
}
catch...
Im finding that every second time I click the button, it works... if that helps anyone to understand this better... |
Forum: C# Mar 27th, 2008 |
| Replies: 5 Views: 2,180 Hello,
I am getting a General GDI+ Error according to the Visual C# debugger. i have no idea as to how to handle this problem. I have a button which i click and a section of the screen is cut and... |
Forum: C# Mar 24th, 2008 |
| Replies: 0 Views: 3,485 Can someone please explain to me how to use CopyFromScreen. I'm trying to cut out a piece of the screenshot and then convert to tiff using the encoder tiffbitmapencoder. This will later be passed on... |
Forum: C# Mar 23rd, 2008 |
| Replies: 4 Views: 1,059 My errors are:
Newline in Constant.
} expected
; expected
All these errors are being pointed at the end of the array.
Thanks a lot though. |
Forum: C# Mar 23rd, 2008 |
| Replies: 4 Views: 1,059 Aight well i decided to manually make an array but now I am getting a few errors and I have no clue as to what i should do/am doing. could someone take a look at this lol
string[] StringLib = new... |
Forum: C# Mar 22nd, 2008 |
| Replies: 4 Views: 1,059 Hey, I am currently trying to read a text file, which looks something like this:
1
2
3
4
.
.
a
b
c |
Forum: C# Mar 20th, 2008 |
| Replies: 1 Views: 2,221 Aight well I figured that the simplest way of getting the text would be to directly check bit for bit if its the same letter. What I got so far is I am trying to seperate each letter from an image.... |
Forum: C++ Mar 16th, 2008 |
| Replies: 1 Views: 1,940 Hello,
I am fairly new to GDI+ and I am trying to make a DLL file in visual C++ which uses a basic neural network for OCR. My question is this: How can I manipulate bitmap images in visual c++? I... |
Forum: C# Mar 10th, 2008 |
| Replies: 2 Views: 2,174 Hello, I am new to C#. What i am trying to do is this: I am taking a screenshot of my desktop (which i have done and stored in a file). Now all I need is to be able to define the parts of the image... |
Forum: C++ Mar 6th, 2008 |
| Replies: 7 Views: 858 Thanks for replying. All my double arrays are suppose to start at index 1... and i have 14 columns in my cards[4][14] because i have a position for an A at the beginning and the end so I can search... |
Forum: C++ Mar 6th, 2008 |
| Replies: 7 Views: 858 |
Forum: C++ Mar 6th, 2008 |
| Replies: 7 Views: 858 how do i add numbers to my lines too if someone knows that |
Forum: C++ Mar 6th, 2008 |
| Replies: 7 Views: 858 Hey guys,
I've been working on a poker hand recognition assignment and ive been playing around with it for a week getting one problem after the next. Below is my code I have so far.
#include... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 5 Views: 973 Alright well heres the whole program minus a few things. Some parts are incompleted I am simply trying to debug my problems. As of now the ones previuosly mentioned are my only ones.
#include... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 14 Views: 1,059 To add another number to an average you need to know 2 things. The Average and the Number of Values. The Average is calculated as such: SUM/NUMBERofVAL=AVERAGE. So when you multiply AVERAGE by... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 14 Views: 1,059 Why dont you just remember two things: your average and the number of values in the average. So when you need to add another number you do this:
average*number + yournewnumber divided by number+1... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 5 Views: 973 Aight, here is it is. I am basically writing a poker hand recognition program that basically tells me what hand I have. You can make out what the variables mean for yourself as they are straight... |
Forum: C++ Mar 3rd, 2008 |
| Replies: 5 Views: 973 Hello, I've been having a problem with my arrays. The error that I am receiving says "[my array] undeclared (first use this function)" and "invalid types 'bool[int]' for array subscripts". My code... |
Forum: C++ Feb 25th, 2008 |
| Replies: 1 Views: 573 Hello, I've been trying to figure out this problem for a while now and cant figure it out. What im trying to do is assign a value to a location in an array. SIMPLE! isnt it. well heres my problem.... |