You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Monitor Embedded Controller (EC) on Linux via ACPI calls through acpi_call kernel module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Dump a range of Embedded Controller memory via ACPI. Requires "acpi_call" kernel module to be loaded. By HorstBaerbel (https://github.com/HorstBaerbel) in 2018."""
ITK vs SimpleITK - Which should you use if you start a new project in Python?
ITK vs SimpleITK - Which should you use if you start a new project in Python?
Basic information
Both ITK (python package) and SimpleITK (python package) are bindings of ITK C++ library providing a number of verified utilities for medical image processing, especially 3D volumetric image processing.
ITK python package provides both C++ style bindings ( functions and classes in UpperCamelCase ) and pythonic bindings ( in snake_case ). C++ style bindings keeps the original pipeline structure and template programming style in ITK and the pythoic bindings provides somewhat procedural interface. For example, in C++ style bindings, you need to specify the datatype when instantiating filters, an example is as following. Refer to the tutorial for more information.
Performance comparison for marshalling large array blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters