Questions tagged [realsense]

Intel® RealSense Technology is a suite of depth and tracking technologies designed to give machines and devices depth perceptions capabilities that will enable them to "see" and understand the world.

RealSense consists of series of consumer grade 3D cameras together with an easy to use machine perception library that simplifies supporting the cameras for third-party software developers.

The project can be considered a successor to Microsoft Kinect camera, which aims to find uses for the technologies pioneered there in the consumer market in applications beyond gaming, something which Kinect struggled with.

Features

  • Facial analysis
    • Tracking multiple faces.
    • Identification of facial features like eyes, mouth and nose
  • Hand and finger tracking
    • Tracking up to 10 simultaneous fingers, 8 gestures, and access to raw depth data
  • Sound processing
    • Speech recognition
    • Background noise subtraction
  • Augumented reality
    • Object tracking
    • Drawing CG images on real world scenarios
  • 3d scanning
    • Generating 3d scans of objects, faces, scenes using image and depth sensors
289 questions
0
votes
1 answer

How to detect RealSense cameras via C# WMI / WMI Code Creator

I'm working on an application using C#. I need to get all of the hardware information from the RealSense camera on the machine. I was trying to figure out 'where' in the WMI Code Creator is the section that will output Intel RealSense cameras. In…
Kevin
  • 83
  • 7
0
votes
1 answer

PXCAccelerator is undefined

Hi I am trying to load an extern image into a PXCImage object. I pretend to use this function: void LoadImageFromLocal(PXCSession* session, PXCImage **dst_img, const char * path) { IplImage *image = cvLoadImage(path); unsigned char *rgb_data; …
Alexander Leon VI
  • 499
  • 1
  • 4
  • 18
0
votes
0 answers

Silverlight application converted to window application doesn't work

Below link is an Intel realsense application using Silverlight. I have tried this in window form and it doesn't…
Reena
  • 1,109
  • 8
  • 16
0
votes
1 answer

How to load an .rssdk file as input to the realsense sdk

I want to load a saved .rssdk file as input to my realsense application. I saw the below code from examples. pxcCHAR fileName[1024] = { 0 }; PXCSenseManager *psm = PXCSenseManager::CreateInstance(); PXCCaptureManager* captureManager =…
Neeraj
  • 1,612
  • 7
  • 29
  • 47
0
votes
1 answer

Intel Real Sense Audio Not Coming

Am recording the video by intel real sense camera. The video recording is done and working successfully. But audio is not coming in that video. For that my question is... My configuration is Lenovo Yoga 15 with internal real sense camera I want…
0
votes
2 answers

Intel RealSense - Development Tool

I going to develop one application by using intel realsense sdk. I want to know which development tool ( Unity3d, .Not ) is best for that ? am good in C#. Please suggest me ?
0
votes
1 answer

RealSense Projection::CreateColorImageMappedToDepth returns Null if one of the parameters internals were accessed through AcquireAccess

what I'm trying to do is to modify depth image acquired through PXCSManager::QuerySample() and then map it to color image acquired in the same way. So this is what I'm doing: void SampleProcessor::CaptureFrame(PXCSenseManager* pxcsManager, const…
Stvad
  • 360
  • 2
  • 17
-1
votes
1 answer

Autocompletions in IDEs don't work for cv2

I started to work with intel RealSense devices which uses pyrealsense2 python library. After installing that library with a great effort on Ubuntu, I also install opencv and numpy libraries. Since these libraries contain many many functions,…
-1
votes
1 answer

How to install pyrealsense2 on Mac Os?

After several attempts of installation, through pip or even source code, I had lots of errors with cmake, missing files, module not found etc. I tried with several different versions of python and pip and the most common error was ERROR: No matching…
Rafael Lourenço
  • 213
  • 4
  • 10
-1
votes
1 answer

Problems implementing Intel Realsense and SDL2

as title, I'm having problems trying to make SDL2 display frames from realsesense pipeline. I have no clue how to extract data from the frameset and process it in order to make it works with SDL2. I'm programming in C++. I've read all the…
-1
votes
1 answer

failed can't find input bag file in rs_bag2image code

I am trying to run "rs_bag2image" code (https://github.com/UnaNancyOwen/rs_bag2image) for extracting frames from a bag file. I am new in c++ and got the error "failed can't find input bag file" when I am running the code. It seems the issue occurs…
Ehsan
  • 1
  • 1
-1
votes
1 answer

What is depth data from camera like kinect or realsense?

I am starting to work with cameras like intel realsense, and trying to understand what is depth data? There is a basic example where it gives distance at each pixel, and rendered video shows bright for something closer and darker for further. Now I…
golu
  • 629
  • 2
  • 7
  • 18
-1
votes
2 answers

Hardware needed for object tracking [Computer Vision]

Pardon my lack of knowledge but I've been assigned a school project where we have to do object detection and object tracking from the size of a tennis ball to a mosquito. Its for a lifestyle product where we kill mosquitoes with lasers. My professor…
Ryan Tin
  • 381
  • 4
  • 12
-1
votes
1 answer

Why do all the coordinates from the QueryVertices are zero?

For the following code: Reads the depth data from the sensor and fills in the matrix ***/ void SR300Camera::fillInZCoords() { Image::ImageData depthImage; Image *depthMap = sample->depth; depthMap->AcquireAccess(Image::ACCESS_READ,…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
-1
votes
1 answer

Realsense SDK draw 3D scanning boundaries

I am writing a c++ app for 3D scanning. I'd like to add modify the image i get from PXCImage* image = scanner->AcquirePreviewImage(); or directly the QImage i create from QImage* qimage = new QImage(imageData.planes[0], width, height,…
Jiloc
  • 3,338
  • 3
  • 24
  • 38
1 2 3
19
20