|
It is not that tough these days. Wasn't tough even when I got in.
|
|
|
|
|
fraulin wrote:
Given a dental record usually as a postmortem (PM) radiograph we need to search the database of ante mortem (AM) radiographs to determine the identity of the person associated with the PM image.
We use a semi-automatic method to extract shapes of the teeth from the AM and PM radiographs and find the affine transform that best fits the shapes in the PM image to those in the AM images.
I don't get these at all. You say their shapes would differ between "ante" and postmortem?
fraulin wrote: 1) comparison of antemortem and postmortem DENTAL radiograph
2) IMAGE SEGMENTATION
3) TEETH EXTRACTION
4) SCORING VALUE BASED ON PERFECT MATCH
As I can see, this involves image processing to a good extent. Are you going to work with 3D images or 2D images?
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
HI FRAULIN I M NIVEA DOING THE SAME PROJECT WHICH U R DOING........... CAN I KNOW IN WHICH LANGUAGE U R DOING? HAVE U COMPLETED THE PROJECT .......... IF U REPLY I WILL BE VERY THANKFUL 2 U TIL THE END........ CAN I HAVE UR PHONE NO FOR MORE DETAILED CONVERSATION............ HOPE U REPLY ME SOON... WAITING EAGERLY FOR UR REPLY......... PLS HELP US.....
|
|
|
|
|
pls help me by giving me the code
|
|
|
|
|
vinodkrebc wrote: pls help me by giving me the code
This sort of help is done at Rentacoder and not here. It is not free, so be prepared to spend.
Moreover, how is this going to benefit you as a developer? You aren't going to get any better this way.
Time is the best teacher; unfortunately it kills all of its students.
जय हिंद
|
|
|
|
|
Use this:
string strFileName = GetDestinationFile(inputFileName, DestinationFormat.Word);
You can pass DestinationFormat.Image.Jpeg, DestinationFormat.Image.Gif.
For an implementation of GetDestinationFile() and DestinationFormat enumeration, please visit RentACoder.
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
The woods are lovely, dark and deep,
But I have promises to keep,
And miles to go before I sleep,
And miles to go before I sleep!
|
|
|
|
|
how one encrypted text file and one normal video file will embed
|
|
|
|
|
embed in ? If you mean in a single file then yes. You need to use System.IO.BinaryWriter .
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
Hello,
i am using this code to fill combo box but their is error code is this
SqlDataAdapter da = new SqlDataAdapter (str,con);
DataSet ds = new DataSet ();
da.Fill(ds,"student_biodata");
cmbstudent_name.DataSource= ds.Tables;
cmbstudent_name.DisplayMember="student_name";
cmbstudent_name.ValueMember = "student_id";
cmbstudent_name.SelectedIndex = -1;
the error is on
cmbstudent_name.DataSource= ds.Tables;
this line .
Complex DataBinding accepts as a data source either an IList or an IListSource.
|
|
|
|
|
try this
cmbstudent_name.DataSource= ds.Tables[0];
|
|
|
|
|
i dont think it will accept a dataset....you should bind a datatable
the dataadapter should fill a datatable and bind it to the combobox like this...
SqlDataAdapter da = new SqlDataAdapter (str,con);
DataTable dtInfo = new DataTable();
da.Fill(dtInfo);
cmbstudent_name.DataSource= dtInfo;
(if it is a web application, you should add also this line after the datasource..
cmbstudent_name.DataBind();
|
|
|
|
|
Dear All,
I am trying to fill combo by selecting value from an other combo box i am using this code.
cmbstudent_name.DataSource= ds;
cmbstudent_name.DisplayMember="student_name";
cmbstudent_name. = "student_id";
cmbstudent_name.SelectedIndex = -1;
this is the error.
Cannot bind to the new display member.
Parameter name: newDisplayMember
what should i do now.
Thanks
|
|
|
|
|
try this,
cmbstudent_name.DataSource= ds.Tables[0];
cmbstudent_name.DisplayMember="student_name";
cmbstudent_name.ValueMember = "student_id";
cmbstudent_name.SelectedIndex = -1;
|
|
|
|
|
Even after doing Unlockbits,we get the error as "Image is already locked",if we try to lock the image.
Plz do Help....
|
|
|
|
|
Hi,
my best guess is something, probably an exception, is making your code skip the unlockbits part. It may be wise to use a try-finally construct so the finally part can guarantee the unlock to occur.
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
|
|
|
|
|
Hi all,
We developed a product. We have to provide trail period(10days) for that product.
For that we tried in the following way.
At installation of our product we are storing the 10th day date from installation date into system registry.
and we are checking date every time when user logins
if(DateTime.Now<=registrydate)
//Continue
else
//Close the application
MessageBox.Show("The trail period is completed");
Application.Exit();
This works fine until user changes System DateTime.
I wants to avoid that also, even though if user changes System date it should work only for 10days.
Plz suggest me how to do that.
Thanks in advance...
|
|
|
|
|
Keep track of the date your application was last accessed. If the date is less than last time application was opened, you can calculate actual trial period remaining.
What if the user just deletes the registry entry and re installs the application? This will make your application like a free version.
You can also try out Trial Creator[^] If you wish to.
Time is the best teacher; unfortunately it kills all of its students.
जय हिंद
|
|
|
|
|
What if the user just deletes the registry entry and re installs the application? This will make your application like a free version.
He have to enter the key, this will be supplid by us.
My problem is
What if user changes the System date, by clicking on TaskBar SystemTray Icon(Time).
I wants solution for that.
|
|
|
|
|
buy .NET Reactor[^]
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
Hi,
Thanks for your suggestion. But our company not interested to buy such tools/softwares.
Is not possible by c# coding?
|
|
|
|
|
I am searching to write an store procedure in .cs file (C#) and then execute it in access data base (.mdb). Is there any way?
But wants to execute multiple Queries in single store procedure. Is it Possible?
Thanks in Advance
Pankaj Deharia
|
|
|
|
|
Dear All,
I am looking code for navigation with different form like in vb.net form1.show
what is the technique in c Sharp for jump on next form.
thanks.
|
|
|
|
|
in vb, forms created as static. Therefore if you want the same technique in C# you have to make form static that is not a good idea. However, you can create an instance of that form and show it.
form1 f = new form1();
f.Show();
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
form1 frm =new form1();
frm.ShowDialog();
|
|
|
|
|
Hi,
How to get C# (using XmlDocument.Load(..)) to read " " in the source document. It's throwing the following exception
Reference to undeclared entity 'nbsp'
Regards,
Hari
|
|
|
|