I am using this method to load the image to my picturebox:
private void asdToolStripMenuItem_Click(object sender, EventArgs e)
{
pictureBox1.Load(textBox1.Text);
pictureBox1.Visible = true;
}
The image is loaded perfectly, but when I apply any filter to the image I get error:
Object reference not set to an instance of an object.
So how can I connect my url loaded image to my filters of image processing like gray, RGB and more...