mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
Shifted helper classes for image processing once again to Utility\Images
This commit is contained in:
parent
5520b73a1d
commit
59e250b28d
@ -48,14 +48,14 @@
|
||||
<Compile Include="OSCADObject.BaseTransform.cs" />
|
||||
<Compile Include="OSCADObject.BasicTransforms.cs" />
|
||||
<Compile Include="OSCADObject.Booleans.cs" />
|
||||
<Compile Include="Solids\Imported\Images\AdjacentPixelMatrix.cs" />
|
||||
<Compile Include="Solids\Imported\Images\CubistImageProcessor.cs" />
|
||||
<Compile Include="Solids\Imported\Images\IImageProcessor.cs" />
|
||||
<Compile Include="Solids\Imported\Images\ImageImportMode.cs" />
|
||||
<Compile Include="Utility\Images\AdjacentPixelMatrix.cs" />
|
||||
<Compile Include="Utility\Images\CubistImageProcessor.cs" />
|
||||
<Compile Include="Utility\Images\IImageProcessor.cs" />
|
||||
<Compile Include="Utility\Images\ImageImportMode.cs" />
|
||||
<Compile Include="Solids\Imported\ImportedImage.cs" />
|
||||
<Compile Include="Solids\Imported\ImportedModel.cs" />
|
||||
<Compile Include="Solids\Imported\Images\NeighboringPointFinder.cs" />
|
||||
<Compile Include="Solids\Imported\Images\PolygonalImageProcessor.cs" />
|
||||
<Compile Include="Utility\Images\NeighboringPointFinder.cs" />
|
||||
<Compile Include="Utility\Images\PolygonalImageProcessor.cs" />
|
||||
<Compile Include="Utility\Dependencies.cs" />
|
||||
<Compile Include="IO\DefaultFileInvoker.cs" />
|
||||
<Compile Include="IO\DefaultFileWriter.cs" />
|
||||
|
||||
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
using OSCADSharp.DataBinding;
|
||||
using OSCADSharp.Spatial;
|
||||
using System.Drawing;
|
||||
using OSCADSharp.Solids.Imported.Images;
|
||||
using OSCADSharp.Utility.Images;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported
|
||||
{
|
||||
|
||||
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
/// <summary>
|
||||
/// A matrix for finding neighbors in regions of pixels
|
||||
@ -6,7 +6,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
/// <summary>
|
||||
/// Processes a bitmap image by treating contiguous same-color regions as cubes
|
||||
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
internal interface IImageProcessor
|
||||
{
|
||||
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
/// <summary>
|
||||
/// Ways to process imported images into 3D models
|
||||
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper class to reuse code in image processing for finding adjacent pixels
|
||||
@ -7,7 +7,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using OSCADSharp.DataBinding;
|
||||
|
||||
namespace OSCADSharp.Solids.Imported.Images
|
||||
namespace OSCADSharp.Utility.Images
|
||||
{
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user