├── .gitignore ├── LICENSE ├── README.md ├── c └── device-handling │ ├── device-enumeration │ ├── CMakeLists.txt │ └── src │ │ └── device-enumeration.c │ └── device-list-changed │ ├── CMakeLists.txt │ └── src │ └── device-list-changed.c ├── cpp ├── .gitignore ├── CMakeLists.txt ├── README.md ├── advanced-camera-features │ ├── action-command-broadcast-trigger │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── action-command-broadcast-trigger.cpp │ ├── connect-chunkdata │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── connect-chunkdata.cpp │ ├── event-exposure-end │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── event-exposure-end.cpp │ └── event-line1-edge │ │ ├── CMakeLists.txt │ │ └── src │ │ └── event-line1-edge.cpp ├── camera-specific │ └── dolp-segmentation │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── images │ │ └── tis.ico │ │ ├── main.cpp │ │ ├── main.rc │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── sliderctrl.h ├── common │ └── console-helper.h ├── device-handling │ ├── device-enumeration │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── device-enumeration.cpp │ ├── device-list-changed │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── device-list-changed.cpp │ └── device-lost │ │ ├── CMakeLists.txt │ │ └── src │ │ └── device-lost.cpp ├── ic4-ctrl │ ├── CMakeLists.txt │ ├── README.md │ └── src │ │ ├── fps_counter.h │ │ ├── helper_json.cpp │ │ ├── helper_json.h │ │ ├── ic4-ctrl-helper.h │ │ ├── ic4-ctrl.cpp │ │ ├── ic4_enum_to_string.h │ │ ├── print_ic4_object.cpp │ │ ├── print_ic4_object.h │ │ ├── print_property.cpp │ │ ├── print_property.h │ │ ├── stream_test.cpp │ │ ├── stream_test.h │ │ ├── stream_test_camera.cpp │ │ └── stream_test_camera.h ├── image-acquisition │ ├── measure-fps │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── measure-fps.cpp │ ├── record-mp4-h264 │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── src │ │ │ └── record-mp4-h264.cpp │ ├── save-bmp-on-trigger │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── src │ │ │ └── save-bmp-on-trigger.cpp │ └── save-jpeg-file │ │ ├── CMakeLists.txt │ │ └── src │ │ └── save-jpeg-file.cpp ├── qt6 │ ├── CMakeLists.txt │ ├── common │ │ ├── qt6-dialogs │ │ │ ├── CMakeLists.txt │ │ │ ├── DeviceSelectionDialog.cpp │ │ │ ├── DeviceSelectionDialog.h │ │ │ ├── PropertyDialog.cpp │ │ │ ├── PropertyDialog.h │ │ │ ├── ResourceSelector.h │ │ │ ├── controls │ │ │ │ ├── Event.h │ │ │ │ ├── FormGroupBox.h │ │ │ │ ├── IPConfigGroupBox.cpp │ │ │ │ ├── IPConfigGroupBox.h │ │ │ │ ├── PropertyControls.cpp │ │ │ │ ├── PropertyControls.h │ │ │ │ ├── PropertyInfoBox.h │ │ │ │ ├── PropertyTreeWidget.cpp │ │ │ │ ├── PropertyTreeWidget.h │ │ │ │ ├── SwitchDriverGroupBox.cpp │ │ │ │ ├── SwitchDriverGroupBox.h │ │ │ │ └── props │ │ │ │ │ ├── PropBooleanControl.h │ │ │ │ │ ├── PropCategoryControl.h │ │ │ │ │ ├── PropCommandControl.h │ │ │ │ │ ├── PropControlBase.h │ │ │ │ │ ├── PropEnumerationControl.h │ │ │ │ │ ├── PropFloatControl.h │ │ │ │ │ ├── PropIntControl.h │ │ │ │ │ ├── PropIntSlider.h │ │ │ │ │ ├── PropIntSpinBox.h │ │ │ │ │ └── PropStringControl.h │ │ │ ├── images │ │ │ │ ├── +theme_dark │ │ │ │ │ └── camera_icon_usb3.png │ │ │ │ └── +theme_light │ │ │ │ │ └── camera_icon_usb3.png │ │ │ └── qt6dialogs.qrc │ │ ├── setup_qt.cmake │ │ └── windeployqt.cmake │ ├── demoapp │ │ ├── CMakeLists.txt │ │ ├── demoapp.qrc │ │ ├── demoapp.rc │ │ ├── events.h │ │ ├── fpscounter.h │ │ ├── images │ │ │ ├── +theme_dark │ │ │ │ ├── camera.png │ │ │ │ ├── gear.png │ │ │ │ ├── imgset.png │ │ │ │ ├── livestream.png │ │ │ │ ├── photo.png │ │ │ │ ├── recordpause.png │ │ │ │ ├── recordstart.png │ │ │ │ ├── recordstop.png │ │ │ │ ├── tis.png │ │ │ │ ├── triggermode.png │ │ │ │ └── video.png │ │ │ ├── +theme_light │ │ │ │ ├── camera.png │ │ │ │ ├── gear.png │ │ │ │ ├── imgset.png │ │ │ │ ├── livestream.png │ │ │ │ ├── photo.png │ │ │ │ ├── recordpause.png │ │ │ │ ├── recordstart.png │ │ │ │ ├── recordstop.png │ │ │ │ ├── tis.png │ │ │ │ ├── triggermode.png │ │ │ │ └── video.png │ │ │ └── tis.ico │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── pathutils.h │ │ ├── settings.cpp │ │ └── settings.h │ ├── device-manager │ │ ├── CMakeLists.txt │ │ ├── device-manager.rc │ │ ├── images │ │ │ └── tis.ico │ │ └── main.cpp │ └── high-speed-capture │ │ ├── CMakeLists.txt │ │ ├── HighSpeedCaptureDialog.cpp │ │ ├── HighSpeedCaptureDialog.h │ │ └── main.cpp ├── thirdparty-integration │ └── imagebuffer-opencv-snap │ │ ├── CMakeLists.txt │ │ └── src │ │ └── imagebuffer-opencv-snap.cpp └── win32-mfc │ └── demoapp │ ├── MFC-DemoApp.cpp │ ├── MFC-DemoApp.h │ ├── MFC-DemoApp.sln │ ├── MFC-DemoApp.vcxproj │ ├── MFC-DemoApp.vcxproj.filters │ ├── MFC-DemoAppDoc.cpp │ ├── MFC-DemoAppDoc.h │ ├── MFC-DemoAppView.cpp │ ├── MFC-DemoAppView.h │ ├── MFCDemoApp.rc │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── StringUtil.cpp │ ├── StringUtil.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ ├── MFC-DemoApp.ico │ ├── MFC-DemoAppDoc.ico │ ├── MFCDemoApp.rc2 │ └── Toolbar.bmp │ ├── resource.h │ └── targetver.h ├── dotnet ├── README.md ├── advanced-camera-features │ ├── ActionCommandBroadcastTrigger │ │ ├── ActionCommandBroadcastTrigger.sln │ │ └── ActionCommandBroadcastTrigger │ │ │ ├── ActionCommandBroadcastTrigger.csproj │ │ │ └── Program.cs │ ├── EventExposureEnd │ │ ├── EventExposureEnd.sln │ │ └── EventExposureEnd │ │ │ ├── EventExposureEnd.csproj │ │ │ └── Program.cs │ └── EventLine1Edge │ │ ├── EventLine1Edge.sln │ │ └── EventLine1Edge │ │ ├── EventLine1Edge.csproj │ │ └── Program.cs ├── camera-specific │ └── DoLPSegmentation │ │ ├── DoLPSegmentation.sln │ │ ├── DoLPSegmentation │ │ ├── DoLPSegmentation.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PixelTypes │ │ │ ├── BGRa8.cs │ │ │ ├── PolarizedADIMono8.cs │ │ │ └── PolarizedADIRGB8.cs │ │ └── Program.cs │ │ └── README.md ├── common │ └── ConsoleHelper │ │ ├── ConsoleHelper.cs │ │ └── ConsoleHelper.csproj ├── device-handling │ ├── DeviceEnumeration │ │ ├── DeviceEnumeration.sln │ │ └── DeviceEnumeration │ │ │ ├── DeviceEnumeration.csproj │ │ │ └── Program.cs │ ├── DeviceListChanged │ │ ├── DeviceListChanged.sln │ │ └── DeviceListChanged │ │ │ ├── DeviceListChanged.csproj │ │ │ └── Program.cs │ └── DeviceLost │ │ ├── DeviceLost.sln │ │ └── DeviceLost │ │ ├── DeviceLost.csproj │ │ └── Program.cs ├── ic4-ctrl │ ├── ic4-ctrl.sln │ └── ic4-ctrl │ │ ├── Program.cs │ │ └── ic4-ctrl.csproj ├── ic4-property-dialog │ ├── PropertyView │ │ ├── Appearance.cs │ │ ├── CustomNumericUpDown.cs │ │ ├── NoFocusTrackBar.cs │ │ ├── PropBooleanControl.cs │ │ ├── PropCommandControl.cs │ │ ├── PropControlBase.cs │ │ ├── PropEnumerationControl.cs │ │ ├── PropFloatControl.cs │ │ ├── PropIntegerControl.cs │ │ ├── PropStringControl.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PropertyTreeNode.cs │ │ ├── PropertyView.Designer.cs │ │ ├── PropertyView.cs │ │ ├── PropertyView.csproj │ │ ├── PropertyView.resx │ │ ├── WinformsUtil.cs │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── packages.config │ ├── ic4-property-dialog.sln │ └── ic4-property-dialog │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ic4-property-dialog.csproj │ │ └── packages.config ├── image-acquisition │ └── SaveBmpOnTrigger │ │ ├── SaveBmpOnTrigger.sln │ │ └── SaveBmpOnTrigger │ │ ├── Program.cs │ │ └── SaveBmpOnTrigger.csproj ├── thirdparty-integration │ └── ImageBufferOpenCVLive │ │ ├── ImageBufferOpenCVLive.sln │ │ └── ImageBufferOpenCVLive │ │ ├── ImageBufferOpenCVLive.csproj │ │ └── Program.cs ├── vb.net │ └── VB First Steps │ │ ├── README.md │ │ ├── VB First Steps.sln │ │ └── VB First Steps │ │ ├── App.config │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── VB First Steps.vbproj └── winforms │ ├── DialogApp-framework45 │ ├── DialogApp-framework45.sln │ └── DialogApp-framework45 │ │ ├── App.config │ │ ├── DialogApp-framework45.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── packages.config │ ├── DialogApp-net6 │ ├── DialogApp-net6.sln │ └── DialogApp-net6 │ │ ├── DialogApp-net6.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ └── Program.cs │ ├── GraphicOverlay │ ├── GraphicOverlay.sln │ ├── GraphicOverlay │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── GraphicOverlay.csproj │ │ ├── Program.cs │ │ └── tis.ico │ └── README.md │ └── HighSpeedCapture │ ├── HighSpeedCapture.sln │ └── HighSpeedCapture │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HighSpeedCapture.csproj │ ├── Program.cs │ └── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── python ├── README.md ├── advanced-camera-features ├── EventExposureEnd │ └── eventexposureend.py ├── actioncommand-broadcast-trigger │ └── actioncommand-broadcast-trigger.py ├── connect-chunkdata │ └── connect-chunkdata.py └── event-line1-edge │ ├── event-line1-edge.py │ └── requirements.txt ├── camera-specific └── DolP-Segmentation │ ├── DolPSegmentation.py │ ├── README.md │ ├── requirements.txt │ └── sliderctrl.py ├── device-handling ├── device-enumeration │ └── device-enumeration.py ├── device-list-changed │ └── device-list-changed.py └── device-lost │ └── device-lost.py ├── gtk3 ├── demoapp.py └── display.py ├── ic4-ctrl ├── image-acquisition ├── record-mp4-h264 │ ├── record-mp4-h264.py │ └── requirements.txt ├── save-bmp-on-trigger │ ├── requirements.txt │ └── save-bmp-on-trigger.py └── save-jpeg-file │ ├── requirements.txt │ └── save-jpeg-file.py ├── qt6 ├── demoapp │ ├── README.md │ ├── demoapp.py │ ├── images │ │ ├── +theme_dark │ │ │ ├── camera.png │ │ │ ├── gear.png │ │ │ ├── imgset.png │ │ │ ├── livestream.png │ │ │ ├── photo.png │ │ │ ├── recordpause.png │ │ │ ├── recordstart.png │ │ │ ├── recordstop.png │ │ │ ├── tis.png │ │ │ ├── triggermode.png │ │ │ └── video.png │ │ ├── +theme_light │ │ │ ├── camera.png │ │ │ ├── gear.png │ │ │ ├── imgset.png │ │ │ ├── livestream.png │ │ │ ├── photo.png │ │ │ ├── recordpause.png │ │ │ ├── recordstart.png │ │ │ ├── recordstop.png │ │ │ ├── tis.png │ │ │ ├── triggermode.png │ │ │ └── video.png │ │ └── tis.ico │ ├── mainwindow.py │ ├── requirements.txt │ └── resourceselector.py ├── fullscreen │ ├── README.md │ ├── fullscreen.py │ └── requirements.txt ├── qt6-first-steps │ ├── README.md │ ├── qt6-first-steps.py │ └── requirements.txt ├── still-image-hdr │ ├── .gitignore │ ├── README.md │ ├── requirements.txt │ ├── sliderfloat.py │ └── stillimagehdr.py └── zoom-focus-demo │ ├── mainwindow.py │ ├── requirements.txt │ └── zoom-focus-demo.py └── thirdparty-integration ├── README.md ├── imagebuffer-numpy-opencv-live ├── imagebuffer-numpy-opencv-live.py └── requirements.txt └── imagebuffer-numpy-opencv-snap └── imagebuffer-numpy-opencv-snap.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/README.md -------------------------------------------------------------------------------- /c/device-handling/device-enumeration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/c/device-handling/device-enumeration/CMakeLists.txt -------------------------------------------------------------------------------- /c/device-handling/device-enumeration/src/device-enumeration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/c/device-handling/device-enumeration/src/device-enumeration.c -------------------------------------------------------------------------------- /c/device-handling/device-list-changed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/c/device-handling/device-list-changed/CMakeLists.txt -------------------------------------------------------------------------------- /c/device-handling/device-list-changed/src/device-list-changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/c/device-handling/device-list-changed/src/device-list-changed.c -------------------------------------------------------------------------------- /cpp/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | build -------------------------------------------------------------------------------- /cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/README.md -------------------------------------------------------------------------------- /cpp/advanced-camera-features/action-command-broadcast-trigger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/action-command-broadcast-trigger/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/advanced-camera-features/action-command-broadcast-trigger/src/action-command-broadcast-trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/action-command-broadcast-trigger/src/action-command-broadcast-trigger.cpp -------------------------------------------------------------------------------- /cpp/advanced-camera-features/connect-chunkdata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/connect-chunkdata/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/advanced-camera-features/connect-chunkdata/src/connect-chunkdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/connect-chunkdata/src/connect-chunkdata.cpp -------------------------------------------------------------------------------- /cpp/advanced-camera-features/event-exposure-end/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/event-exposure-end/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/advanced-camera-features/event-exposure-end/src/event-exposure-end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/event-exposure-end/src/event-exposure-end.cpp -------------------------------------------------------------------------------- /cpp/advanced-camera-features/event-line1-edge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/event-line1-edge/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/advanced-camera-features/event-line1-edge/src/event-line1-edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/advanced-camera-features/event-line1-edge/src/event-line1-edge.cpp -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/README.md -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/images/tis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/images/tis.ico -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/main.cpp -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/main.rc -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/mainwindow.cpp -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/mainwindow.h -------------------------------------------------------------------------------- /cpp/camera-specific/dolp-segmentation/sliderctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/camera-specific/dolp-segmentation/sliderctrl.h -------------------------------------------------------------------------------- /cpp/common/console-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/common/console-helper.h -------------------------------------------------------------------------------- /cpp/device-handling/device-enumeration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-enumeration/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/device-handling/device-enumeration/src/device-enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-enumeration/src/device-enumeration.cpp -------------------------------------------------------------------------------- /cpp/device-handling/device-list-changed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-list-changed/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/device-handling/device-list-changed/src/device-list-changed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-list-changed/src/device-list-changed.cpp -------------------------------------------------------------------------------- /cpp/device-handling/device-lost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-lost/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/device-handling/device-lost/src/device-lost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/device-handling/device-lost/src/device-lost.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/ic4-ctrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/README.md -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/fps_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/fps_counter.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/helper_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/helper_json.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/helper_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/helper_json.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/ic4-ctrl-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/ic4-ctrl-helper.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/ic4-ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/ic4-ctrl.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/ic4_enum_to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/ic4_enum_to_string.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/print_ic4_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/print_ic4_object.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/print_ic4_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/print_ic4_object.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/print_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/print_property.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/print_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/print_property.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/stream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/stream_test.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/stream_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/stream_test.h -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/stream_test_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/stream_test_camera.cpp -------------------------------------------------------------------------------- /cpp/ic4-ctrl/src/stream_test_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/ic4-ctrl/src/stream_test_camera.h -------------------------------------------------------------------------------- /cpp/image-acquisition/measure-fps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/measure-fps/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/image-acquisition/measure-fps/src/measure-fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/measure-fps/src/measure-fps.cpp -------------------------------------------------------------------------------- /cpp/image-acquisition/record-mp4-h264/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/record-mp4-h264/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/image-acquisition/record-mp4-h264/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/record-mp4-h264/README.md -------------------------------------------------------------------------------- /cpp/image-acquisition/record-mp4-h264/src/record-mp4-h264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/record-mp4-h264/src/record-mp4-h264.cpp -------------------------------------------------------------------------------- /cpp/image-acquisition/save-bmp-on-trigger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/save-bmp-on-trigger/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/image-acquisition/save-bmp-on-trigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/save-bmp-on-trigger/README.md -------------------------------------------------------------------------------- /cpp/image-acquisition/save-bmp-on-trigger/src/save-bmp-on-trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/save-bmp-on-trigger/src/save-bmp-on-trigger.cpp -------------------------------------------------------------------------------- /cpp/image-acquisition/save-jpeg-file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/save-jpeg-file/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/image-acquisition/save-jpeg-file/src/save-jpeg-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/image-acquisition/save-jpeg-file/src/save-jpeg-file.cpp -------------------------------------------------------------------------------- /cpp/qt6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/DeviceSelectionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/DeviceSelectionDialog.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/DeviceSelectionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/DeviceSelectionDialog.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/PropertyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/PropertyDialog.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/PropertyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/PropertyDialog.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/ResourceSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/ResourceSelector.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/Event.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/FormGroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/FormGroupBox.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/IPConfigGroupBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/IPConfigGroupBox.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/IPConfigGroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/IPConfigGroupBox.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/PropertyControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/PropertyControls.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/PropertyControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/PropertyControls.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/PropertyInfoBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/PropertyInfoBox.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/PropertyTreeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/PropertyTreeWidget.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/PropertyTreeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/PropertyTreeWidget.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/SwitchDriverGroupBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/SwitchDriverGroupBox.cpp -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/SwitchDriverGroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/SwitchDriverGroupBox.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropBooleanControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropBooleanControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropCategoryControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropCategoryControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropCommandControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropCommandControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropControlBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropControlBase.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropEnumerationControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropEnumerationControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropFloatControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropFloatControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropIntControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropIntControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropIntSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropIntSlider.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropIntSpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropIntSpinBox.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/controls/props/PropStringControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/controls/props/PropStringControl.h -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/images/+theme_dark/camera_icon_usb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/images/+theme_dark/camera_icon_usb3.png -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/images/+theme_light/camera_icon_usb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/images/+theme_light/camera_icon_usb3.png -------------------------------------------------------------------------------- /cpp/qt6/common/qt6-dialogs/qt6dialogs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/qt6-dialogs/qt6dialogs.qrc -------------------------------------------------------------------------------- /cpp/qt6/common/setup_qt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/setup_qt.cmake -------------------------------------------------------------------------------- /cpp/qt6/common/windeployqt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/common/windeployqt.cmake -------------------------------------------------------------------------------- /cpp/qt6/demoapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/qt6/demoapp/demoapp.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/demoapp.qrc -------------------------------------------------------------------------------- /cpp/qt6/demoapp/demoapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/demoapp.rc -------------------------------------------------------------------------------- /cpp/qt6/demoapp/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/events.h -------------------------------------------------------------------------------- /cpp/qt6/demoapp/fpscounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/fpscounter.h -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/camera.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/gear.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/imgset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/imgset.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/livestream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/livestream.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/photo.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/recordpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/recordpause.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/recordstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/recordstart.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/recordstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/recordstop.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/tis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/tis.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/triggermode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/triggermode.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_dark/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_dark/video.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/camera.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/gear.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/imgset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/imgset.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/livestream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/livestream.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/photo.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/recordpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/recordpause.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/recordstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/recordstart.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/recordstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/recordstop.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/tis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/tis.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/triggermode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/triggermode.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/+theme_light/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/+theme_light/video.png -------------------------------------------------------------------------------- /cpp/qt6/demoapp/images/tis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/images/tis.ico -------------------------------------------------------------------------------- /cpp/qt6/demoapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/main.cpp -------------------------------------------------------------------------------- /cpp/qt6/demoapp/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/mainwindow.cpp -------------------------------------------------------------------------------- /cpp/qt6/demoapp/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/mainwindow.h -------------------------------------------------------------------------------- /cpp/qt6/demoapp/pathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/pathutils.h -------------------------------------------------------------------------------- /cpp/qt6/demoapp/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/settings.cpp -------------------------------------------------------------------------------- /cpp/qt6/demoapp/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/demoapp/settings.h -------------------------------------------------------------------------------- /cpp/qt6/device-manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/device-manager/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/qt6/device-manager/device-manager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/device-manager/device-manager.rc -------------------------------------------------------------------------------- /cpp/qt6/device-manager/images/tis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/device-manager/images/tis.ico -------------------------------------------------------------------------------- /cpp/qt6/device-manager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/device-manager/main.cpp -------------------------------------------------------------------------------- /cpp/qt6/high-speed-capture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/high-speed-capture/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/qt6/high-speed-capture/HighSpeedCaptureDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/high-speed-capture/HighSpeedCaptureDialog.cpp -------------------------------------------------------------------------------- /cpp/qt6/high-speed-capture/HighSpeedCaptureDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/high-speed-capture/HighSpeedCaptureDialog.h -------------------------------------------------------------------------------- /cpp/qt6/high-speed-capture/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/qt6/high-speed-capture/main.cpp -------------------------------------------------------------------------------- /cpp/thirdparty-integration/imagebuffer-opencv-snap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/thirdparty-integration/imagebuffer-opencv-snap/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/thirdparty-integration/imagebuffer-opencv-snap/src/imagebuffer-opencv-snap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/thirdparty-integration/imagebuffer-opencv-snap/src/imagebuffer-opencv-snap.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoApp.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoApp.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoApp.sln -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoApp.vcxproj -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoApp.vcxproj.filters -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoAppDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoAppDoc.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoAppDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoAppDoc.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoAppView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoAppView.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFC-DemoAppView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFC-DemoAppView.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MFCDemoApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MFCDemoApp.rc -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MainFrm.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/MainFrm.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/StringUtil.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/StringUtil.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/framework.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/pch.cpp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/pch.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/res/MFC-DemoApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/res/MFC-DemoApp.ico -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/res/MFC-DemoAppDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/res/MFC-DemoAppDoc.ico -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/res/MFCDemoApp.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/res/MFCDemoApp.rc2 -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/res/Toolbar.bmp -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/resource.h -------------------------------------------------------------------------------- /cpp/win32-mfc/demoapp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/cpp/win32-mfc/demoapp/targetver.h -------------------------------------------------------------------------------- /dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/README.md -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger.sln -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger.csproj -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/ActionCommandBroadcastTrigger/ActionCommandBroadcastTrigger/Program.cs -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd.sln -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd/EventExposureEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd/EventExposureEnd.csproj -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventExposureEnd/EventExposureEnd/Program.cs -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge.sln -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge/EventLine1Edge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge/EventLine1Edge.csproj -------------------------------------------------------------------------------- /dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/advanced-camera-features/EventLine1Edge/EventLine1Edge/Program.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation.sln -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/DoLPSegmentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/DoLPSegmentation.csproj -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Form1.resx -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/BGRa8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/BGRa8.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/PolarizedADIMono8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/PolarizedADIMono8.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/PolarizedADIRGB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/PixelTypes/PolarizedADIRGB8.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/DoLPSegmentation/Program.cs -------------------------------------------------------------------------------- /dotnet/camera-specific/DoLPSegmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/camera-specific/DoLPSegmentation/README.md -------------------------------------------------------------------------------- /dotnet/common/ConsoleHelper/ConsoleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/common/ConsoleHelper/ConsoleHelper.cs -------------------------------------------------------------------------------- /dotnet/common/ConsoleHelper/ConsoleHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/common/ConsoleHelper/ConsoleHelper.csproj -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceEnumeration/DeviceEnumeration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceEnumeration/DeviceEnumeration.sln -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceEnumeration/DeviceEnumeration/DeviceEnumeration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceEnumeration/DeviceEnumeration/DeviceEnumeration.csproj -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceEnumeration/DeviceEnumeration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceEnumeration/DeviceEnumeration/Program.cs -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceListChanged/DeviceListChanged.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceListChanged/DeviceListChanged.sln -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceListChanged/DeviceListChanged/DeviceListChanged.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceListChanged/DeviceListChanged/DeviceListChanged.csproj -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceListChanged/DeviceListChanged/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceListChanged/DeviceListChanged/Program.cs -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceLost/DeviceLost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceLost/DeviceLost.sln -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceLost/DeviceLost/DeviceLost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceLost/DeviceLost/DeviceLost.csproj -------------------------------------------------------------------------------- /dotnet/device-handling/DeviceLost/DeviceLost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/device-handling/DeviceLost/DeviceLost/Program.cs -------------------------------------------------------------------------------- /dotnet/ic4-ctrl/ic4-ctrl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-ctrl/ic4-ctrl.sln -------------------------------------------------------------------------------- /dotnet/ic4-ctrl/ic4-ctrl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-ctrl/ic4-ctrl/Program.cs -------------------------------------------------------------------------------- /dotnet/ic4-ctrl/ic4-ctrl/ic4-ctrl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-ctrl/ic4-ctrl/ic4-ctrl.csproj -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/Appearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/Appearance.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/CustomNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/CustomNumericUpDown.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/NoFocusTrackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/NoFocusTrackBar.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropBooleanControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropBooleanControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropCommandControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropCommandControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropControlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropControlBase.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropEnumerationControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropEnumerationControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropFloatControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropFloatControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropIntegerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropIntegerControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropStringControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropStringControl.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropertyTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropertyTreeNode.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropertyView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropertyView.Designer.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropertyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropertyView.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropertyView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropertyView.csproj -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/PropertyView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/PropertyView.resx -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/WinformsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/WinformsUtil.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/images/collapse.png -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/images/expand.png -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/PropertyView/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/PropertyView/packages.config -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog.sln -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/App.config -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Form1.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Form1.resx -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Program.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Resources.resx -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/Properties/Settings.settings -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/ic4-property-dialog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/ic4-property-dialog.csproj -------------------------------------------------------------------------------- /dotnet/ic4-property-dialog/ic4-property-dialog/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/ic4-property-dialog/ic4-property-dialog/packages.config -------------------------------------------------------------------------------- /dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger.sln -------------------------------------------------------------------------------- /dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger/Program.cs -------------------------------------------------------------------------------- /dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger/SaveBmpOnTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/image-acquisition/SaveBmpOnTrigger/SaveBmpOnTrigger/SaveBmpOnTrigger.csproj -------------------------------------------------------------------------------- /dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive.sln -------------------------------------------------------------------------------- /dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive/ImageBufferOpenCVLive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive/ImageBufferOpenCVLive.csproj -------------------------------------------------------------------------------- /dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/thirdparty-integration/ImageBufferOpenCVLive/ImageBufferOpenCVLive/Program.cs -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/README.md -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps.sln -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/App.config -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/Form1.Designer.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/Form1.resx -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/Form1.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Application.myapp -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Resources.resx -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/My Project/Settings.settings -------------------------------------------------------------------------------- /dotnet/vb.net/VB First Steps/VB First Steps/VB First Steps.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/vb.net/VB First Steps/VB First Steps/VB First Steps.vbproj -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45.sln -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/App.config -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/DialogApp-framework45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/DialogApp-framework45.csproj -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Form1.resx -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Program.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Resources.resx -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/Properties/Settings.settings -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-framework45/DialogApp-framework45/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-framework45/DialogApp-framework45/packages.config -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6.sln -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6/DialogApp-net6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6/DialogApp-net6.csproj -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.cs -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6/Form1.resx -------------------------------------------------------------------------------- /dotnet/winforms/DialogApp-net6/DialogApp-net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/DialogApp-net6/DialogApp-net6/Program.cs -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay.sln -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.cs -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/Form1.resx -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/GraphicOverlay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/GraphicOverlay.csproj -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/Program.cs -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/GraphicOverlay/tis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/GraphicOverlay/tis.ico -------------------------------------------------------------------------------- /dotnet/winforms/GraphicOverlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/GraphicOverlay/README.md -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture.sln -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/App.config -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.cs -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Form1.resx -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/HighSpeedCapture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/HighSpeedCapture.csproj -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Program.cs -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Resources.resx -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/dotnet/winforms/HighSpeedCapture/HighSpeedCapture/Properties/Settings.settings -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/README.md -------------------------------------------------------------------------------- /python/advanced-camera-features/EventExposureEnd/eventexposureend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/advanced-camera-features/EventExposureEnd/eventexposureend.py -------------------------------------------------------------------------------- /python/advanced-camera-features/actioncommand-broadcast-trigger/actioncommand-broadcast-trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/advanced-camera-features/actioncommand-broadcast-trigger/actioncommand-broadcast-trigger.py -------------------------------------------------------------------------------- /python/advanced-camera-features/connect-chunkdata/connect-chunkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/advanced-camera-features/connect-chunkdata/connect-chunkdata.py -------------------------------------------------------------------------------- /python/advanced-camera-features/event-line1-edge/event-line1-edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/advanced-camera-features/event-line1-edge/event-line1-edge.py -------------------------------------------------------------------------------- /python/advanced-camera-features/event-line1-edge/requirements.txt: -------------------------------------------------------------------------------- 1 | imagingcontrol4>=1.2 -------------------------------------------------------------------------------- /python/camera-specific/DolP-Segmentation/DolPSegmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/camera-specific/DolP-Segmentation/DolPSegmentation.py -------------------------------------------------------------------------------- /python/camera-specific/DolP-Segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/camera-specific/DolP-Segmentation/README.md -------------------------------------------------------------------------------- /python/camera-specific/DolP-Segmentation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/camera-specific/DolP-Segmentation/requirements.txt -------------------------------------------------------------------------------- /python/camera-specific/DolP-Segmentation/sliderctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/camera-specific/DolP-Segmentation/sliderctrl.py -------------------------------------------------------------------------------- /python/device-handling/device-enumeration/device-enumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/device-handling/device-enumeration/device-enumeration.py -------------------------------------------------------------------------------- /python/device-handling/device-list-changed/device-list-changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/device-handling/device-list-changed/device-list-changed.py -------------------------------------------------------------------------------- /python/device-handling/device-lost/device-lost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/device-handling/device-lost/device-lost.py -------------------------------------------------------------------------------- /python/gtk3/demoapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/gtk3/demoapp.py -------------------------------------------------------------------------------- /python/gtk3/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/gtk3/display.py -------------------------------------------------------------------------------- /python/ic4-ctrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/ic4-ctrl -------------------------------------------------------------------------------- /python/image-acquisition/record-mp4-h264/record-mp4-h264.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/image-acquisition/record-mp4-h264/record-mp4-h264.py -------------------------------------------------------------------------------- /python/image-acquisition/record-mp4-h264/requirements.txt: -------------------------------------------------------------------------------- 1 | imagingcontrol4>=1.2 -------------------------------------------------------------------------------- /python/image-acquisition/save-bmp-on-trigger/requirements.txt: -------------------------------------------------------------------------------- 1 | imagingcontrol4>=1.2 -------------------------------------------------------------------------------- /python/image-acquisition/save-bmp-on-trigger/save-bmp-on-trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/image-acquisition/save-bmp-on-trigger/save-bmp-on-trigger.py -------------------------------------------------------------------------------- /python/image-acquisition/save-jpeg-file/requirements.txt: -------------------------------------------------------------------------------- 1 | imagingcontrol4>=1.2 -------------------------------------------------------------------------------- /python/image-acquisition/save-jpeg-file/save-jpeg-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/image-acquisition/save-jpeg-file/save-jpeg-file.py -------------------------------------------------------------------------------- /python/qt6/demoapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/README.md -------------------------------------------------------------------------------- /python/qt6/demoapp/demoapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/demoapp.py -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/camera.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/gear.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/imgset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/imgset.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/livestream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/livestream.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/photo.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/recordpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/recordpause.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/recordstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/recordstart.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/recordstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/recordstop.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/tis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/tis.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/triggermode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/triggermode.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_dark/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_dark/video.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/camera.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/gear.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/imgset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/imgset.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/livestream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/livestream.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/photo.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/recordpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/recordpause.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/recordstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/recordstart.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/recordstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/recordstop.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/tis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/tis.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/triggermode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/triggermode.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/+theme_light/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/+theme_light/video.png -------------------------------------------------------------------------------- /python/qt6/demoapp/images/tis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/images/tis.ico -------------------------------------------------------------------------------- /python/qt6/demoapp/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/mainwindow.py -------------------------------------------------------------------------------- /python/qt6/demoapp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/requirements.txt -------------------------------------------------------------------------------- /python/qt6/demoapp/resourceselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/demoapp/resourceselector.py -------------------------------------------------------------------------------- /python/qt6/fullscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/fullscreen/README.md -------------------------------------------------------------------------------- /python/qt6/fullscreen/fullscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/fullscreen/fullscreen.py -------------------------------------------------------------------------------- /python/qt6/fullscreen/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/fullscreen/requirements.txt -------------------------------------------------------------------------------- /python/qt6/qt6-first-steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/qt6-first-steps/README.md -------------------------------------------------------------------------------- /python/qt6/qt6-first-steps/qt6-first-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/qt6-first-steps/qt6-first-steps.py -------------------------------------------------------------------------------- /python/qt6/qt6-first-steps/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/qt6-first-steps/requirements.txt -------------------------------------------------------------------------------- /python/qt6/still-image-hdr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/still-image-hdr/.gitignore -------------------------------------------------------------------------------- /python/qt6/still-image-hdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/still-image-hdr/README.md -------------------------------------------------------------------------------- /python/qt6/still-image-hdr/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/still-image-hdr/requirements.txt -------------------------------------------------------------------------------- /python/qt6/still-image-hdr/sliderfloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/still-image-hdr/sliderfloat.py -------------------------------------------------------------------------------- /python/qt6/still-image-hdr/stillimagehdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/still-image-hdr/stillimagehdr.py -------------------------------------------------------------------------------- /python/qt6/zoom-focus-demo/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/zoom-focus-demo/mainwindow.py -------------------------------------------------------------------------------- /python/qt6/zoom-focus-demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/zoom-focus-demo/requirements.txt -------------------------------------------------------------------------------- /python/qt6/zoom-focus-demo/zoom-focus-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/qt6/zoom-focus-demo/zoom-focus-demo.py -------------------------------------------------------------------------------- /python/thirdparty-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/thirdparty-integration/README.md -------------------------------------------------------------------------------- /python/thirdparty-integration/imagebuffer-numpy-opencv-live/imagebuffer-numpy-opencv-live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/thirdparty-integration/imagebuffer-numpy-opencv-live/imagebuffer-numpy-opencv-live.py -------------------------------------------------------------------------------- /python/thirdparty-integration/imagebuffer-numpy-opencv-live/requirements.txt: -------------------------------------------------------------------------------- 1 | PySide6 2 | imagingcontrol4 3 | opencv-python -------------------------------------------------------------------------------- /python/thirdparty-integration/imagebuffer-numpy-opencv-snap/imagebuffer-numpy-opencv-snap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheImagingSource/ic4-examples/HEAD/python/thirdparty-integration/imagebuffer-numpy-opencv-snap/imagebuffer-numpy-opencv-snap.py --------------------------------------------------------------------------------