Skip to content

Commit

Permalink
DOC: Small documentation fixes. (#732)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson authored Oct 6, 2023
1 parent 36f1229 commit 287b427
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ Parameters FindFeatureClusteringFilter::parameters() const
params.insertSeparator(Parameters::Separator{"Cell Ensemble Data"});
params.insert(std::make_unique<AttributeMatrixSelectionParameter>(k_CellEnsembleAttributeMatrixName_Key, "Cell Ensemble Attribute Matrix",
"The path to the cell ensemble attribute matrix where the RDF and RDF min and max distance arrays will be stored", DataPath{}));
params.insertSeparator(Parameters::Separator{"Cell Feature Data"});
params.insertSeparator(Parameters::Separator{"Created Cell Feature Data"});
params.insert(
std::make_unique<DataObjectNameParameter>(k_ClusteringListArrayName_Key, "Clustering List", "Distance of each Features's centroid to ever other Features's centroid", "ClusteringList"));
params.insertSeparator(Parameters::Separator{"Cell Ensemble Data"});
params.insertSeparator(Parameters::Separator{"Created Cell Ensemble Data"});
params.insert(std::make_unique<DataObjectNameParameter>(k_RDFArrayName_Key, "Radial Distribution Function", "A histogram of the normalized frequency at each bin", "RDF"));
params.insert(std::make_unique<DataObjectNameParameter>(k_MaxMinArrayName_Key, "Max and Min Separation Distances", "The max and min distance found between Features", "RDFMaxMinDistances"));
// Associate the Linkable Parameter(s) to the children parameters that they control
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Parameters KMeansFilter::parameters() const
params.insert(std::make_unique<ArraySelectionParameter>(k_MaskArrayPath_Key, "Mask", "DataPath to the boolean mask array. Values that are true will mark that cell/point as usable.", DataPath{},
ArraySelectionParameter::AllowedTypes{DataType::boolean}));

params.insertSeparator(Parameters::Separator{"Input Parameters"});
params.insert(std::make_unique<UInt64Parameter>(k_InitClusters_Key, "Number of Clusters", "This will be the tuple size for Cluster Attribute Matrix and the values within", 0));
params.insert(
std::make_unique<ChoicesParameter>(k_DistanceMetric_Key, "Distance Metric", "Distance Metric type to be used for calculations", to_underlying(KUtilities::DistanceMetric::Euclidean),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ Parameters KMedoidsFilter::parameters() const
params.insertLinkableParameter(std::make_unique<BoolParameter>(k_UseMask_Key, "Use Mask", "Specifies whether or not to use a mask array", false));
params.insert(std::make_unique<ArraySelectionParameter>(k_MaskArrayPath_Key, "Mask", "DataPath to the boolean mask array. Values that are true will mark that cell/point as usable.", DataPath{},
ArraySelectionParameter::AllowedTypes{DataType::boolean}));

params.insertSeparator(Parameters::Separator{"Input Parameters"});
params.insert(std::make_unique<UInt64Parameter>(k_InitClusters_Key, "Number of Clusters", "This will be the tuple size for Cluster Attribute Matrix and the values within", 0));
params.insert(
std::make_unique<ChoicesParameter>(k_DistanceMetric_Key, "Distance Metric", "Distance Metric type to be used for calculations", to_underlying(KUtilities::DistanceMetric::Euclidean),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Parameters ITKMhaFileReader::parameters() const
{
Parameters params;

params.insertSeparator(Parameters::Separator{"Filter Parameters"});
params.insertSeparator(Parameters::Separator{"Input Parameters"});
params.insert(std::make_unique<FileSystemPathParameter>(ITKImageReader::k_FileName_Key, "Input MHA File", "The input .mha file that will be read.", fs::path(""),
FileSystemPathParameter::ExtensionsType{{".mha"}}, FileSystemPathParameter::PathType::InputFile, false));
params.insertLinkableParameter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Parameters FindSlipTransmissionMetricsFilter::parameters() const
params.insert(std::make_unique<ArraySelectionParameter>(k_CrystalStructuresArrayPath_Key, "Crystal Structures", "Enumeration representing the crystal structure for each phase", DataPath{},
ArraySelectionParameter::AllowedTypes{DataType::uint32}, ArraySelectionParameter::AllowedComponentShapes{{1}}));

params.insertSeparator(Parameters::Separator{"Feature Data"});
params.insertSeparator(Parameters::Separator{"Created Feature Data"});
params.insert(std::make_unique<DataObjectNameParameter>(k_F1ListArrayName_Key, "F1 List", "DataArray Name to store the calculated F1s Values", "F1 List"));
params.insert(std::make_unique<DataObjectNameParameter>(k_F1sptListArrayName_Key, "F1spt List", "DataArray Name to store the calculated F1spts Values", "F1spt List"));
params.insert(std::make_unique<DataObjectNameParameter>(k_F7ListArrayName_Key, "F7 List", "DataArray Name to store the calculated F7s Values", "F7 List"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Parameters GenerateFZQuaternions::parameters() const
params.insert(std::make_unique<ArraySelectionParameter>(k_CrystalStructuresArrayPath_Key, "Crystal Structures", "Enumeration representing the crystal structure for each Ensemble",
DataPath({"Ensemble Data", "CrystalStructures"}), ArraySelectionParameter::AllowedTypes{DataType::uint32},
ArraySelectionParameter::AllowedComponentShapes{{1}}));
params.insertSeparator(Parameters::Separator{"Element Data"});
params.insertSeparator(Parameters::Separator{"Created Element Data"});
params.insert(std::make_unique<DataObjectNameParameter>(k_FZQuatsArrayPath_Key, "Created FZ Quaternions",
"The name of the array containing the Quaternion that represents an orientation within the fundamental zone for each Element", ""));
// Associate the Linkable Parameter(s) to the children parameters that they control
Expand Down

0 comments on commit 287b427

Please sign in to comment.