Skip to content

Feature #27286: Add ColoredHashTSDFVolume support in rgbd module(CPU) #3949

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 4.x
Choose a base branch
from
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