コード例 #1
0
ファイル: VisionSystem.cpp プロジェクト: katzchen/tortuga
void VisionSystem::monoPipeLineDetectorOn()
{
	addDownwardDetector(m_pipelineDetector);
	publish(EventType::PIPELINE_DETECTOR_ON,
		 core::EventPtr(new core::Event()));

}
コード例 #2
0
ファイル: VisionSystem.cpp プロジェクト: katzchen/tortuga
void VisionSystem::downwardSafeDetectorOn()
{
    addDownwardDetector(m_downwardSafeDetector);
    publish(EventType::SAFE_DETECTOR_ON,
            core::EventPtr(new core::Event()));
}
コード例 #3
0
ファイル: VisionSystem.cpp プロジェクト: katzchen/tortuga
void VisionSystem::binDetectorOn()
{
    addDownwardDetector(m_binDetector);
    publish(EventType::BIN_DETECTOR_ON,
            core::EventPtr(new core::Event()));
}
コード例 #4
0
ファイル: VisionSystem.cpp プロジェクト: JasonHagler/tortuga
void VisionSystem::velocityDetectorOn()
{
    addDownwardDetector(m_velocityDetector);
}