Skip to content
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

Omni support #106

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d8fc9a0
Added support for incoming omni messages.
LauraConnolly Jun 24, 2020
588c7c7
Working on adding support for vtkMRMLIGTLTableNode
LauraConnolly Jun 30, 2020
3efdf4e
Made changes for vtkDataArray declaration
LauraConnolly Jun 30, 2020
e4df47e
Changes in July.
LauraConnolly Jul 27, 2020
b341e36
Most recent changes.
LauraConnolly Jul 27, 2020
0ac835d
Fixed how nd array messages are added to vtkmrml table NodeInfoMapType
LauraConnolly Nov 26, 2020
ddccacd
ENH: Remove unnecessary find_package(Slicer)
Sunderlandkyl Jul 31, 2020
238e99c
BUG: Fix typo in MRML std::string vector copy macro
Sunderlandkyl Aug 25, 2020
ac6473d
COMP: Restore backwards compatibility with Slicer 4.10.2
Sunderlandkyl Aug 25, 2020
b37b2bb
COMP: Fix bundling of OpenIGTLinkIO external project adding VTK depen…
jcfr Oct 30, 2020
019e449
ENH: Add support for transferring markups fiducial node as POINT message
lassoan Nov 20, 2020
8b75cac
BUG: Fix typo in OpenIGTLink message metadata MEMLNodeName -> MRMLNod…
lassoan Nov 21, 2020
913c303
COMP: Fix build error on macOS
lassoan Dec 16, 2020
aec89b0
ENH: Ensure correct spacing and origin when receiving an igtl Image m…
adamrankin Dec 19, 2020
34b4c61
ENH: Add launcher paths for bundling into custom app
sjh26 Feb 8, 2021
a446059
Bug: Query node device name fix.
leochan2009 Mar 15, 2021
07810f3
Revert "Bug: Query node device name fix."
leochan2009 Mar 19, 2021
b01c782
Feature: backward compatiblity. legacy program can send data without …
leochan2009 Mar 19, 2021
618b625
BUG: forward the mrml node when new device added. Improvement: remove…
leochan2009 Mar 29, 2021
d822610
Improvement: use a OriginalNodeName attribute to store the original n…
leochan2009 Apr 3, 2021
c31e970
BUG:label map name empty. LabelVolume is never created by openigtlin…
leochan2009 Apr 5, 2021
e705412
ENH: Restore removed RegisterIncomingMRMLNode function
Sunderlandkyl May 3, 2021
1435ec9
ENH: Add base class for scripted ultrasound parameter widgets
Sunderlandkyl Jul 23, 2021
a64e0b3
BUG: Fix crash when OriginalNodeName attribute is not defined
Sunderlandkyl Jul 23, 2021
83fa3b2
ENH: Add missing igtlioCommand methods to vtkSlicerOpenIGTLinkCommand
Sunderlandkyl Jul 23, 2021
c94ab05
BUG: Instantiate nodes using default scene parameters
Sunderlandkyl Jul 23, 2021
8c95b64
ENH: Update PeriodicProcess to use SlicerRenderBlocker
Sunderlandkyl Jul 23, 2021
5837a53
COMP: Remove text node so that extension builds in custom app
cpinter Sep 7, 2019
68c6d67
ENH: Add an UltrasoundRemoteControl widget for controlling TGC
markasselin Jun 21, 2021
8454084
COMP: Fix subproject configuration if Python was installed
cpinter Sep 30, 2021
3369407
ENH: Add support for Markups ROI for reconstructed volume rendering
Sunderlandkyl Nov 4, 2021
8fbb196
Added support for incoming omni messages.
LauraConnolly Jun 24, 2020
136c924
Working on adding support for vtkMRMLIGTLTableNode
LauraConnolly Jun 30, 2020
693ed9d
Made changes for vtkDataArray declaration
LauraConnolly Jun 30, 2020
0f17a37
Most recent changes.
LauraConnolly Jul 27, 2020
7836fa3
vtkMRMLIGTLConnectorNode code is up to date now - so it OpenIGTLinkIO…
LauraConnolly Nov 23, 2021
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
4 changes: 0 additions & 4 deletions OpenIGTLinkIF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ set(MODULE_TITLE "OpenIGTLinkIF")

string(TOUPPER ${MODULE_NAME} MODULE_NAME_UPPER)

#-----------------------------------------------------------------------------
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})

#-----------------------------------------------------------------------------
# OpenIGTlinkIF version number.
set(OpenIGTLinkIF_VERSION_MAJOR "2")
Expand Down
10 changes: 0 additions & 10 deletions OpenIGTLinkIF/Logic/vtkSlicerOpenIGTLinkIFLogic.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
#include "vtkMRMLIGTLConnectorNode.h"
#include "vtkMRMLImageMetaListNode.h"
#include "vtkMRMLLabelMetaListNode.h"
#if Slicer_VERSION_MAJOR < 4 || Slicer_VERSION_MAJOR == 4 && Slicer_VERSION_MINOR < 11
// TODO: When the stable version of Slicer includes the Texts module/widgets, they can be removed from SlicerOpenIGTLink
#include "vtkMRMLTextNode.h"
#include "vtkMRMLTextStorageNode.h"
#endif
#include "vtkMRMLIGTLTrackingDataQueryNode.h"
#include "vtkMRMLIGTLTrackingDataBundleNode.h"
#include "vtkMRMLIGTLQueryNode.h"
Expand Down Expand Up @@ -196,11 +191,6 @@ void vtkSlicerOpenIGTLinkIFLogic::RegisterNodes()
scene->RegisterNodeClass(vtkNew<vtkMRMLIGTLTrackingDataBundleNode>().GetPointer());
scene->RegisterNodeClass(vtkNew<vtkMRMLIGTLStatusNode>().GetPointer());
scene->RegisterNodeClass(vtkNew<vtkMRMLIGTLSensorNode>().GetPointer());
#if Slicer_VERSION_MAJOR < 4 || Slicer_VERSION_MAJOR == 4 && Slicer_VERSION_MINOR < 11
// TODO: When the stable version of Slicer includes the Texts module/widgets, they can be removed from SlicerOpenIGTLink
scene->RegisterNodeClass(vtkNew<vtkMRMLTextNode>().GetPointer());
scene->RegisterNodeClass(vtkNew<vtkMRMLTextStorageNode>().GetPointer());
#endif
vtkStreamingVolumeCodecFactory* codecFactory = vtkStreamingVolumeCodecFactory::GetInstance();
#if defined(OpenIGTLink_USE_VP9)
codecFactory->RegisterStreamingCodec(vtkSmartPointer<vtkIGTLVP9VolumeCodec>::New());
Expand Down
14 changes: 0 additions & 14 deletions OpenIGTLinkIF/MRML/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,6 @@ if(OpenIGTLink_PROTOCOL_VERSION GREATER 1)
vtkMRMLLabelMetaListNode.cxx
vtkSlicerOpenIGTLinkCommand.cxx
)

if (Slicer_VERSION VERSION_LESS "4.11.0")
#TODO: When the stable version of Slicer includes the Texts module/widgets, they can be removed from SlicerOpenIGTLink
list(APPEND ${KIT}_SRCS
Text/vtkMRMLTextNode.cxx
Text/vtkMRMLTextStorageNode.cxx
)
list(APPEND ${KIT}_INCLUDE_DIRECTORIES
${CMAKE_CURRENT_SOURCE_DIR}/Text
${CMAKE_CURRENT_BINARY_DIR}/Text
)
configure_file(Text/vtkMRMLTextNode.h ${CMAKE_CURRENT_BINARY_DIR}/Text/vtkMRMLTextNode.h COPYONLY)
configure_file(Text/vtkMRMLTextStorageNode.h ${CMAKE_CURRENT_BINARY_DIR}/Text/vtkMRMLTextStorageNode.h COPYONLY)
endif()
endif()

if(SlicerOpenIGTLink_USE_VP9)
Expand Down
169 changes: 0 additions & 169 deletions OpenIGTLinkIF/MRML/Text/vtkMRMLTextNode.cxx

This file was deleted.

109 changes: 0 additions & 109 deletions OpenIGTLinkIF/MRML/Text/vtkMRMLTextNode.h

This file was deleted.

Loading