Algorithms.h File Reference

Go to the source code of this file.

Classes

struct  artec::sdk::algorithms::FastFusionSettings
 Parameters for fast fusion algorithm. More...
 
struct  artec::sdk::algorithms::PoissonFusionSettings
 
struct  artec::sdk::algorithms::SerialRegistrationSettings
 
struct  artec::sdk::algorithms::GlobalRegistrationSettings
 
struct  artec::sdk::algorithms::TexturizationSettings
 
struct  artec::sdk::algorithms::SmallObjectsFilterSettings
 
struct  artec::sdk::algorithms::MeshSimplificationSettings
 
struct  artec::sdk::algorithms::FastMeshSimplificationSettings
 
struct  artec::sdk::algorithms::LoopClosureSettings
 
struct  artec::sdk::algorithms::OutliersRemovalSettings
 

Namespaces

 artec
 
 artec::sdk
 
 artec::sdk::base
 
 artec::sdk::algorithms
 

Enumerations

enum  artec::sdk::algorithms::InputFilter {
  artec::sdk::algorithms::InputFilter_UseTextureKeyFrames = 0,
  artec::sdk::algorithms::InputFilter_UseAllTextures
}
 Enum for Poisson Fusion and Texturization algorithms. More...
 
enum  artec::sdk::algorithms::PoissonFusionType {
  artec::sdk::algorithms::PoissonFusionType_Sharp,
  artec::sdk::algorithms::PoissonFusionType_Smooth,
  artec::sdk::algorithms::PoissonFusionType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::FillHolesType {
  artec::sdk::algorithms::FillHolesType_All,
  artec::sdk::algorithms::FillHolesType_ByRadius,
  artec::sdk::algorithms::FillHolesType_ForceDword = 0x7fffffff
}
 Fill_holes (for PoissonFusion) settles the algorithm to fill holes in the mesh being reconstructed. More...
 
enum  artec::sdk::algorithms::SerialRegistrationType {
  artec::sdk::algorithms::SerialRegistrationType_Rough,
  artec::sdk::algorithms::SerialRegistrationType_RoughTextured,
  artec::sdk::algorithms::SerialRegistrationType_Fine,
  artec::sdk::algorithms::SerialRegistrationType_FineTextured,
  artec::sdk::algorithms::SerialRegistrationType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::GlobalRegistrationType {
  artec::sdk::algorithms::GlobalRegistrationType_Geometry,
  artec::sdk::algorithms::GlobalRegistrationType_GeometryAndTexture,
  artec::sdk::algorithms::GlobalRegistrationType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::TexturizeType {
  artec::sdk::algorithms::TexturizeType_Advanced = 0,
  artec::sdk::algorithms::TexturizeType_Simple,
  artec::sdk::algorithms::TexturizeType_Atlas,
  artec::sdk::algorithms::TexturizeType_KeepAtlas,
  artec::sdk::algorithms::TexturizeType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::TexturizeResolution {
  artec::sdk::algorithms::TexturizeResolution_512x512 = 0,
  artec::sdk::algorithms::TexturizeResolution_1024x1024,
  artec::sdk::algorithms::TexturizeResolution_2048x2048,
  artec::sdk::algorithms::TexturizeResolution_4096x4096,
  artec::sdk::algorithms::TexturizeResolution_8192x8192,
  artec::sdk::algorithms::TexturizeResolution_16384x16384,
  artec::sdk::algorithms::TexturizeResolution_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::SmallObjectsFilterType {
  artec::sdk::algorithms::SmallObjectsFilterType_LeaveBiggestObject = 0,
  artec::sdk::algorithms::SmallObjectsFilterType_FilterByThreshold = 1,
  artec::sdk::algorithms::SmallObjectsFilterType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::SimplifyType {
  artec::sdk::algorithms::SimplifyType_TriangleQuantity,
  artec::sdk::algorithms::SimplifyType_Accuracy,
  artec::sdk::algorithms::SimplifyType_Remesh,
  artec::sdk::algorithms::SimplifyType_TriangleQuantityFast,
  artec::sdk::algorithms::SimplifyType_ForceDword = 0x7fffffff
}
 
enum  artec::sdk::algorithms::SimplifyMetric {
  artec::sdk::algorithms::SimplifyMetric_EdgeLength,
  artec::sdk::algorithms::SimplifyMetric_EdgeLengthAndAngle,
  artec::sdk::algorithms::SimplifyMetric_DistanceToSurface,
  artec::sdk::algorithms::SimplifyMetric_DistanceToSurfaceIterative,
  artec::sdk::algorithms::SimplifyMetric_ForceDword = 0x7fffffff
}
 

Functions

bool AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::checkAlgorithmsPermission ()
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeFastFusionSettings (FastFusionSettings *desc, base::ScannerType scannerType)
 Initializes Fast Fusion algorithm descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializePoissonFusionSettings (PoissonFusionSettings *desc, base::ScannerType scannerType)
 Initializes Poisson Fusion algorithm descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeTexturizationSettings (TexturizationSettings *desc, base::ScannerType scannerType)
 Initialize texturize algorithm descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeSmallObjectsFilterSettings (SmallObjectsFilterSettings *desc, base::ScannerType scannerType)
 Initializes small object filter descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeMeshSimplificationSettings (MeshSimplificationSettings *desc, base::ScannerType scannerType, SimplifyType simplifyType)
 Initializes mesh simplification descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeFastMeshSimplificationSettings (FastMeshSimplificationSettings *desc, base::ScannerType scannerType)
 Initializes fast mesh simplification descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::initializeOutliersRemovalSettings (OutliersRemovalSettings *desc, base::ScannerType scannerType)
 Initializes outliers removal descriptor with scanner related defaults. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createFastFusionAlgorithm (IAlgorithm **fusion, const FastFusionSettings *desc)
 Creates basic fusion algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createPoissonFusionAlgorithm (IAlgorithm **fusion, const PoissonFusionSettings *desc)
 Creates poisson fusion algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createSerialRegistrationAlgorithm (IAlgorithm **serialRegistration, const SerialRegistrationSettings *desc)
 Creates serial registration algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createGlobalRegistrationAlgorithm (IAlgorithm **globalRegistration, const GlobalRegistrationSettings *desc)
 Creates global registration algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createTexturizationAlgorithm (IAlgorithm **texturizer, const TexturizationSettings *desc)
 Create texturize algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createSmallObjectsFilterAlgorithm (IAlgorithm **smallObjectsFilter, const SmallObjectsFilterSettings *desc)
 Creates small objects filter algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createMeshSimplificationAlgorithm (IAlgorithm **meshSimplification, const MeshSimplificationSettings *desc)
 Creates mesh simplification algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createFastMeshSimplificationAlgorithm (IAlgorithm **meshSimplification, const FastMeshSimplificationSettings *desc)
 Creates fast mesh simplification algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createLoopClosureAlgorithm (IAlgorithm **loopClosure, const LoopClosureSettings *desc)
 Creates loop closure algorithm. More...
 
ErrorCode AALGORITHMSDK_LINK_SPEC artec::sdk::algorithms::createOutliersRemovalAlgorithm (IAlgorithm **outliesRemoval, const OutliersRemovalSettings *desc)
 Creates outliers removal algorithm. More...