mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 19:42:32 +02:00
a7d15a24d0
* (Add) About box: Primary screen identifier and open on screen identifier * (Add) Calibrator - External tests * (Change) Rewrite 'Action - Import Layer(s)' to support file formats and add the followig importation types: * **Insert:** Insert layers. (Requires images with bounds equal or less than file resolution) * **Replace:** Replace layers. (Requires images with bounds equal or less than file resolution) * **Stack:** Stack layers content. (Requires images with bounds equal or less than file resolution) * **Merge:** Merge/Sum layers content. (Requires images with same resolution) * **Subtract:** Subtract layers content. (Requires images with same resolution) * **BitwiseAnd:** Perform a 'bitwise and' operation over layer pixels. (Requires images with same resolution) * **BitwiseOr:** Perform a 'bitwise or' operation over layer pixels. (Requires images with same resolution) * **BitwiseXOr:** Perform a 'bitwise xor' operation over layer pixels. (Requires images with same resolution) * (Change) Icon for Tool - Raft Relief * (Change) Windows and dialogs max size are now calculated to where window is opened instead of use the primary or first screen all the time
506 lines
21 KiB
C#
506 lines
21 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.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
using Emgu.CV;
|
|
using Emgu.CV.CvEnum;
|
|
using UVtools.Core.Extensions;
|
|
using UVtools.Core.FileFormats;
|
|
using UVtools.Core.Objects;
|
|
|
|
namespace UVtools.Core.Operations
|
|
{
|
|
[Serializable]
|
|
public sealed class OperationLayerImport : Operation
|
|
{
|
|
#region Enums
|
|
public enum ImportTypes : byte
|
|
{
|
|
Insert,
|
|
Replace,
|
|
Stack,
|
|
Merge,
|
|
Subtract,
|
|
BitwiseAnd,
|
|
BitwiseOr,
|
|
BitwiseXOr,
|
|
}
|
|
#endregion
|
|
|
|
private ImportTypes _importType = ImportTypes.Stack;
|
|
private uint _startLayerIndex;
|
|
private bool _extendBeyondLayerCount = true;
|
|
private bool _discardUnmodifiedLayers;
|
|
private ushort _stackMargin = 50;
|
|
private ObservableCollection<StringTag> _files = new();
|
|
|
|
#region Overrides
|
|
|
|
public override Enumerations.LayerRangeSelection StartLayerRangeSelection => Enumerations.LayerRangeSelection.None;
|
|
public override bool CanROI => false;
|
|
public override string Title => "Import Layers";
|
|
|
|
public override string Description =>
|
|
"Import layers from local files into the model at a selected layer height.\n" +
|
|
"NOTE: Imported images must be greyscale and have the same resolution as the model.";
|
|
|
|
public override string ConfirmationText => $"{_importType} import {Count} file{(Count>=1?"s":"")}?";
|
|
|
|
public override string ProgressTitle =>
|
|
$"{_importType} importing {Count} file{(Count>=1 ? "s" : "")}";
|
|
|
|
public override string ProgressAction => "Imported layers";
|
|
|
|
public override bool CanCancel => true;
|
|
|
|
public override uint LayerIndexEnd => _startLayerIndex + Count - 1;
|
|
|
|
public override bool CanHaveProfiles => false;
|
|
|
|
public override StringTag Validate(params object[] parameters)
|
|
{
|
|
/*var result = new ConcurrentBag<StringTag>();
|
|
Parallel.ForEach(Files, file =>
|
|
{
|
|
using (Mat mat = CvInvoke.Imread(file.TagString, ImreadModes.AnyColor))
|
|
{
|
|
if (mat.Size != FileResolution)
|
|
{
|
|
result.Add(file);
|
|
}
|
|
}
|
|
});
|
|
|
|
if (result.IsEmpty) return null;
|
|
var message = new StringBuilder();
|
|
message.AppendLine($"The following {result.Count} files mismatched the target resolution of {FileResolution.Width}x{FileResolution.Height}:");
|
|
message.AppendLine();
|
|
uint count = 0;
|
|
foreach (var file in result)
|
|
{
|
|
count++;
|
|
if (count == 20)
|
|
{
|
|
message.AppendLine("... Too many to show ...");
|
|
break;
|
|
}
|
|
message.AppendLine(file.Content);
|
|
}
|
|
|
|
|
|
return new StringTag(message.ToString(), result);*/
|
|
|
|
StringBuilder sb = new();
|
|
|
|
if (Files.Count == 0)
|
|
{
|
|
sb.AppendLine("No files to import.");
|
|
}
|
|
|
|
return new StringTag(sb.ToString());
|
|
}
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
[XmlIgnore]
|
|
public Size FileResolution { get; }
|
|
|
|
public ImportTypes ImportType
|
|
{
|
|
get => _importType;
|
|
set
|
|
{
|
|
if(!RaiseAndSetIfChanged(ref _importType, value)) return;
|
|
RaisePropertyChanged(nameof(IsImportStackType));
|
|
RaisePropertyChanged(nameof(IsExtendBeyondLayerCountVisible));
|
|
}
|
|
}
|
|
|
|
|
|
public static Array ImportTypesItems => Enum.GetValues(typeof(ImportTypes));
|
|
|
|
public bool IsImportStackType => _importType == ImportTypes.Stack;
|
|
|
|
public uint StartLayerIndex
|
|
{
|
|
get => _startLayerIndex;
|
|
set => RaiseAndSetIfChanged(ref _startLayerIndex, value);
|
|
}
|
|
|
|
public bool ExtendBeyondLayerCount
|
|
{
|
|
get => _extendBeyondLayerCount;
|
|
set => RaiseAndSetIfChanged(ref _extendBeyondLayerCount, value);
|
|
}
|
|
|
|
public bool IsExtendBeyondLayerCountVisible => _importType == ImportTypes.Replace || _importType == ImportTypes.Stack || _importType == ImportTypes.Merge;
|
|
|
|
public bool DiscardUnmodifiedLayers
|
|
{
|
|
get => _discardUnmodifiedLayers;
|
|
set => RaiseAndSetIfChanged(ref _discardUnmodifiedLayers, value);
|
|
}
|
|
|
|
public ushort StackMargin
|
|
{
|
|
get => _stackMargin;
|
|
set => RaiseAndSetIfChanged(ref _stackMargin, value);
|
|
}
|
|
|
|
[XmlIgnore]
|
|
public ObservableCollection<StringTag> Files
|
|
{
|
|
get => _files;
|
|
set => RaiseAndSetIfChanged(ref _files, value);
|
|
}
|
|
|
|
public uint Count => (uint) Files.Count;
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
public OperationLayerImport()
|
|
{
|
|
}
|
|
|
|
public OperationLayerImport(Size fileResolution)
|
|
{
|
|
FileResolution = fileResolution;
|
|
}
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public void AddFile(string file)
|
|
{
|
|
Files.Add(new StringTag(Path.GetFileNameWithoutExtension(file), file));
|
|
}
|
|
|
|
public void Sort()
|
|
{
|
|
var sortedFiles = Files.ToList();
|
|
sortedFiles.Sort((file1, file2) => string.Compare(Path.GetFileNameWithoutExtension(file1.TagString), Path.GetFileNameWithoutExtension(file2.TagString), StringComparison.Ordinal));
|
|
Files.Clear();
|
|
foreach (var file in sortedFiles)
|
|
{
|
|
Files.Add(file);
|
|
}
|
|
//Files.Sort((file1, file2) => string.Compare(Path.GetFileNameWithoutExtension(file1), Path.GetFileNameWithoutExtension(file2), StringComparison.Ordinal));
|
|
}
|
|
|
|
|
|
/*public uint CalculateTotalLayers(uint totalLayers)
|
|
{
|
|
if (DiscardRemainingLayers)
|
|
{
|
|
return (uint) (1 + InsertAfterLayerIndex + Files.Count - (ReplaceStartLayer ? 1 : 0));
|
|
}
|
|
if (ReplaceSubsequentLayers)
|
|
{
|
|
uint result = (uint) (1 + InsertAfterLayerIndex + Files.Count - (ReplaceStartLayer ? 1 : 0));
|
|
return result <= totalLayers ? totalLayers : result;
|
|
}
|
|
|
|
return (uint)(totalLayers + Files.Count - (ReplaceStartLayer ? 1 : 0));
|
|
}*/
|
|
|
|
public override string ToString()
|
|
{
|
|
var result = $"[Files: {Count}]" + LayerRangeString;
|
|
if (!string.IsNullOrEmpty(ProfileName)) result = $"{ProfileName}: {result}";
|
|
return result;
|
|
}
|
|
|
|
public override bool Execute(FileFormat slicerFile, OperationProgress progress = null)
|
|
{
|
|
progress ??= new OperationProgress();
|
|
slicerFile.SuppressRebuildProperties = true;
|
|
|
|
List<FileFormat> fileFormats = new();
|
|
List<KeyValuePair<uint, string>> keyImage = new();
|
|
int lastProcessedLayerIndex = -1;
|
|
|
|
// Order raw images
|
|
for (int i = 0; i < Count; i++)
|
|
{
|
|
if (!Files[i].TagString.EndsWith(".png", StringComparison.OrdinalIgnoreCase) &&
|
|
!Files[i].TagString.EndsWith(".bmp", StringComparison.OrdinalIgnoreCase) &&
|
|
!Files[i].TagString.EndsWith(".jpeg", StringComparison.OrdinalIgnoreCase) &&
|
|
!Files[i].TagString.EndsWith(".jpg", StringComparison.OrdinalIgnoreCase) &&
|
|
!Files[i].TagString.EndsWith(".gif", StringComparison.OrdinalIgnoreCase)) continue;
|
|
keyImage.Add(new KeyValuePair<uint, string>((uint) keyImage.Count, Files[i].TagString));
|
|
}
|
|
|
|
// Create virtual file format with images
|
|
if (keyImage.Count > 0)
|
|
{
|
|
progress.Reset("Packing images", (uint) keyImage.Count);
|
|
SL1File format = new SL1File();
|
|
format.LayerManager = new LayerManager((uint) keyImage.Count, format);
|
|
|
|
Parallel.ForEach(keyImage, pair =>
|
|
{
|
|
if (progress.Token.IsCancellationRequested) return;
|
|
using var mat = CvInvoke.Imread(pair.Value, ImreadModes.Grayscale);
|
|
if (pair.Key == 0) format.Resolution = mat.Size;
|
|
format[pair.Key] = new Layer(pair.Key, mat, format);
|
|
|
|
lock (progress.Mutex)
|
|
{
|
|
progress++;
|
|
}
|
|
});
|
|
|
|
progress.Token.ThrowIfCancellationRequested();
|
|
fileFormats.Add(format);
|
|
}
|
|
|
|
// Order remaining possible file formats
|
|
for (int i = 0; i < Count; i++)
|
|
{
|
|
if (Files[i].TagString.EndsWith(".png", StringComparison.OrdinalIgnoreCase) ||
|
|
Files[i].TagString.EndsWith(".bmp", StringComparison.OrdinalIgnoreCase) ||
|
|
Files[i].TagString.EndsWith(".jpeg", StringComparison.OrdinalIgnoreCase) ||
|
|
Files[i].TagString.EndsWith(".jpg", StringComparison.OrdinalIgnoreCase) ||
|
|
Files[i].TagString.EndsWith(".gif", StringComparison.OrdinalIgnoreCase)) continue;
|
|
|
|
var fileFormat = FileFormat.FindByExtension(Files[i].TagString, true, true);
|
|
if(fileFormat is null) continue;
|
|
fileFormat.FileFullPath = Files[i].TagString;
|
|
fileFormats.Add(fileFormat);
|
|
}
|
|
|
|
progress.Token.ThrowIfCancellationRequested();
|
|
|
|
if (fileFormats.Count == 0) return false;
|
|
|
|
if (_importType == ImportTypes.Stack)
|
|
{
|
|
new OperationMove(slicerFile, Enumerations.Anchor.TopLeft){LayerIndexEnd = slicerFile.LastLayerIndex}.Execute(slicerFile, progress);
|
|
}
|
|
|
|
foreach (var fileFormat in fileFormats)
|
|
{
|
|
if (!string.IsNullOrEmpty(fileFormat.FileFullPath))
|
|
{
|
|
fileFormat.Decode(fileFormat.FileFullPath, progress);
|
|
}
|
|
|
|
var boundingRectangle = slicerFile.LayerManager.GetBoundingRectangle(progress);
|
|
var fileFormatBoundingRectangle = fileFormat.LayerManager.GetBoundingRectangle(progress);
|
|
var roiRectangle = Rectangle.Empty;
|
|
|
|
// Check if is possible to process this file
|
|
switch (_importType)
|
|
{
|
|
case ImportTypes.Insert:
|
|
if (slicerFile.Resolution != fileFormat.Resolution &&
|
|
(slicerFile.Resolution.Width < fileFormat.LayerManager.BoundingRectangle.Width ||
|
|
slicerFile.Resolution.Height < fileFormat.LayerManager.BoundingRectangle.Height)) continue;
|
|
slicerFile.LayerManager.Reallocate(_startLayerIndex, fileFormat.LayerCount);
|
|
break;
|
|
case ImportTypes.Replace:
|
|
case ImportTypes.Stack:
|
|
if (slicerFile.Resolution != fileFormat.Resolution &&
|
|
(slicerFile.Resolution.Width < fileFormat.LayerManager.BoundingRectangle.Width ||
|
|
slicerFile.Resolution.Height < fileFormat.LayerManager.BoundingRectangle.Height)) continue;
|
|
|
|
|
|
if(fileFormatBoundingRectangle.Width >= slicerFile.ResolutionX || fileFormatBoundingRectangle.Height >= slicerFile.ResolutionY)
|
|
continue;
|
|
|
|
int x = 0;
|
|
int y = 0;
|
|
|
|
if (boundingRectangle.Right + _stackMargin + fileFormatBoundingRectangle.Width <
|
|
slicerFile.ResolutionX)
|
|
{
|
|
x = boundingRectangle.Right + _stackMargin;
|
|
}
|
|
else
|
|
{
|
|
y = boundingRectangle.Bottom + _stackMargin;
|
|
}
|
|
|
|
if (y >= slicerFile.ResolutionY)
|
|
continue;
|
|
|
|
roiRectangle = new Rectangle(x, y, fileFormatBoundingRectangle.Width, fileFormatBoundingRectangle.Height);
|
|
|
|
if (_extendBeyondLayerCount)
|
|
{
|
|
int layerCountDifference = (int) (_startLayerIndex + fileFormat.LayerCount - slicerFile.LayerCount);
|
|
if (layerCountDifference > 0)
|
|
{
|
|
slicerFile.LayerManager.ReallocateEnd((uint) layerCountDifference, _importType == ImportTypes.Stack);
|
|
}
|
|
}
|
|
|
|
break;
|
|
case ImportTypes.Merge:
|
|
if (slicerFile.Resolution != fileFormat.Resolution) continue;
|
|
if (_extendBeyondLayerCount)
|
|
{
|
|
int layerCountDifference = (int)(_startLayerIndex + fileFormat.LayerCount - slicerFile.LayerCount);
|
|
if (layerCountDifference > 0)
|
|
{
|
|
slicerFile.LayerManager.ReallocateEnd((uint)layerCountDifference, true);
|
|
}
|
|
}
|
|
break;
|
|
case ImportTypes.Subtract:
|
|
case ImportTypes.BitwiseAnd:
|
|
case ImportTypes.BitwiseOr:
|
|
case ImportTypes.BitwiseXOr:
|
|
if (slicerFile.Resolution != fileFormat.Resolution) continue;
|
|
break;
|
|
}
|
|
|
|
progress.Reset(ProgressAction, fileFormat.LayerCount);
|
|
Parallel.For(0, fileFormat.LayerCount,
|
|
//new ParallelOptions{MaxDegreeOfParallelism = 1},
|
|
i =>
|
|
{
|
|
if (progress.Token.IsCancellationRequested) return;
|
|
uint layerIndex = (uint)(_startLayerIndex + i);
|
|
|
|
switch (_importType)
|
|
{
|
|
case ImportTypes.Insert:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
if (slicerFile.Resolution == fileFormat.Resolution)
|
|
{
|
|
slicerFile[layerIndex] = fileFormat[i];
|
|
break;
|
|
}
|
|
|
|
using var layer = fileFormat[i].LayerMat;
|
|
using var layerRoi = layer.RoiFromCenter(slicerFile.Resolution);
|
|
slicerFile[layerIndex] = new Layer(layerIndex, layerRoi, slicerFile);
|
|
|
|
break;
|
|
}
|
|
case ImportTypes.Replace:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
if (slicerFile.Resolution == fileFormat.Resolution)
|
|
{
|
|
slicerFile[layerIndex] = fileFormat[i];
|
|
break;
|
|
}
|
|
|
|
using var layer = fileFormat[i].LayerMat;
|
|
using var layerRoi = layer.RoiFromCenter(slicerFile.Resolution);
|
|
slicerFile[layerIndex] = new Layer(layerIndex, layerRoi, slicerFile);
|
|
break;
|
|
}
|
|
case ImportTypes.Stack:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var mat = slicerFile[layerIndex].LayerMat;
|
|
using var importMat = fileFormat[i].LayerMat;
|
|
var matRoi = new Mat(mat, roiRectangle);
|
|
var importMatRoi = new Mat(importMat, fileFormatBoundingRectangle);
|
|
importMatRoi.CopyTo(matRoi);
|
|
slicerFile[layerIndex].LayerMat = mat;
|
|
|
|
break;
|
|
}
|
|
case ImportTypes.Merge:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var originalMat = slicerFile[layerIndex].LayerMat;
|
|
using var newMat = fileFormat[i].LayerMat;
|
|
CvInvoke.Add(originalMat, newMat, newMat);
|
|
slicerFile[layerIndex].LayerMat = newMat;
|
|
break;
|
|
}
|
|
case ImportTypes.Subtract:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var originalMat = slicerFile[layerIndex].LayerMat;
|
|
using var newMat = fileFormat[i].LayerMat;
|
|
CvInvoke.Subtract(originalMat, newMat, newMat);
|
|
slicerFile[layerIndex].LayerMat = newMat;
|
|
break;
|
|
}
|
|
case ImportTypes.BitwiseAnd:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var originalMat = slicerFile[layerIndex].LayerMat;
|
|
using var newMat = fileFormat[i].LayerMat;
|
|
CvInvoke.BitwiseAnd(originalMat, newMat, newMat);
|
|
slicerFile[layerIndex].LayerMat = newMat;
|
|
break;
|
|
}
|
|
case ImportTypes.BitwiseOr:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var originalMat = slicerFile[layerIndex].LayerMat;
|
|
using var newMat = fileFormat[i].LayerMat;
|
|
CvInvoke.BitwiseOr(originalMat, newMat, newMat);
|
|
slicerFile[layerIndex].LayerMat = newMat;
|
|
break;
|
|
}
|
|
case ImportTypes.BitwiseXOr:
|
|
{
|
|
if (layerIndex >= slicerFile.LayerCount) return;
|
|
using var originalMat = slicerFile[layerIndex].LayerMat;
|
|
using var newMat = fileFormat[i].LayerMat;
|
|
CvInvoke.BitwiseXor(originalMat, newMat, newMat);
|
|
slicerFile[layerIndex].LayerMat = newMat;
|
|
break;
|
|
}
|
|
default:
|
|
throw new ArgumentOutOfRangeException();
|
|
}
|
|
|
|
|
|
lock (progress.Mutex)
|
|
{
|
|
lastProcessedLayerIndex = Math.Max(lastProcessedLayerIndex, (int)layerIndex);
|
|
progress++;
|
|
}
|
|
});
|
|
|
|
fileFormat.Dispose();
|
|
progress.Token.ThrowIfCancellationRequested();
|
|
}
|
|
|
|
if (_importType == ImportTypes.Stack)
|
|
{
|
|
new OperationMove(slicerFile) { LayerIndexEnd = slicerFile.LastLayerIndex }.Execute(slicerFile, progress);
|
|
}
|
|
|
|
if (lastProcessedLayerIndex <= -1) return false;
|
|
|
|
if (lastProcessedLayerIndex + 1 < slicerFile.LayerCount && _discardUnmodifiedLayers)
|
|
{
|
|
slicerFile.LayerManager.ReallocateRange(0, (uint) lastProcessedLayerIndex);
|
|
}
|
|
|
|
slicerFile.LayerManager.RebuildLayersProperties();
|
|
slicerFile.SuppressRebuildProperties = false;
|
|
slicerFile.RequireFullEncode = true;
|
|
|
|
return true;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|