public void TestCreateImageOfBlockOne()
 {
     FloorPlan image1 = new FloorPlan(new Bitmap("../../testImage.jpg"), 1);
     Bitmap test_image = image1.toImage();
     test_image.Save("../../testImage_block1.bmp");
 }
 public void TestCreateImageOfBlockFive()
 {
     FloorPlan image1 = new FloorPlan(new Bitmap("../../testImage.jpg"), 5);
     Bitmap b = image1.toImage();
     b.Save("../../testImage_block5.bmp");
 }