Files
UVtools/UVtools.Core/Operations/OperationRedrawModel.cs
T
Tiago Conceição 0ba61780b7 v2.4.0
* (Upgrade) EmguCV/OpenCV to v4.5.1
* (Upgrade) AvaloniaUI to 1.0
* (Improvement) GUI re-touched
* (Improvement) Make pixel editor tab to disappear when pixel editor is disabled
* (Improvement) Simplify the output filename from PrusaSlicer profiles
* (Improvement) All operations require a slicer file at constructor rather than on execute, this allow exposure the open file to the operation before run it
* (Improvement) Calibrations: Auto set "Mirror Output" if open file have MirrorDisplay set
* (Change) Tool - Redraw model/supports icon
* (Change) photon and cbddlp to use version 3 by default
* (Add) Tool - Dynamic layer height: Analyze and optimize the model with dynamic layer heights, larger angles will slice at lower layer height
        while more straight angles will slice larger layer height. (#131)
* (Add) Calibration - Exposure time finder: Generates test models with various strategies and increments to verify the best exposure time for a given layer height
* (Add) File load checks, trigger error when a file have critical errors and attempt to fix non-critical errors
  * Layers must have an valid image, otherwise trigger an error
  * Layers must have a incremental or equal position Z than it previous, otherwise trigger an error
  * If layer 0 starts at 0mm it will auto fix all layers, it will add Layer Height to the current z at every layer
* (Add) Tool - Edit print parameters: Allow set parameters to each x layers and skip n layers inside the given range.
        This allow the use of optimizations in a layer pattern, for example, to set 3s for a layer but 2.5s for the next.
* (Add) Layer height property to "Layer Data" table: Shows layer height for the slice
* (Fix) When automations applied and file is saved, it will not warn user about file overwrite for the first time save
* (Fix) Tool - Redraw model/supports: Disable apply button when no file selected
* (Fix) Tool - Infill: Lack of equality member to test if same infill profile already exists
* (Fix) Auto converted files from SL1 where clipping filename at first dot (.), now it only strips known extensions
* (Fix) SL1 encoded files wasn't generating the right information and lead to printer crash
* (Fix) PrusaSlicer printer "Anycubic Photon S" LiftSpeed was missing and contains a typo (#135)
* (Fix) PrusaSlicer profile manager wasnt marking missing profiles to be installed (#135)
* (Fix) PrusaSlicer folder search on linux to also look at %HOME%/.config/PrusaSlicer (#135, #136)
* (Fix) Operations were revised and some bug fixed, most about can't cancel the progress
* (Fix) Some typos on tooltips
* (Fix) Prevent PhotonS from enconding, it will trigger error now as this format is read-only
* **(Fix) Ctrl + Shift + Z to redo the last operation:**
  * The layer range is reseted instead of pull the used values
  * Tool - Arithmetic always disabled
  * Action - Layer import didn't generate info and always disabled
2021-02-06 22:09:55 +00:00

257 lines
9.4 KiB
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
using System;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using Emgu.CV.Util;
using UVtools.Core.Extensions;
using UVtools.Core.FileFormats;
using UVtools.Core.Objects;
namespace UVtools.Core.Operations
{
[Serializable]
public class OperationRedrawModel : Operation
{
#region Members
private string _filePath;
private byte _brightness = 220;
private bool _contactPointsOnly = true;
private RedrawTypes _redrawType = RedrawTypes.Supports;
private bool _ignoreContactLessPixels = true;
#endregion
#region Overrides
public override Enumerations.LayerRangeSelection StartLayerRangeSelection { get; } = Enumerations.LayerRangeSelection.None;
public override string Title => "Redraw model/supports";
public override string Description =>
"Redraw the model or supports with a set brightness. This requires an extra sliced file from same object but without any supports and raft, straight to the build plate.\n" +
"Note: Run this tool prior to any made modification. You must find the optimal exposure/brightness combo, or supports can fail.";
public override string ConfirmationText => "redraw the "+ (_redrawType == RedrawTypes.Supports ? "supports" : "model") +
$" with an brightness of {_brightness}?";
public override string ProgressTitle => "Redrawing " + (_redrawType == RedrawTypes.Supports ? "supports" : "model");
public override string ProgressAction => "Redraw layers";
public override StringTag Validate(params object[] parameters)
{
var sb = new StringBuilder();
if (IsFileValid() is null)
{
sb.AppendLine("The selected file is not valid.");
}
return new StringTag(sb.ToString());
}
public override string ToString()
{
var result = $"[{_redrawType}] [B: {_brightness}] [CS: {_contactPointsOnly}] [ICLP: {_ignoreContactLessPixels}]";
if (!string.IsNullOrEmpty(ProfileName)) result = $"{ProfileName}: {result}";
return result;
}
#endregion
#region Enums
public enum RedrawTypes : byte
{
Supports,
Model,
}
#endregion
#region Constructor
public OperationRedrawModel() { }
public OperationRedrawModel(FileFormat slicerFile) : base(slicerFile) { }
#endregion
#region Properties
[XmlIgnore]
public string FilePath
{
get => _filePath;
set => RaiseAndSetIfChanged(ref _filePath, value);
}
public RedrawTypes RedrawType
{
get => _redrawType;
set => RaiseAndSetIfChanged(ref _redrawType, value);
}
public static Array RedrawTypesItems => Enum.GetValues(typeof(RedrawTypes));
public byte Brightness
{
get => _brightness;
set
{
if (!RaiseAndSetIfChanged(ref _brightness, value)) return;
RaisePropertyChanged(nameof(BrightnessPercent));
}
}
public decimal BrightnessPercent => Math.Round(_brightness * 100 / 255M, 2);
public bool ContactPointsOnly
{
get => _contactPointsOnly;
set => RaiseAndSetIfChanged(ref _contactPointsOnly, value);
}
public bool IgnoreContactLessPixels
{
get => _ignoreContactLessPixels;
set => RaiseAndSetIfChanged(ref _ignoreContactLessPixels, value);
}
#endregion
#region Equality
protected bool Equals(OperationRedrawModel other)
{
return _brightness == other._brightness && _contactPointsOnly == other._contactPointsOnly && _redrawType == other._redrawType && _ignoreContactLessPixels == other._ignoreContactLessPixels;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != this.GetType()) return false;
return Equals((OperationRedrawModel) obj);
}
public override int GetHashCode()
{
return HashCode.Combine(_brightness, _contactPointsOnly, (int) _redrawType, _ignoreContactLessPixels);
}
#endregion
#region Methods
public FileFormat IsFileValid(bool returnNewInstance = false) =>
FileFormat.FindByExtension(_filePath, true, returnNewInstance);
protected override bool ExecuteInternally(OperationProgress progress)
{
var otherFile = IsFileValid(true);
otherFile.Decode(_filePath, progress);
progress.Reset(ProgressAction, otherFile.LayerCount);
int startLayerIndex = (int)(SlicerFile.LayerCount - otherFile.LayerCount);
if (startLayerIndex < 0) return false;
Parallel.For(0, otherFile.LayerCount, layerIndex =>
{
if (progress.Token.IsCancellationRequested) return;
var fullMatLayerIndex = startLayerIndex + layerIndex;
using var fullMat = SlicerFile[fullMatLayerIndex].LayerMat;
using var bodyMat = otherFile[layerIndex].LayerMat;
using var fullMatRoi = GetRoiOrDefault(fullMat);
using var bodyMatRoi = GetRoiOrDefault(bodyMat);
using var patternMat = EmguExtensions.InitMat(fullMatRoi.Size, new MCvScalar(255 - _brightness));
using var supportsMat = new Mat();
bool modified = false;
if (_redrawType == RedrawTypes.Supports && _contactPointsOnly)
{
if (layerIndex + 1 >= otherFile.LayerCount) return;
CvInvoke.Subtract(fullMatRoi, bodyMatRoi, supportsMat); // Supports
using var contours = new VectorOfVectorOfPoint();
using var hierarchyMat = new Mat();
CvInvoke.FindContours(supportsMat, contours, hierarchyMat, RetrType.List, ChainApproxMethod.ChainApproxSimple);
if (contours.Size <= 0) return;
using var nextLayerMat = otherFile[layerIndex + 1].LayerMat;
using var nextLayerMatRoi = GetRoiOrDefault(nextLayerMat);
var fullSpan = fullMatRoi.GetPixelSpan<byte>();
var supportsSpan = supportsMat.GetPixelSpan<byte>();
var nextSpan = nextLayerMatRoi.GetPixelSpan<byte>();
for (int i = 0; i < contours.Size; i++)
{
var foundContour = false;
var rectangle = CvInvoke.BoundingRectangle(contours[i]);
for (int y = rectangle.Y; y < rectangle.Bottom && !foundContour; y++)
for (int x = rectangle.X; x < rectangle.Right; x++)
{
var pos = supportsMat.GetPixelPos(x, y);
if (_ignoreContactLessPixels)
{
if (supportsSpan[pos] <= 10) continue;
if (nextSpan[pos] <= 0) continue;
modified = true;
fullSpan[pos] = _brightness;
}
else
{
if (supportsSpan[pos] <= 100) continue;
if (nextSpan[pos] <= 150) continue;
CvInvoke.DrawContours(fullMatRoi, contours, i, new MCvScalar(_brightness), -1, LineType.AntiAlias);
modified = true;
foundContour = true;
break;
}
}
}
}
else
{
switch (_redrawType)
{
case RedrawTypes.Supports:
CvInvoke.Subtract(fullMatRoi, bodyMatRoi, supportsMat); // Supports
break;
case RedrawTypes.Model:
CvInvoke.BitwiseAnd(fullMatRoi, bodyMatRoi, supportsMat); // Model
break;
}
CvInvoke.Subtract(fullMatRoi, patternMat, fullMatRoi, supportsMat);
modified = true;
}
if (modified)
{
SlicerFile[fullMatLayerIndex].LayerMat = fullMat;
}
lock (progress.Mutex)
{
progress++;
}
});
return !progress.Token.IsCancellationRequested;
}
#endregion
}
}