Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Operations/OperationCalibrateElephantFoot.cs')
-rw-r--r--UVtools.Core/Operations/OperationCalibrateElephantFoot.cs29
1 files changed, 15 insertions, 14 deletions
diff --git a/UVtools.Core/Operations/OperationCalibrateElephantFoot.cs b/UVtools.Core/Operations/OperationCalibrateElephantFoot.cs
index e5e3caa..5da95f4 100644
--- a/UVtools.Core/Operations/OperationCalibrateElephantFoot.cs
+++ b/UVtools.Core/Operations/OperationCalibrateElephantFoot.cs
@@ -638,11 +638,12 @@ namespace UVtools.Core.Operations
using (var target = new Mat())
using (var mask = shape.CloneBlank())
{
- mask.SetTo(new MCvScalar(brightness));
- CvInvoke.Erode(shape, erode, kernel, anchor, DimmingWallThickness, BorderType.Reflect101,
- default);
- CvInvoke.Subtract(shape, erode, diff);
- CvInvoke.BitwiseAnd(diff, mask, target);
+ mask.SetTo(new MCvScalar(byte.MaxValue-brightness));
+ CvInvoke.Erode(shape, erode, kernel, anchor, DimmingWallThickness, BorderType.Reflect101, default);
+ //CvInvoke.Subtract(shape, erode, diff);
+ //CvInvoke.BitwiseAnd(diff, mask, target);
+ //CvInvoke.Add(erode, target, target);
+ CvInvoke.Subtract(shape, mask, target);
CvInvoke.Add(erode, target, target);
target.CopyTo(roi);
//addText(roi, count, $"W: {DimmingWallThickness}", $"B: {brightness}");
@@ -750,16 +751,16 @@ namespace UVtools.Core.Operations
progress++;
- SlicerFile.SuppressRebuildProperties = true;
- SlicerFile.LayerHeight = (float)LayerHeight;
- SlicerFile.BottomExposureTime = (float)BottomExposure;
- SlicerFile.ExposureTime = (float)NormalExposure;
- SlicerFile.BottomLayerCount = BottomLayers;
-
- SlicerFile.LayerManager.Layers = newLayers;
- SlicerFile.LayerManager.RebuildLayersProperties();
- SlicerFile.SuppressRebuildProperties = false;
+ SlicerFile.SuppressRebuildPropertiesWork(() =>
+ {
+ SlicerFile.LayerHeight = (float)LayerHeight;
+ SlicerFile.BottomExposureTime = (float)BottomExposure;
+ SlicerFile.ExposureTime = (float)NormalExposure;
+ SlicerFile.BottomLayerCount = BottomLayers;
+ SlicerFile.LayerManager.Layers = newLayers;
+ }, true);
+
return !progress.Token.IsCancellationRequested;
}