-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
camera_info not published (self is missing when getting a member value) #30
Comments
This is true, but that function is not actually called from anywhere, I don't think. How are you triggering the problem? |
Hi, true :) Publishing camera_info is useful if you want to get a rectified image e.g. To get an uncompressed image at /axis/image_raw I run Best, On Thu, Nov 27, 2014 at 1:12 PM, Mike Purvis [email protected]
|
Would you consider submitting a PR which more comprehensively enables camera calibration, and includes as part of it a bugfix for this issue? |
Sure, Best, On Thu, Nov 27, 2014 at 2:58 PM, Mike Purvis [email protected]
|
Hi all, As a side note, there is a working patch for gstreamer and mjpeg stream (it I've found it to be the less CPU intensive on small cpus (e.g. atom) HTH Cedric, mobile, big-thumbed and concise
|
@cedricpradalier When I was trying to spruce this driver up in July, I added a launchfile which uses gscam instead of the built-in driver: https://github.com/clearpathrobotics/axis_camera/blob/master/launch/axis_gscam.launch Unfortunately, I had enough problems with it that I wasn't content to recommend that approach as the default. I don't recall now what all went wrong, but it was fiddly to get working and would be difficult to deploy as a deb without cooperation from some upstream maintainers. |
This is very true. The really good http package is not in the default I'd recommend that only for people with a very tight processing budget Regards. On Thu, Dec 4, 2014 at 8:24 PM, Mike Purvis [email protected]
Cedric Pradalier |
Hi all,
Regard, |
The issue is not very related to its tittle anymore. It's an interesting discussion tho. If anyone makes a PR to fix the camera_info stuff I would be glad to give it a try and merge. |
@alexcordella: can you render your previous message in some more-readable form? |
I submitted a pull request to fix this issue. #38 implements what was originally being discussed and what @alexcordella was describing. |
Open axis.py: Now the camera_info topic is rightly published. Let me know if now is readable. |
I agree with this fix, just worked for me. Makes callibration much more feasible to use now. |
Also worked for me |
bug in axis.py
line 128:
cimsg.header.stamp = msg.header.stamp // (exception is thrown here!)
should read
cimsg.header.stamp = self.msg.header.stamp
The text was updated successfully, but these errors were encountered: