void Update()
    {
        resizedInputView.texture = resizer.Resize(webcamTexture, resizeOptions);

        rawInputTrimedView.texture  = webcamTexture;
        rawInputTrimedView.material = resizer.material;

        var options = resizeOptions.GetModifedForWebcam(webcamTexture);

        sb.Clear();
        sb.AppendLine("Midified Options");
        sb.AppendLine($"Rotation: {options.rotationDegree}");
        sb.AppendLine($"Mirror Horizontal: {options.mirrorHorizontal}");
        sb.AppendLine($"Mirror Vertical: {options.mirrorVertical}");
        infoLabel.text = sb.ToString();
    }