Downloads:
9,687
Downloads of v 2.17.0.394-beta0:
196
Last Update:
01 Dec 2018
Package Maintainer(s):
Software Author(s):
- Sergey Dorodnicov
- Mark Horn
- Reagan Lopez
- Itay Carpis
Tags:
realsense depth-camera sdkIntel® RealSense™ SDK 2.0
This is a prerelease version of Intel® RealSense™ SDK 2.0.
- 1
- 2
- 3
2.17.0.394-beta0 | Updated: 01 Dec 2018
Downloads:
9,687
Downloads of v 2.17.0.394-beta0:
196
Maintainer(s):
Software Author(s):
- Sergey Dorodnicov
- Mark Horn
- Reagan Lopez
- Itay Carpis
Intel® RealSense™ SDK 2.0 2.17.0.394-beta0
This is a prerelease version of Intel® RealSense™ SDK 2.0.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Sergey Dorodnicov, Mark Horn, Reagan Lopez, Itay Carpis. The inclusion of Sergey Dorodnicov, Mark Horn, Reagan Lopez, Itay Carpis trademark(s), if any, upon this webpage is solely to identify Sergey Dorodnicov, Mark Horn, Reagan Lopez, Itay Carpis goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Intel® RealSense™ SDK 2.0, run the following command from the command line or from PowerShell:
To upgrade Intel® RealSense™ SDK 2.0, run the following command from the command line or from PowerShell:
To uninstall Intel® RealSense™ SDK 2.0, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download realsense-sdk2 --internalize --version=2.17.0.394-beta0 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade realsense-sdk2 -y --source="'INTERNAL REPO URL'" --version="'2.17.0.394-beta0'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade realsense-sdk2 -y --source="'INTERNAL REPO URL'" --version="'2.17.0.394-beta0'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install realsense-sdk2
win_chocolatey:
name: realsense-sdk2
version: '2.17.0.394-beta0'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'realsense-sdk2' do
action :install
source 'INTERNAL REPO URL'
version '2.17.0.394-beta0'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller realsense-sdk2
{
Name = "realsense-sdk2"
Version = "2.17.0.394-beta0"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'realsense-sdk2':
ensure => '2.17.0.394-beta0',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
Intel® RealSense™ SDK 2.0 is a cross-platform library for Intel® RealSense™ depth cameras (D400 series and the SR300).
The SDK allows depth and color streaming, and provides intrinsic and extrinsic calibration information. The library also offers synthetic streams (pointcloud, depth aligned to color and vise-versa), and a built-in support for record and playback of streaming sessions.
Optional Components
tools
- Intel RealSense Viewer and Quality Tooldev
- C / C++ Developer Packagecv
- OpenCV examplespy
- Python 2.7 / 3.6 Developer Packagenet
- .NET Developer Packagematlab
- Matlab Developer Packagepdb
- Debug Symbols
Package Parameters
The following package parameters can be set:
/NoIcons
- install quick lauch icon/Components
- list of components optional components to install./Addx64LibsToPath
- Adds to path environment thebin\x64
folder for dll resolution, for development purposes./Addx86LibsToPath
- Adds to path environment thebin\x86
folder for dll resolution, for development purposes./AddToolsToPath
- Adds to path environment the ools folder.
These parameters can be passed to the installer with the use of -params
.
For example: --params '"/NoIcons /Components:tools,dev"'
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
function Get-InstallComponents( [HashTable]$pp )
{
if($pp.Components){
$res += $pp.Components
}
if ($res.Length -eq 0) { return }
return '/COMPONENTS="{0}"' -f ($res -join ",")
}
function Get-InstallOptions( [HashTable]$pp )
{
if ($pp.Full -And $pp.Components) {
throw "Invalid argument /Components used with /Full, please use only one"
}
if ($pp.NoIcons) {
$res += '/NOICONS', '/TASKS=""'
}
if ($pp.Full) {
$res += "/TYPE=full"
}
# $tasks += "desktopicon", "quicklaunchicon"
# return '/TASKS="{0}"' -f ($res -join ",")
return $res
}
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Intel® RealSense™ SDK 2.0 2.56.2 | 38 | Wednesday, October 16, 2024 | Approved | |
Intel® RealSense™ SDK 2.0 2.56.1 | 26 | Wednesday, September 11, 2024 | Approved | |
Intel® RealSense™ SDK 2.0 2.55.1 | 62 | Sunday, April 21, 2024 | Approved | |
Intel® RealSense™ SDK 2.0 2.54.2 | 73 | Sunday, March 10, 2024 | Approved | |
Intel® RealSense™ SDK 2.0 2.29.0 | 6487 | Saturday, September 28, 2019 | Exempted | |
Intel® RealSense™ SDK 2.0 2.27.0 | 383 | Saturday, August 31, 2019 | Approved | |
Intel® RealSense™ SDK 2.0 2.20.0 | 714 | Saturday, April 6, 2019 | Approved | |
Intel® RealSense™ SDK 2.0 2.19.2 | 216 | Thursday, March 28, 2019 | Approved | |
Intel® RealSense™ SDK 2.0 2.19.1 | 189 | Tuesday, March 12, 2019 | Approved | |
Intel® RealSense™ SDK 2.0 2.19.0 | 200 | Thursday, March 7, 2019 | Approved | |
Intel® RealSense™ SDK 2.0 2.18.0-beta0 | 247 | Thursday, January 24, 2019 | Exempted | |
Intel® RealSense™ SDK 2.0 2.17.1-beta0 | 210 | Tuesday, January 1, 2019 | Exempted | |
Intel® RealSense™ SDK 2.0 2.17.0.394-beta0 | 196 | Saturday, December 1, 2018 | Exempted | |
Intel® RealSense™ SDK 2.0 2.16.5.367-beta0 | 187 | Tuesday, November 20, 2018 | Exempted | |
Intel® RealSense™ SDK 2.0 2.16.3.312-beta0 | 214 | Thursday, November 8, 2018 | Exempted | |
Intel® RealSense™ SDK 2.0 2.16.1 | 217 | Wednesday, November 7, 2018 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Intel® RealSense™ SDK 2.0 and the Intel® RealSense™ SDK 2.0 package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Intel® RealSense™ SDK 2.0, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.