Use CMake version 3.13.0 or above
-
Download or Clone the repository
-
In cloned folder, open command line
Default build:
> mkdir build > cd build > cmake ..
Build with secure communication enabled:
> mkdir build > cd build > cmake -DRSID_SECURE=1 ..
Build with preview enabled:
> mkdir build > cd build > cmake -DRSID_PREVIEW=1 ..
-
In build folder you should have full visual studio solution. Run RealSenseID.sln
-
Build solution
-
After building solution you will find in \build\bin<Debug/Release> three executables:
- rsid-viewer.exe: GUI to view and use RealsenseID
- rsid-cli.exe: Command line tool to use RealSenseID.
- fw-updater-cli.exe: Firmware update tool
Done!
Make sure you have connected the Intel RealSense ID F450 / F455 device to your PC.
Run Windows "Device Manager" and check in which COM port the device was recognized (It should appear under Ports (COM & LPT) (For example: COM3)
- Simply Run: rsid-viewer.exe
- Further configuration can be found in "rsid-viewer.exe.config" file located next to the .exe file.
For saving images from sensors stream you can enable "Dump Frames" under app's setting screen. notice that:
- Dumping is running only in authentication,enroll or faceprints session.
- Images will be saved under the directory specified in "DumpDir" attribute in "rsid-viewer.exe.config" in PNG/RAW format.
- If metadata enabled (see "sensor timestamps" in repository readme):
images will be named by sensor timestamp and the main image used by algorithm will be named with the suffix "selected". - Otherwise, images will be named by a frame number only.
At bin folder (where .exe files are located) run command line and run the app as following:
rsid-cli.exe <port>
For Example:
rsid-cli.exe COM3
*** instructions for Ubuntu 18.4 ***
- CMake - 3.13.0 or higher.
- Download or Clone the repository.
- In main folder, Open Terminal and run the following:
> mkdir build
> cd build
> cmake ..
> make
- After building solution you will find in \build\bin\ two executables:
- rsid-cli: Command line interface to RealSenseID.
- fw-updater-cli: Firmware update tool.
Done!
First make sure you have connected the Intel RealSense ID F450 / F455 Camera to your PC.
-
Identify your device by running:
sudo dmesg | grep 'Intel F450' -A 5 | grep ttyACM
The output should be something like: "... ttyACM#: USB ACM device ..." - where # is the port number.
-
Grant the necessary permissions for your user, to be able to communicate with the device:
sudo usermod -a -G dialout $USER
Log out of your current session for this to take effect.
Alternatively, you can run the following command, replacing # with the port number found in step 1:
sudo chmod 666 /dev/ttyACM#
This will only affect the current session.
At bin folder (where .exe files are located) run command line and run the app as following:
./rsid-cli <port>
For Example:
./rsid-cli /dev/ttyACM0 usb