| 1495 | } |
| 1496 | |
| 1497 | bool mitk::nnInteractiveTool::IsSessionRunning() const |
| 1498 | { |
| 1499 | auto pythonContext = m_Impl->GetPythonContext(); |
| 1500 | |
| 1501 | if (pythonContext == nullptr) |
| 1502 | return false; |
| 1503 | |
| 1504 | return pythonContext->HasVariable("session"); |
| 1505 | } |
| 1506 | |
| 1507 | void mitk::nnInteractiveTool::Impl::SetAutoZoom() const |
| 1508 | { |
no test coverage detected