Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion modules/rgbd/include/opencv2/rgbd/colored_kinfu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,15 @@ struct CV_EXPORTS_W Params
CV_WRAP static Ptr<Params> hashTSDFParams(bool isCoarse);

/** @brief ColoredTSDF parameters
A set of parameters suitable for use with HashTSDFVolume
A set of parameters suitable for use with ColoredTSDFVolume
*/
CV_WRAP static Ptr<Params> coloredTSDFParams(bool isCoarse);

/** @brief ColoredHashTSDF parameters
A set of parameters suitable for use with ColoredHashTSDFVolume
*/
CV_WRAP static Ptr<Params> coloredHashTSDFParams(bool isCoarse);

/** @brief frame size in pixels */
CV_PROP_RW Size frameSize;

Expand Down
5 changes: 5 additions & 0 deletions modules/rgbd/include/opencv2/rgbd/kinfu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ struct CV_EXPORTS_W Params
*/
CV_WRAP static Ptr<Params> coloredTSDFParams(bool isCoarse);

/** @brief ColoredHashTSDF parameters
A set of parameters suitable for use with ColoredHashTSDFVolume
*/
CV_WRAP static Ptr<Params> coloredHashTSDFParams(bool isCoarse);

/** @brief frame size in pixels */
CV_PROP_RW Size frameSize;

Expand Down
3 changes: 2 additions & 1 deletion modules/rgbd/include/opencv2/rgbd/volume.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ enum class VolumeType
{
TSDF = 0,
HASHTSDF = 1,
COLOREDTSDF = 2
COLOREDTSDF = 2,
COLOREDHASHTSDF = 3
};

struct CV_EXPORTS_W VolumeParams
Expand Down
Loading