Hello guys, I am trying to convert a bunch of images into a video, I got OpenCV code working perfectly fine on the Windows machine but videos I make on windows machine doesn't seem to work on pi using opencv. So I thought I'll just run the same code on pi and encode the images on the pi itself. The ...
Thanks for the replies guys :) Paeryn the change of starting point didn't work so I wrote a for loop and changed the starting pointer on the array. This is the draw call now and it works: void Renderer::draw(pcl::PointCloud<pcl::PointXYZRGB>::Ptr pointCloud) { // Set the viewport glViewport(0, 0, th...
Yeah it seems to be the case, is it possible to make up a point cloud out of multiple 65535 point segments? e.g: glVertexAttribPointer(posAttrib, 4, GL_FLOAT, GL_FALSE, 8 * sizeof(GLfloat), (GLvoid *)segment1); glEnableVertexAttribArray(posAttrib); glDrawArrays(GL_POINTS, 0, 65535); glVertexAttribPo...
Hello guys, I am trying to compile Point cloud library on my Pi2 but having lots of issues with swap and so on. So I saw an advice to compile on another Linux machine using armv7 cflag and then move the files to pi2 and do make install. I was wondering how would I got about to do this? I got a machi...
I'd ask Víctor Mayoral who wrote the code on GitHub. Invensense have not published specs to access their motion detection though it has been reverse engineered several times, though I think for the quaternion data mainly. I think you stand a better chance talking to the author of the code for such ...
Hi guys, I am trying to figure out how to get the rotation matrix out of the MPU-9150 Nine-Axis IMU sensor, I am using the linux-mpu9150 code with imu.c which gives me the: euler_angles, fused_quaternion, calibrated_accel and calibrated_mag But on the spec it says: Digital-output 9-axis MotionFusion...
Hi, I am working on getting some OpenCv code working on the Pi. I got OpenCV installed using sudo apt-get install libopencv-dev and using RaspiCam: C++ API for using Raspberry camera the code I am using is quite simple : #include <ctime> #include <iostream> #include <raspicam/raspicam_cv.h> using na...
You are only missing to tell the linker that the missing libraries is located in "/opt/vc/lib/". In the guide you linked to he uses full path to those libs but I guess you should only need to add: -L/opt/vc/lib Why thank you that worked right away :) now just running the application fails. ./simple...
Hey guys, I am working on a project of porting my OpenCV code from Windows to raspberry pi but I am having hard time finding a way to get OpenCV C++ working. I've found many guides but they seemed to only have libraries and code support for only C. The only promising one I found was this: RaspiCam: ...