owenplanchart

Results 14 comments of owenplanchart

Hi, by the same logic, would it be possible to pass an ofxAruco object using ofxCvPiCam. How does one get the pixels from ofxCvPiCam?

Thank you, I will give this a try

Is this the right implementation? ``` void ofApp::update(){ cv::Mat frame = cam.grab(); ofPixels arPixels; toOf(frame, arPixels); if(!frame.empty()){ aruco.detectBoards(arPixels); } } ```

It's really strange because now I'm getting this error when I try to compile: ``` obj/linuxarmv6l/Release/src/ofApp.o: file not recognized: file truncated collect2: error: ld returned 1 exit status make[1]: ***...

@orgicus Not sure what happened there, so I re-downloaded the addon and wrote the sketch from scratch and managed to get the aruco markers working (yay!). This was on the...

Thank you for your prompt reply, In that case can you see any reason why this code wouldn't work with ofxAruco. This sketch works with the ps3eye but I cant...

that didn't do it unfortunately.

I noticed that the original ofxAruco code uses in the .h file ``` ofVideoGrabber grabber ofBaseVideoDraws * video ``` and then in the .cpp file `video = &grabber` I couldnt...

> I seem to have this working on Pi3 B+ Buster Lite + OF 0.11. I did this to get OF running and tried a couple of OF examples which...

Never mind, i just realised that the camera permissions in raspi-config toggled back to off on one of the reboots. Which is weird because raspi-still was still working. Thanks for...