Convert Images To Values For Comparison?
Nov 26, 2011
I am making a Texas hold'em poker game for my class project. I already have the cards in the game through an image list. I am now trying to compare the player cards with the flop, turn, and river card to tell the player what they have and if they have won or not. I have tried a number of different things but have come up short. This is the last thing I tried[code]...
View 6 Replies
ADVERTISEMENT
Jul 14, 2009
I want somehow to temporarily store and compare two images capture from my web cam every 5 sec. (basically i`m going to use this as motion detection)I figure out how to perform pixel to pixel comparison but the problem is how can i store the images temporarily every 5 sec?Do i need an array?Can i avoid saving the images for the motion detection?Also is it better to convert the images into gray scale or black & white for the comparison or as they are
View 5 Replies
Aug 24, 2011
I have a code in vb, and I'm trying convert it to c#.
_nextContactDate.ToShortDateString > New Date(1900, 1, 1)
This is _nexContractDate declaration:
Private _nextContactDate As DateTime
Comapre datetime to string?
View 4 Replies
Jan 27, 2011
it's a log in form and I need to put case-sensitive validation in other words if your Username = Admin then Admin != admin Consider this code block (VB is really unfamiliar for me so break it to me gently ^^) This is after it has matched a record in the database to the parameter passed to the function LogIn()
If dataTable.Rows.Count > 0 Then
'case-sensitive Validation follows
'data in Column ID and Password are placed in variables
[code]....
the asterisk-ed line returns an error (obviously) as strId is not of data type String.I also tried using LIKE but again since strId and strPass are not Strings, all I get is an error.
View 1 Replies
May 9, 2012
I am not being able to retrieve from my access database in vb. Here is my code that points to the problem:
[Code]...
The problem I have here seems to me that the comparison between is crop_year =? where ? is the placeholder for Convert.ToInt32(cyrNote.SelectedItem.Trim) which is a value i get from a combobox cyrNote and try to convert it to an integer using Convert.ToInt32() so that it can be compared with the database value crop_year which is defined as integer in the database.
The problem here though is that the select returns null. I tried to replace the placeholder ? with a known value like "2011" and it returned a value. This means to me that my comparison crop_year=Convert.ToInt32(cyrNote.SelectedItem.Trim) is negative yet I expect something positive. I've tried to google on how to convert to integer and that is the best I could get.
View 3 Replies
Jan 1, 2012
I'm creating a program wherein it produces an image pack of a game. I successfully done the whole program but I want to improve it somehow.The game only supports 16 bit BMP images so I need to convert images into that depth.I hope you can help me with this. All I want is to convert a JPG, PNG, BMP*any depth* or GIF to 16 bit BMP.
View 4 Replies
Oct 14, 2009
How do i convert images to JPEG/PNG/ICO etc.
View 4 Replies
Feb 16, 2010
Well i want to be able to take like 100 images and convert them into an AVI at 10 frames per second so itll be 10 second- or watever, how do i do it?
View 4 Replies
Sep 29, 2010
I have a sequence of images I'd like to convert to AVI at 30fps. How could I do that?
View 2 Replies
Jun 30, 2010
i was wondering if anyone has some code or a link to some sample code on how to convert a list of images to a gif image or a video file.
View 1 Replies
Aug 26, 2010
There's a really simple way to convert images to icons:
Dim icon As Icon = Icon.FromHandle(bmp.GetHicon())
It also produces really horrible icons. Is there a better way to convert them, or more accurately, what is the better way to convert them?
View 5 Replies
Apr 11, 2011
When we have code like this:
vb.net
Using connection As New SqlConnection(strConnString)
Using command As New SqlCommand(strQuery, connection)
command.Parameters.AddWithValue("@CuserID", intUserID)
command.Parameters.AddWithValue("@CstartTime", dtStartTime)
[Code]...
View 5 Replies
Aug 2, 2011
I need some thought input on how I can take my string of HEX values and convert them to ASCII according to the specifications below: A function would be ideal since I need to quickly decode about 250 records all having 20 thresholds to record.[code]
View 14 Replies
Mar 29, 2011
I am trying to add a value to an array by converting it to a list [code]...
View 4 Replies
May 30, 2011
I'm looking for a fast way of searching a textbox containing plain text mixed with coordinate values.These coordinate values may contain no decimals or 4 decimal places after the decimal.I'm somewhat familiar with regex, but my uncertainty is the actual number of characters in each word will be different.[code]
View 2 Replies
Oct 16, 2011
Is there anyway to convert an image file bytes array into an array of the real RGB values of that image?
I don't really want to use GDI+ or the System.Drawing library, but simply apply a certain calculation/processing to every byte of the image file and get another array that contains the RGB values of every pixel in that image. I know it could be done as I know how to do it in a different programming language (Python) but not in Visual Basic.
View 1 Replies
Oct 1, 2010
I'm having issues with returning a list of strings of the .Value of a Linq query:
Dim details = <Details>
<Vector size="5">
<Item>Syntactic Structures</Item>
<Item>Introduction</Item>
<Item>The Independence of Grammar</Item>
[Code]...
Is correct in that it returns the list of XElements I want (items 1 - 4, base 0), but I really just need a list of strings for the .Value of those XElements. Maybe I'm just dense here, but anything I've tried in the chapterTitles query isn't working (appending with .ToList.ToString, etc.). details.<Vector>.<Item>.Skip(1).Take(4).Value just returns the first XElement's value.
View 1 Replies
Sep 25, 2009
I'm an undergraduate student from Singapore University, would like to enquire you on how to convert character codes to ASCII codes using visual basic. regarding the codes on how to build it as I need it for my semestral project
View 3 Replies
Jan 16, 2010
I have a device with upon serial communication , it send the data as HEX values , (eg, C020042ABD0F91A103E400F929EBC) . I use the following code to get data from the serial port.
Dim fStream As New FileStream(sFileName, FileMode.CreateNew) ' creates new file
Dim bw As New BinaryWriter(fStream)
System.Threading.Thread.Sleep(1500)
ComTd.Read(data, 1, bCount)
[code]....
View 8 Replies
Mar 16, 2010
onbutton click, I want to convert a string from textbox1 to textbox2 but assign values to each character.
i want to assign an alphabet character, to another alphabet character or number.
for example textbox1 - "visual basic" to textbox2 "abcabc abcab"
example if "v" then "a"
if textbox1 "b" then textbox2"c"
View 8 Replies
Jun 5, 2011
I have a device with upon serial communication, it send the data as HEX values, (e.g., C020042ABD0F91A103E400F929EBC). I use the following code to get data from the serial port.
Dim fStream As New FileStream(sFileName, FileMode.CreateNew) ' creates new file
Dim bw As New BinaryWriter(fStream)
System.Threading.Thread.Sleep(1500)
ComTd.Read(data, 1, bCount)
Dim bCount As Integer = 4119 ' it is the size of the chunk not block size
Dim data(bCount) As Byte
[Code] .....
View 7 Replies
Mar 31, 2012
can i convert colors values to integer?
View 6 Replies
May 30, 2011
Create a function named DecimalDegrees to refactor the code that converts a latitude or longitude into a value in decimal degrees. (This function will be used inside the functions ValueOf and Distance.)
Task 2a: Write the code for the function DecimalDegrees with an input parameter for DegreeString as type string, and returns the value as type Double.
Here is my code for the function part
Private Function DecimalDegrees(ByVal DegreeString As String, ByVal degrees As Double, ByVal minutes As Double,
ByVal seconds As Double, ByVal ID As Integer) As Double
I am having difficulties with the 2nd part which is I believe to take the code for the calc1 and calc2 buttons and somehow get it to convert to decimal degrees by the function I have created. The buttons would then be removed as the code would automatically take the latitude and longitude and convert the degrees, minutes and seconds into a decimal.
Here is the code for the current buttons:
Dim StartPtr, StopPtr As Integer
'To Replace Calculator 1 Button
'Convert degrees before passing argument - Latitude
StartPtr = 0
[Code] .....
View 9 Replies
Sep 14, 2011
I'm getting a JSON response after accessing a web service with my window application written in VB.NET. How can I convert the JSON response to a VB.NET object and vice versa?
View 1 Replies
Jun 7, 2011
i am working in windows appl vb.net 08. And i am working in Access DataBase.I have one Table Called "Person" . In this "Person" Table one Column Name Called "OtherName". In this Column binded in one of the Combobox in a Form.But the Problem is "OtherName" Column having the Null Values.Before i bind this Column to Combobox i want to convert this NULL Values to String. Why i need the values in STRING means , In my code i using this Combobox as a filter in SQL Query.If i didn`t change the Null Value to STRING , The Combobox SelectedText or SelectedValue is Showing Nothing. So i am not able to get the Record.
Whn i write a Sql Query to Combobox and apply filter in WHERE statement like Combobox.Selectedtext or Combobox.SelectedValue In "Selected Change Committed Event" then i should get the record in the Output right but unfortunatly i am not getting the Record. The Record Count in DebugPrint showing 0.
[Code]...
View 6 Replies
Dec 30, 2010
result = SendMessage(buttonhandle, BM_GETSTATE, 0, 0)
buttonChecked = (result = BST_CHECKED)
Now I want to know whether the bit for BST_CHECKED is turned on or not.
How would I do that?
I can do
buttonChecked = (result % 2 = BST_CHECKED)
Is there a better way?
View 2 Replies
Feb 17, 2012
What is the difference (in bref) between (.NET)
myString == otherString
and
myString.CopareTo(otherString) == 0
View 6 Replies
Jan 19, 2010
read this post carfully before you dive headlong into outlining what's wrong/right with the communities.
View 3 Replies
Apr 19, 2011
I'm creating an emulator for a device to simulate wave forms. My challenge is that when I try to convert the output of the following code, I can't convert the Math.Sin's double output into byte values that lend themselves to the byte array format required by an existing graphing control as listed at bottom below. I''m not sure how to handle this when the sin function creates negative values but the byte values will need to be positive and basically 'shifted up' so that anything over 127 is negative. (0 - 255) unsigned. BitConverter.GetBytes has been suggested but THIS is the result of that attempt.
[Code]....
View 2 Replies
Dec 25, 2011
Possible Duplicate: Fastest serializer and deserializer with lowest memory footprint in C#?
I'm using BinaryFormatter class to serialize an structure or a class. (after serialization, I'm going to encrypt the serialized file before saving. (And of course decrypt it before deserialization))But I heard that some other serialization classes are present in .Net Framework. Like XmlSerializer, JavaScriptSerializer, DataContractSerializer and protobuf-net.I want to know, which one is best for me?Less RAM space needed for serialize/deserialize is the most important thing for me. Also speed is important.
View 2 Replies