Questions tagged [asus-xtion]

Asus-xtion is a professional color (RGB) PC motion sensing software development solution with plug-n-play USB design.

45 questions
1
vote
0 answers

Multiple Sensors OpenNI usergenerators

I am working on a project which combines the data of two Asus Xtion (Primesense Sensor device similar to the Kinect) I am working with OpenNI 1.5.4.0 SDK. At the moment I have managed to get the depthmap from both devices and showing them…
1
vote
1 answer

How to initialize multiple OpenNI sensors with OpenCV

I'd like to use two Asus Xtion Pro sensors with OpenCV (2.4.4) and not sure how to initialize both devices. I can initialize one like so: VideoCapture capture; capture.open(CV_CAP_OPENNI); How can I initialize two VideoCapture instances for two…
George Profenza
  • 50,687
  • 19
  • 144
  • 218
0
votes
0 answers

the nvidia gpu not detected, even try to enable/disable igpu and primary display from BIOS

I am having Asus H81M-CS motherboard and i have attached the nvidia gpu , but motherboard not detecting that, motherboard only using integrated graphics. I have event tried with enable/disable the igpu and primary display from the bios but when pc…
Axel Blaz
  • 29
  • 7
0
votes
0 answers

How do I run these c++ and c files for NiHandTracker?

main.cpp #include "NiHandViewer.h" //--------------------------------------------------------------------------- // Defines //--------------------------------------------------------------------------- #define SAMPLE_XML_PATH…
user13274841
0
votes
1 answer

OpenNI: Device not found in sample code even though it is detected and working

I want to run the OpenNI 2 code samples with my new Asus Xtion 2 camera on Windows 10 (64 bit), but the device doesn't get found. What's bizarre is that I can execute the pre-compiled binaries of the samples and see the signal streams in NiViewer…
Tamori
  • 97
  • 9
0
votes
0 answers

How can I check the firmware version of a primesense Xtion camera?

How can I check the firmware version of a primesense Xtion camera? I have a couple of these cameras which I suspect have different firmware versions. One works with NiViewer, the other doesn't. Although both are detected as connected to a usb port…
martinako
  • 2,690
  • 1
  • 25
  • 44
0
votes
0 answers

OpenNI does not work with primeSense carmin 1.08x (Kinect) Although OpenNI2 is working with it

I have the two versions of openNI installed, NI viewer for openNI2.2 works properly with my PrimeSense device, however NI viewer of openNI 1.5.7.10 says primesense/sensorKinect/5.1.2.1: the device is not connected. This question was asked before…
0
votes
1 answer

Recording video with ASUS Xtion using python

I have an ASUS Xtion 3D Sensor Camera. I want to record video with this camera by using python. I have tried opencv using this tutorial; http://docs.opencv.org/2.4/doc/user_guide/ug_kinect.html, but it seems that there is no video recording by using…
yusuf
  • 3,591
  • 8
  • 45
  • 86
0
votes
1 answer

cannot get frame from openni device in python-opencv

I am using raspberry pi to get frames from ASUS Xtion openni device. Python-opencv, OpenNI, and OpenCV are installed on raspberry pi correctly. I am using the following code: import cv2 import cv2.cv as cv capture =…
yusuf
  • 3,591
  • 8
  • 45
  • 86
0
votes
1 answer

Accessing to a different computer's OpenNI camera device using python

I have a ASUS Xtion Pro-Live camera. It is connected to a raspberry pi. I have written a python code which grabs frames from the camera, displays and saves. def get_frames(): capture = cv2.VideoCapture(cv.CV_CAP_OPENNI) …
yusuf
  • 3,591
  • 8
  • 45
  • 86
0
votes
1 answer

Is there a way to get the output of a bash script to "feed" into a variable in a python script that executes the action initially?

So, I have a bash script that feeds out data from a sensor that is connected to the NVidea Jetson TK-1 in string format in the shell. Is there any way I can run a python script that initializes the bash script. Takes the output data in bash, feeds…
0
votes
2 answers

Reading from .oni file results in out of order frames

My issue is a duplicate of this one. There was no solution there. In hopes to find a solution and detail my specific setup, below shows the function used to read frames from the .oni file. If this function is run with Type == 2 (i.e. runs for #…
user4084964
0
votes
0 answers

system() slows down my camera's feedback

I an working with opencv and Xtion Pro Live stereoscopic camera on a motion detection project (os: ubuntu 12.04). I have managed to detect the moving object, but i want to put a sound when the motion is detected. I tried it with the…
MTs
  • 199
  • 2
  • 19
0
votes
1 answer

Asus Xtion Pro Live and PyOpenni RGB

I am using PyOpenni in python to read data sensor from an Asus Xtion Live Pro. All works like a charm if I try to read depth data: depth = DepthGenerator() depth.create(context) depth.set_resolution_preset(DefResolution.RES_VGA) depth.fps =…
DylanStenico
  • 71
  • 1
  • 1
  • 6
0
votes
1 answer

Cannot grab image from Xtion Pro Live with Opencv code

I am using OpenCV 2.4.10 and I want to take image from my Asus Xtion Pro Live. When I'm trying to execute the code below, I get this error: "Can not open capture." I tried everything, like Sensor update, opencv with openni compiling and opencv…
MTs
  • 199
  • 2
  • 19