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
~355 People Reached
Favorite Forums
Member Avatar for ntouros

sorry for this question but i don't know how to correspond this: picture box1=blob1,picture box2=blob2,...etc; i try it i look all the source code and didn't find how to take the image of each blob.where can i find the image of each blob? i have stuck. basically i want to …

Member Avatar for DdoubleD
0
140
Member Avatar for ntouros

[code=c#] private void button1_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == DialogResult.OK) { pictureBox1.Image = Bitmap.FromFile(openFileDialog1.FileName); org = (Bitmap)pictureBox1.Image.Clone(); } } private void button3_Click(object sender, EventArgs e) { if (saveFileDialog1.ShowDialog() == DialogResult.OK) { pictureBox1.Image.Save(saveFileDialog1.FileName); } } private void button2_Click(object sender, EventArgs e) { Bitmap temp = (Bitmap)org.Clone(); ot.Convert2GrayScaleFast(temp); int otsuThreshold= …

Member Avatar for ntouros
0
215