Notes
Notes - notes.io |
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AForge.Imaging.Filters;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
Bitmap originalImage;
public Form1()
{
InitializeComponent();
}
private void openToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog openDialog = new OpenFileDialog();
// openDialog.ShowDialog();
if(openDialog.ShowDialog() == DialogResult.OK)
{
// image is created in Bitmap format
originalImage = new Bitmap(openDialog.FileName);
pictureBox1.Image = originalImage;
}
}
private void button2_Click(object sender, EventArgs e)
{
Bitmap img = Grayscale.CommonAlgorithms.BT709.Apply(originalImage);
pictureBox2.Image = img;
}
private void button1_Click(object sender, EventArgs e)
{
Bitmap grayImage = Grayscale.CommonAlgorithms.BT709.Apply(originalImage);
Threshold bwObject = new Threshold(100);
Bitmap bwImage = bwObject.Apply(grayImage);
pictureBox2.Image = bwImage;
// Another way of making the picture black and white
// create filter
//Threshold filter = new Threshold(100);
// apply the filter
//filter.ApplyInPlace(grayImage);
//pictureBox2.Image = grayImage;
}
private void button3_Click(object sender, EventArgs e)
{
Bitmap grayImage = Grayscale.CommonAlgorithms.BT709.Apply(originalImage);
HomogenityEdgeDetector filter = new HomogenityEdgeDetector();
// apply the filter
filter.ApplyInPlace(grayImage);
pictureBox2.Image = grayImage;
}
// Function to check is the pixel is skin or not
bool isSkin(Color c)
{
// Algorith to detect the skin color. Range is given in the algorithm in the paper
return (c.R > 95 && c.G > 40 && c.B > 20) &&
(Math.Max(c.R, Math.Max(c.G, c.B)) -
(Math.Min(c.R, Math.Min(c.G, c.B))) > 25 &&
(Math.Abs(c.R - c.G) > 15 && c.R > c.G && c.R > c.B));
}
// Getting the skin of the image
private void button4_Click(object sender, EventArgs e)
{
//preserving original image
Bitmap copiedImage = (Bitmap)originalImage.Clone();
for (int x = 0; x < copiedImage.Width; x++)
{
for (int y = 0; y < copiedImage.Height; y++)
{
if(!isSkin(copiedImage.GetPixel(x,y)))
{
copiedImage.SetPixel(x, y, Color.Black);
}
}
}
copiedImage = Grayscale.CommonAlgorithms.BT709.Apply(copiedImage);
Threshold beObj = new Threshold(50);
copiedImage = beObj.Apply(copiedImage);
// Apply Closing morphological operation on the skin image
Closing cl = new Closing();
Bitmap otherImage = cl.Apply(copiedImage);
// show on the pictureBox2
pictureBox2.Image = otherImage;
// Getting the pixel value at (10,15) coordinates
//Color c = originalImage.GetPixel(10, 15);
//c.R;
//c.G;
//c.B;
}
}
}
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team