private void TakePhoto()
    {
        string path = PathHelper.GetModelTmpPngPath(sceneGuid);

        PathHelper.EnsureDirForFileExists(path);
        cameraCapture.TakeShot(path);
        menuModelController.UpdatePhoto(path);
    }