Volume Cartographer 2.27.0
|
Generate a Texture of layered images. More...
#include <vc/graph/texturing.hpp>
Public Member Functions | |
LayerTextureNode () | |
Public Attributes | |
smgl::InputPort< PerPixelMap::Pointer > | ppm |
Input PerPixelMap. More... | |
smgl::InputPort< Volume::Pointer > | volume |
Input Volume. More... | |
smgl::InputPort< Generator > | generator |
Neighborhood generator. More... | |
smgl::OutputPort< ImageList > | texture |
Generated texture image. More... | |
Private Types | |
using | ImageList = std::vector< cv::Mat > |
using | TAlgo = texturing::LayerTexture |
using | Generator = NeighborhoodGenerator::Pointer |
Private Member Functions | |
auto | serialize_ (bool useCache, const filesystem::path &cacheDir) -> smgl::Metadata override |
void | deserialize_ (const smgl::Metadata &meta, const filesystem::path &cacheDir) override |
Private Attributes | |
TAlgo | textureGen_ |
ImageList | texture_ |
Generate a Texture of layered images.
Definition at line 550 of file texturing.hpp.
|
private |
Generator class type
Definition at line 558 of file texturing.hpp.
|
private |
Image list type
Definition at line 554 of file texturing.hpp.
|
private |
Algorithm class type
Definition at line 556 of file texturing.hpp.
volcart::LayerTextureNode::LayerTextureNode | ( | ) |
Constructor
|
overrideprivate |
smgl custom deserialization
|
overrideprivate |
smgl custom serialization
smgl::InputPort<Generator> volcart::LayerTextureNode::generator |
Neighborhood generator.
std::runtime_error | If the provided generator is not a LineGenerator. |
Definition at line 575 of file texturing.hpp.
smgl::InputPort<PerPixelMap::Pointer> volcart::LayerTextureNode::ppm |
Input PerPixelMap.
Definition at line 566 of file texturing.hpp.
smgl::OutputPort<ImageList> volcart::LayerTextureNode::texture |
Generated texture image.
Definition at line 577 of file texturing.hpp.
|
private |
Output layer images
Definition at line 562 of file texturing.hpp.
|
private |
Texturing algorithm
Definition at line 560 of file texturing.hpp.
smgl::InputPort<Volume::Pointer> volcart::LayerTextureNode::volume |
Input Volume.
Definition at line 568 of file texturing.hpp.