Ask Your Question

eric_engineer's profile - activity

2020-06-08 10:06:06 -0600 asked a question [SOLVED]trouble converting Euler angles to rotation matrix for cal

trouble converting Euler angles to rotation matrix for cal I have this matched pair of stereo cameras that come with cal

2020-06-02 16:28:05 -0600 asked a question SystemError: new style getargs format but argument is not a tuple

SystemError: new style getargs format but argument is not a tuple I'm trying to use my own calibration values for stereo

2020-01-30 13:07:26 -0600 edited question Auto rotation of two point clouds from stereo rig

Auto rotation of two point clouds from stereo rig I built this stereo camera rig and eventually I was able to get to the

2020-01-30 13:06:55 -0600 asked a question Auto rotation of two point clouds from stereo rig

Auto rotation of two point clouds from stereo rig I built this stereo camera rig and eventually I was able to get to the

2019-12-30 16:44:28 -0600 asked a question Build OpenCV 4.x for Android with c++_static

Build OpenCV 4.x for Android with c++_static I had been happily using opencv as a shared library, but now I want to try

2019-10-03 20:07:20 -0600 commented question camera calibration focal length is wrong

I guess if I think about it some more, if I change the resolution lower, but the FOV remains the same, then it's almost

2019-10-03 17:34:36 -0600 commented question camera calibration focal length is wrong

I specify the image size in my request to the android camera driver, then the camera or the ISP crops and returns it. I

2019-10-03 14:28:15 -0600 commented question camera calibration focal length is wrong

Thanks for the follow up, I'm still messing around trying to get this right. I have the full datasheet for the camera a

2019-10-03 08:05:35 -0600 commented question camera calibration focal length is wrong

Another mistake I might have made. I took these pictures at 640x360 while the native resolution of the camera is 4256x3

2019-10-03 07:39:27 -0600 commented question camera calibration focal length is wrong

I see your point about units, but doing this: OBJECT_POINT_ZERO[:, :2] = np.mgrid[0:7,0:7].T.reshape(-1,2) * 26.32 gav

2019-10-03 07:36:44 -0600 commented question camera calibration focal length is wrong

I see your point about units, but doing this: OBJECT_POINT_ZERO[:, :2] = np.mgrid[0:7,0:7].T.reshape(-1,2) * 26.32 gav

2019-10-02 19:18:31 -0600 commented question camera calibration focal length is wrong

Yes! I was wondering the same thing, but I don't see how to set it python.

2019-10-02 15:40:22 -0600 asked a question camera calibration focal length is wrong

camera calibration focal length is wrong So I'm sure this is my error, just not sure what I'm doing wrong. I had started

2019-09-27 09:36:26 -0600 commented question Curious as to why keypoints in video of static room seem to come and go

Thank you that's a pretty cool video.

2019-09-27 09:34:58 -0600 commented answer Curious as to why keypoints in video of static room seem to come and go

Thanks for the advice as usual

2019-09-27 09:34:39 -0600 marked best answer Curious as to why keypoints in video of static room seem to come and go

I wrote a simple python script to process an mp4 video that I took with my phone. The phone was propped up with a clamp, and held perfectly still. It's just looking at my room, there's no motion going on. So I process that video through SIFT, and draw keypoints for every frame then output the video.

Why do some keypoints come and go if it's the same static room in the recording? Is there some uncertainty or randomness inherent in the detector algorithm? Or is it more likely some compression artifacts introduced by the H.264 encoding? Maybe my lighting that's running at 60hz is dimming just enough to periodically cause different frames? I'm not sure but these are the things I'm speculating about.

If I ran SIFT against the same JPEG hundreds of time would you expect to get the same exact keypoints or would some of them come and go as well?

Thanks for any advice you can give, I'm just curious about why this sort of thing happens.

Edit: I took a jpeg picture of my room and and ran it through SIFT feature detect a few hundred times, and made the output a mp4. Features in that were rock solid :) So... it's something that changes in my stream or maybe lighting I guess.

2019-09-26 20:18:46 -0600 edited question Curious as to why keypoints in video of static room seem to come and go

Curious as to why keypoints in video of static room seem to come and go I wrote a simple python script to process an mp4

2019-09-26 19:03:01 -0600 asked a question Curious as to why keypoints in video of static room seem to come and go

Curious as to why keypoints in video of static room seem to come and go I wrote a simple python script to process an mp4

2019-08-21 12:18:11 -0600 asked a question making the optimal target for SIFT

making the optimal target for SIFT I'm working on tracking a doughnut shaped target with SIFT as the detector. I just d

2019-08-21 12:13:45 -0600 commented answer Hire someone for build environment setup for Android

Thank you, I didn't even consider Fiverr for something like this.

2019-08-21 12:13:29 -0600 marked best answer Hire someone for build environment setup for Android

Does anyone know of someone I could hire to setup a build environment for opencv from source? I've been at it for a while and I just can't seem to get the final building of the android project piece to work.

Thank you

2019-08-21 12:12:57 -0600 asked a question optimizing approach for SIFT detection

optimizing approach for SIFT detection I'm running SIFT detection of a target in Python on Windows with a 2.7Ghz i7-6820

2019-08-12 16:18:47 -0600 commented question KCF Tracker not updating bounding box in Java

Sorry this was an error on my part.

2019-08-12 11:35:44 -0600 asked a question KCF Tracker not updating bounding box in Java

KCF Tracker not updating bounding box in Java I'm trying to implement KCF tracking function in Android but when I call u

2019-08-09 07:56:26 -0600 asked a question Hire someone for build environment setup for Android

Hire someone for build environment setup for Android Does anyone know of someone I could hire to setup a build environme

2019-08-07 17:10:52 -0600 commented answer Is there a way to use openCV contrib modules with Android (native)

Thanks so much for sharing these, it really helped me out!

2019-08-07 15:55:41 -0600 asked a question Android 3.4.6 build from source

Android 3.4.6 build from source I'm going crazy trying to build and Android version from scratch again. It seems no mat

2019-07-31 14:35:03 -0600 asked a question Improving or adjusting ORB performance

Improving or adjusting ORB performance I'm using an ORB feature detector in Java with a camera feed. I don't seem to fi

2019-07-31 11:40:41 -0600 commented question Figure out scale and rotation of template image based on matched keypoints

Finally got it to work thanks for the tips.

2019-07-30 16:08:17 -0600 commented question Figure out scale and rotation of template image based on matched keypoints

Yes :) I have been pouring over that for the last two hours. I'm curious if this section in the tutorial has the queryI

2019-07-30 13:40:09 -0600 asked a question Figure out scale and rotation of template image based on matched keypoints

Figure out scale and rotation of template image based on matched keypoints I was able to use ORB matching to match my te

2019-07-10 10:35:17 -0600 commented question Building latest master for android but missing Java folder

I disabled PROTBUF and now building the android project is failing because it can't find opencv

2019-07-10 10:34:51 -0600 edited question Building latest master for android but missing Java folder

Building latest master for android but missing Java folder I'm trying to build the latest master for Android. I struggl

2019-07-10 09:41:55 -0600 commented question Building latest master for android but missing Java folder

okay after installing ant, setting some env variables, and setting ANT_EXECUTABLE in Cmake I get Java wrappers YES. Now

2019-07-10 07:04:46 -0600 commented question Building latest master for android but missing Java folder

Sure, and thank you for all the help so far.

2019-07-10 07:04:32 -0600 edited question Building latest master for android but missing Java folder

Building latest master for android but missing Java folder I'm trying to build the latest master for Android. I struggl

2019-07-09 19:58:37 -0600 asked a question Building latest master for android but missing Java folder

Building latest master for android but missing Java folder I'm trying to build the latest master for Android. I struggl

2019-07-09 15:22:46 -0600 commented answer Where did SimpleBlobDetection go?

So was already using 4.1.0 and I can't get it to work there. I'm trying to build master from source buy having trouble

2019-07-08 13:13:30 -0600 marked best answer Where did SimpleBlobDetection go?

I was using SimpleBlobDetection in 3.x in Java. Then I updated to 4.x and now I can't find it anywhere. FeatureDetector seems to have been replaced by FastFeatureDetector, but I can't find SimpleBlob anywhere.

Thank you

2019-07-08 06:16:32 -0600 commented question Where did SimpleBlobDetection go?

If I do an import org.opencv.features2d.SimpleBlobDetector;. I get a cannot resolve symbol SimpleBlobDetector. If I we

2019-07-07 17:25:25 -0600 asked a question Where did SimpleBlobDetection go?

Where did SimpleBlobDetection go? I was using SimpleBlobDetection in 3.x in Java. Then I updated to 4.x and now I can't

2019-07-04 11:10:57 -0600 commented question Tracking by chroma in varying light conditions

Sure I should have done that before. I added to my question up top. This is my tube, depending on the length of the tub