* @brief Initialize dfs adaptor.
* @since_tizen 7.0
*/
- virtual void Initialize(DfsParameter& param,
+ virtual void initialize(DfsParameter& param,
size_t width,
size_t height,
size_t minDisp,
* @brief Run dfs adaptor.
* @since_tizen 7.0
*/
- virtual void Run(DfsInputData& data) = 0;
+ virtual void run(DfsInputData& data) = 0;
/**
* @brief Run dfs adaptor.
* @since_tizen 7.0
*/
- virtual DfsOutputData& GetDepthData() = 0;
+ virtual DfsOutputData& getDepthData() = 0;
};
typedef void destroy_t(IDfsAdaptation *);
DfsAdaptor();
~DfsAdaptor();
- void Bind();
- void Unbind();
+ void bind();
+ void unBind();
- void Initialize(DfsParameter& param, size_t width, size_t height,
+ void initialize(DfsParameter& param, size_t width, size_t height,
size_t minDisp, size_t maxDisp, std::string stereoConfigPath);
- void Run(DfsInputData& data);
- DfsOutputData& GetDepthData();
+ void run(DfsInputData& data);
+ DfsOutputData& getDepthData();
};
} /* DfsAdaptation */
}
- void DfsAdaptor::Bind()
+ void DfsAdaptor::bind()
{
LOGI("ENTER");
LOGI("LEAVE");
}
- void DfsAdaptor::Unbind()
+ void DfsAdaptor::unBind()
{
LOGI("ENTER");
LOGI("LEAVE");
}
- void DfsAdaptor::Initialize(DfsParameter& param, size_t width, size_t height,
+ void DfsAdaptor::initialize(DfsParameter& param, size_t width, size_t height,
size_t minDisp, size_t maxDisp, std::string stereoConfigPath)
{
LOGI("ENTER");
CHECK_INSTANCE(mDfsAdaptorHandle);
- mDfsAdaptorHandle->Initialize(param, width, height, minDisp, maxDisp, stereoConfigPath);
+ mDfsAdaptorHandle->initialize(param, width, height, minDisp, maxDisp, stereoConfigPath);
LOGI("LEAVE");
}
- void DfsAdaptor::Run(DfsInputData& data)
+ void DfsAdaptor::run(DfsInputData& data)
{
LOGI("ENTER");
CHECK_INSTANCE(mDfsAdaptorHandle);
- mDfsAdaptorHandle->Run(data);
+ mDfsAdaptorHandle->run(data);
LOGI("LEAVE");
}
- DfsOutputData& DfsAdaptor::GetDepthData()
+ DfsOutputData& DfsAdaptor::getDepthData()
{
LOGI("ENTER");
CHECK_INSTANCE(mDfsAdaptorHandle);
- return mDfsAdaptorHandle->GetDepthData();
+ return mDfsAdaptorHandle->getDepthData();
LOGI("LEAVE");
}