/// <summary>
 /// Starts the process of segmentation. Initialises a new segmentation manager
 /// with the average colors from colorspace.
 /// </summary>
 public void Calibrate()
 {
     // Reset manager.
     segmentationManager = new SegmentationManager(colorSpace.GetColorsInSpace(cameraTexture.GetWebCamTexture()));
     // Change output.
     onChanged = true;
 }