You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/01_Toolboxes/02_DiscoveryElectronics/02_camera_setup.md
+106-2Lines changed: 106 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ id: Camera Setup
3
3
title: openUC2 Camera Setup
4
4
---
5
5
6
-
6
+
**We provide Docker Containers for our 3 major camera manufacturers: https://github.com/openUC2/ImSwitchDockerInstall**
7
7
8
8
The openUC2 Camera Setup provides guidance on configuring and using webcams and Daheng cameras for imaging purposes within the openUC2 ecosystem. This setup allows users to seamlessly integrate cameras into their experimental setups and utilize them for imaging and data acquisition. Below are detailed instructions for setting up cameras on different platforms:
9
9
@@ -21,13 +21,67 @@ The openUC2 Camera Setup provides guidance on configuring and using webcams and
21
21
## Daheng Cameras
22
22
23
23

24
+
*This may look completely different now, but important: A camera is inside the cube :)*
24
25
25
26
### On Windows
26
-
- To use Daheng cameras on Windows, users should visit `https://www.get-cameras.com/customerdownloads?submissionGuid=93704570-544a-43e8-83d6-f5f3cf0b97fb`.
27
+
- To use Daheng cameras on Windows, users should visit the [Get-camera supplier website](https://www.get-cameras.com/customerdownloads?submissionGuid=93704570-544a-43e8-83d6-f5f3cf0b97fb).
27
28
- From the provided options, select the "Windows SDK USB2+USB3+GigE (including Directshow + Python) Galaxy V1.23.2305.9161" package.
28
29
- Install the software and drivers from the downloaded package.
29
30
- Once installed, users can start the "Galaxy Viewer" application to begin capturing images using the Daheng camera.
30
31
32
+
### Using Jetson Nano with Docker
33
+
If you're using Jetson Nano for image acquisition, you can set up a Docker container:
34
+
**We provide Docker Containers for our 3 major camera manufacturers: https://github.com/openUC2/ImSwitchDockerInstall**
35
+
36
+
### On Linux (Mac not supported)
37
+
38
+
You can install the driver and test the frame acquistion using the following commands:
39
+
40
+
```bash
41
+
# We use Ubuntu
42
+
# Install necessary dependencies
43
+
sudo apt-get update && apt-get install -y \
44
+
wget \
45
+
unzip \
46
+
python3 \
47
+
python3-pip \
48
+
usbutils \
49
+
sudo \
50
+
nano \
51
+
git \
52
+
expect
53
+
54
+
# Create the udev rules directory
55
+
sudo mkdir -p /etc/udev/rules.d
56
+
57
+
# Download and install the appropriate Hik driver based on architecture
Then checkout the files under `/tmp/Galaxy_Linux_Python_2.0.2106.9041/`
84
+
31
85
### On Android Phones
32
86
- To use Daheng cameras on Android phones, users should first visit `https://www.get-cameras.com/customerdownloads?submissionGuid=93704570-544a-43e8-83d6-f5f3cf0b97fb`.
33
87
- From the provided options, select the "Android USB3 SDK v1.2.2112.9201" package and download it.
@@ -36,6 +90,56 @@ The openUC2 Camera Setup provides guidance on configuring and using webcams and
36
90
- Open the installed app ("GxViewer_GetRawImage") and grant access to the USB connection when prompted.
37
91
- Users can adjust camera settings by swiping left in the app and then proceed to capture images.
38
92
93
+
Here is an extended documentation for the HIK camera setup:
94
+
95
+
### HIK Cameras
96
+
97
+

98
+
*This may look completely different now, but important: A camera is inside the cube :)*
99
+
100
+
### On Windows
101
+
- Visit the [HIK supplier website](https://www.hikrobotics.com/en/support/download) for the latest software.
102
+
- Download the "MVS V2.1.2" package (or the latest version) for Windows.
103
+
- Install the software and drivers from the package.
104
+
- Use the "MVS Viewer" to capture and configure images with the HIK camera.
105
+
106
+
### On Linux (Ubuntu)
107
+
Install the HIK driver and run the camera with the following steps:
108
+
109
+
```bash
110
+
# Update system and install necessary dependencies
0 commit comments