Hi All I have executed this program in Turbo C it is working fine But when i exe this pro in LINUX it's not at all gng inside for loop can anybody tell me the...
Natikar Karna
ksnatikar@...
Mar 1, 2005 8:18 am
3277
1.) You forgot to threshold the image after substraction, for better performance. 2.) Edges can be directly detected by sobel,etc.. edge detection methods. 3.)...
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3284
File : Exploring DataStructures with C.doc Description : Download the EXPLORING DATA STRUCTURES WITH C (1 - 13 Pages)...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3285
File : HowToBeAProgrammer.pdf Description : MUST READ - How To Be a Programmer / Team Person...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3286
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3287
(MUST READ: IMPORTANT) Group Rules ********************************* * Subscription & Unsubscription * ********************************* How to Subscribe to...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3288
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...
File : c4s.zip Description : Animated(Graphical) C Tutorial...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3291
File : malloc.c Description : Implementation of malloc in C...
c4swimmers@yahoogroup...
Mar 1, 2005 9:58 pm
3292
Hi In case of enhancing the edge of the image, you have to do the sharpening of the image. It is done by setting the outer grey levels =1, that is in the...
Boscoraj.N{ M.Sc [CT]...
bosuvasat@...
Mar 2, 2005 4:44 am
3293
Hi, There is one more best method I think. you can find out the edges and add it to the original image, rather than sharpening the whole image. I think this...
hi friends, did any of you attended the wipro interview conducted in Anna University on 19th February. i didnot get any mail regarding it. please inform if any...
Pls don't post any mail like the given below.... I feel this is a forum for C puzzles, issues, solutions etc...etc... Pls post only those mails which contains...
DilipSankar_211490
211490@...
Mar 2, 2005 8:55 am
3296
Hi, Can anybody provide me information on clustering. Thanks, Navjot. __________________________________ Celebrate Yahoo!'s 10th Birthday! Yahoo!...
navjot sharma
navjot_sharma@...
Mar 2, 2005 9:25 am
3297
Frnds does anybody know how to load an XML file to a C language GUI.. I need to display it in the GUI.. whn i am provided with both the XML and the XSL file. ...
hi the XML contains some datas.. and i want to display it in a seperate GUI( developed using c and java). When we use msn messenger the history of the chat...
On Java, you could use the JAXP APIs available in javax.xml.parsers to parse the XML file. On C, you could use the libxml2 APIs (open source), or any such XML...
hi.. can u please tell me how can i invoke my default mail client through java?? is the function runtime.exec() enough.. I found tht in command prompt we can...
Hi ! This pdf file was having the good coding standard. Thanks. ... From: <c4swimmers@yahoogroups.com> To: <c4swimmers@yahoogroups.com> Sent: Wednesday, March...
Jose Antony
josea@...
Mar 2, 2005 2:59 pm
3304
If using VC++, you can use MSXML4.0 parser and for .NET you can use System.XML ... From: "enchanter" <friendship_rays@...> To: "c 4 swimmers"...
You should typecast TOTAL_ELEMENTS when you use it in for loop. Because #defines are data type independent. In for loop it does not know which datatype it is....