Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~8K People Reached
Favorite Tags
Member Avatar for sathya8819

Hi, I have this following code for watershed algo to segment an image. But I do not know what the error is. Can someone help me out [CODE]namespace watershed1 { public partial class Form1 : Form { public int X; public int Y; public int Height; // labels the pixel …

Member Avatar for kvprajapati
0
984
Member Avatar for sathya8819

Hi, I would like to know if it is possible to obtain a color picker in c#, something similar to the properties dialog box in .NET. My application requires choosing the color dynamically. I know that there is a ColorDialog control, but I assume that the color picker is far …

Member Avatar for dotmeatpack
0
129
Member Avatar for mansoorhacker

Hello To all Great developers. i want to use urdu in my textboxes and grid and i want to insert urdu in to database via these controls, plz let me explain step by step how to use urdu in c#.net. in vb6.0 we used urdutexbox.ocx control but .net i think …

Member Avatar for mansoorhacker
0
90
Member Avatar for tristan17

Hi, I am looking for the algorthim for converting rgb to hsv values. Does anyone know of any program or algorithm in php?? thanks in advance, tris

Member Avatar for almostbob
0
398
Member Avatar for sathya8819

Hi, Does anyone know how to use NHibernate to connect to an SQL Server database? If so, please help me Thanks

Member Avatar for kvprajapati
0
49
Member Avatar for sathya8819

Hi, I would like to know the idea behind one issue. In some sites, when you register using your email id, an automatically generated email is receieved in your inbox, which contains a link that you must click to activate your membership. How is this done? Can anyone help me …

Member Avatar for sathya8819
0
271
Member Avatar for sathya8819

Hi, I have an application where I have to use two dll files as reference to my project. The thing is, my dll files both have the same name, but are something like different versions. I am not able to add both as references becoz of clash in name. And …

Member Avatar for sknake
0
78
Member Avatar for sathya8819

Hi, I have this application wherein I take all images in a folder, perform some image processing funcitons. These functions require the extensive use of generic lists ans stack. The application works perfectly fine, except that it is very slow. My guess is this delay is because of using too …

0
54
Member Avatar for sathya8819

Hi, I would like to know if there is any way using C# to free the memory being used. I have a very complex application where OutOfMemoryException occurs frequently. Is there any code or any other possibility to free the used memory, say at the beginning of each iteration of …

Member Avatar for sathya8819
0
109
Member Avatar for sathya8819

Hi, I am implementing a code which uses the FolderBrowserDialog control. Here is my code : [CODE]FolderBrowserDialog folder = new FolderBrowserDialog(); DialogResult result = folder.ShowDialog(); if (result == DialogResult.OK) { try { string path = folder.SelectedPath; string[] files = Directory.GetFiles(path, "*.jpeg"); foreach (string file in files) { using (Stream s …

Member Avatar for sathya8819
0
338
Member Avatar for amlanjyoti.s

Hello, this is the first time I am posting in DaniWeb.com. I am a first semester student of B.Sc(IT). Me and some of my batch mates are looking forward to organize a sort of code war, to give ourselves a test of team based projects and a sense of friendly …

Member Avatar for sathya8819
0
132
Member Avatar for sathya8819

Hi, I have an application where I have images stored in a folder called testimages and access them using : [CODE]String[] files = Directory.GetFiles(@"C:\Users\pashok\Documents\test\testimages\", "*.jpeg");[/CODE] Now, I want to modify the program in such a way that the folder called testimages is placed in my project directory. In this case, …

Member Avatar for sathya8819
0
105
Member Avatar for sathya8819

Hi, I have an application where I need to load images present in a folder onto my Visual Studio application. As in if I have a folder named temp and I have say 5 images temp1-temp5 inside the folder temp, i need to load each of the images temp1-temp5 (in …

Member Avatar for sathya8819
0
318
Member Avatar for sathya8819

I am implementing a code to detect overlapping regions in a cell, as shown in the attachment. As you can see, the image is an overlapped version of two cells. My aim is to separate them. But I have got no clue whatsoever to do this. Can anyone help me

Member Avatar for sathya8819
0
72
Member Avatar for sathya8819

Hi, I am implementing a project where I have to use adaptive thresholding on an image. That is, the threshold value must not be global, but must adapt itself with the image. I have thought a lot, but am unable to get a logic. It would be really helpful if …

Member Avatar for sathya8819
0
135
Member Avatar for sathya8819

Hi, I have a code where I have to use the region class in drawing. When I type using System.Drawing., the region class doesnt appear in the drop down list. I know this is a kinda silly doubt, but I need to include it in my project. Thanks prashanth

Member Avatar for sathya8819
0
164
Member Avatar for sathya8819

Hi, I have this following code for RGB to HSL conversion, but I do not know how to use it to display my image. Can someone help out [CODE]var_R = ( R / 255 ) //RGB from 0 to 255 var_G = ( G / 255 ) var_B = ( …

Member Avatar for sathya8819
0
228
Member Avatar for sathya8819

Hi, I am trying to implement the K Means Clustering Algorithm for Image Segmentation. The logic behind K Means is : 1. Place K points into the space represented by the objects that are being clustered. These points represent initial group centroids. 2. Assign each object to the group that …

Member Avatar for sathya8819
0
812
Member Avatar for sathya8819

Hi, I am developing an image processing application and I face one problem. When I run the application, all I get is a blank form, even though I have a lot of controls attached to it. I know it must be a dumb mistake on my part, but I am …

Member Avatar for Geekitygeek
0
164
Member Avatar for sathya8819

Hi, I am developing an image processing application and I face one problem. When I run the application, all I get is a blank form, even though I have a lot of controls attached to it. I know it must be a dumb mistake on my part, but I am …

Member Avatar for me655321
0
92
Member Avatar for sathya8819

hi, i would like to do a project where I have to detect the characters of a captcha image.. any ideas

Member Avatar for kvprajapati
0
77
Member Avatar for sathya8819

hi, I am creating an application in visual web developer using c# language. I need to create a login page. i have written the following code : [CODE]protected void Button1_Click(object sender, EventArgs e) { int flag=0,count=0; string uname = TextBox1.Text; string pass = TextBox2.Text; start: TextBox3.Text = flag.ToString(); OleDbConnection dbconn …

Member Avatar for kvprajapati
0
152
Member Avatar for Mitja Bonca

1. My namespace is called "MyNameSpace". So... How to create that Form3 will inherit from Form2, which is already a child of Form1 (Form2 has class: public partial class Form2 : Form) I would like to creat like: class Form3 : Form2 And do not forget, all are windows forms. …

Member Avatar for Geekitygeek
1
219
Member Avatar for sathya8819

Hi, I have a problem. I have this image with various regions detected and coloured differntly. What I now need to do is, to find the mathematical center of each of these regions. I have the code for this. [CODE] int labelnew = 2,centerx,centery; List<Point> l = new List<Point>(); Point …

Member Avatar for sathya8819
0
70
Member Avatar for vikram89

i am working on a single cell image to detect the nucleus. Logic used- 1. i am detecting the darkest pixel in the cell(which in most cases belongs to the nucleus) 2. using canny edge detection to detect the edges.(low threshold=0, high threshold=0, sigma=3) 3. threshold with a value of …

Member Avatar for vikram89
-1
549
Member Avatar for sathya8819

Hi. I am implementing the Kuwahara Filter in c#. The code for this is given below. [CODE] unsafe { Bitmap bmps = (Bitmap)pictureBox1.Image; Bitmap bmpd = (Bitmap)pictureBox1.Image.Clone(); BitmapData bms = bmps.LockBits(new Rectangle(0, 0, bmps.Width, bmps.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); BitmapData bmd = bmpd.LockBits(new Rectangle(0, 0, bmpd.Width, bmpd.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); byte* b1 = …

Member Avatar for Geekitygeek
0
290
Member Avatar for sathya8819

I am implementing an image processing related code in C#. It works almost fine, but I find a problem that I am anable to solve. When I run the project, I get the output perfectly. But when I minimize the screen and expand it, the originial image appears distorted. I …

Member Avatar for sathya8819
0
695
Member Avatar for sathya8819

I am trying to implement the Kuwahara Filter in C#. I think my code is right, but I am not getting an exact output. Can someone help me with where I am going wrong? [CODE] unsafe { try { Bitmap b1 = (Bitmap)pictureBox1.Image.Clone(); Bitmap b2 = new Bitmap(b1.Width, b1.Height); BitmapData …

Member Avatar for Geekitygeek
0
449
Member Avatar for annaqah

hello, I'm happy to participate in this forum and this is my first post. our instructor gave us an assignment to design an id using C# windows application and i don' know how to put vertical line using label or any thing thanks in advance

Member Avatar for ddanbe
0
323
Member Avatar for bennetprabhu2k

i like to do the project in image processing any body plz provide me ideas and suggestions regarding the topic..,

Member Avatar for sathya8819
1
68