|
Choreonoid
1.8
|
#include <Camera.h>
Public Types | |
| enum | ImageType { NO_IMAGE, COLOR_IMAGE, GRAYSCALE_IMAGE } |
| enum | LensType { NORMAL_LENS, FISHEYE_LENS, DUAL_FISHEYE_LENS } |
Public Member Functions | |
| Camera () | |
| Camera (const Camera &org, bool copyStateOnly=false) | |
| virtual const char * | typeName () const override |
| void | copyStateFrom (const Camera &other) |
| virtual void | copyStateFrom (const DeviceState &other) override |
| virtual DeviceState * | cloneState () const override |
| virtual void | forEachActualType (std::function< bool(const std::type_info &type)> func) override |
| virtual void | clearState () override |
| void | setImageStateClonable (bool on) |
| bool | isImageStateClonable () const |
| ImageType | imageType () const |
| void | setImageType (ImageType type) |
| LensType | lensType () const |
| void | setLensType (LensType type) |
| virtual bool | on () const override |
| virtual void | on (bool on) override |
| double | nearClipDistance () const |
| void | setNearClipDistance (double d) |
| double | farClipDistance () const |
| void | setFarClipDistance (double d) |
| double | fieldOfView () const |
| void | setFieldOfView (double f) |
| void | setResolution (int x, int y) |
| void | setResolutionX (int x) |
| void | setResolutionY (int y) |
| int | resolutionX () const |
| int | resolutionY () const |
| void | setFrameRate (double r) |
| double | frameRate () const |
| const Image & | image () const |
| const Image & | constImage () const |
| Image & | image () |
| Image & | newImage () |
| std::shared_ptr< const Image > | sharedImage () const |
| void | setImage (std::shared_ptr< Image > &image) |
| void | clearImage () |
| double | delay () const |
| void | setDelay (double time) |
| virtual int | stateSize () const override |
| virtual const double * | readState (const double *buf) override |
| virtual double * | writeState (double *out_buf) const override |
| bool | readSpecifications (const Mapping *info) |
| bool | writeSpecifications (Mapping *info) const |
Public Member Functions inherited from cnoid::Device | |
| virtual | ~Device () |
| Device * | clone () const |
| Device * | clone (CloneMap &cloneMap) const |
| virtual bool | copyFrom (const Device *other) |
| void | setIndex (int index) |
| void | setId (int id) |
| void | setName (const std::string &name) |
| void | setLink (Link *link) |
| bool | hasStateOnly () const |
| int | index () const |
| int | id () const |
| const std::string & | name () const |
| const Link * | link () const |
| Link * | link () |
| const Body * | body () const |
| Body * | body () |
| Isometry3 & | T_local () |
| const Isometry3 & | T_local () const |
| const Isometry3 & | localPosition () const |
| template<class Scalar , int Mode, int Options> | |
| void | setLocalPosition (const Eigen::Transform< Scalar, 3, Mode, Options > &T) |
| Isometry3::ConstLinearPart | R_local () const |
| Isometry3::LinearPart | R_local () |
| Isometry3::ConstLinearPart | localRotation () const |
| template<typename Derived > | |
| void | setLocalRotation (const Eigen::MatrixBase< Derived > &R) |
| Isometry3::ConstTranslationPart | p_local () const |
| Isometry3::TranslationPart | p_local () |
| Isometry3::ConstTranslationPart | localTranslation () const |
| template<typename Derived > | |
| void | setLocalTranslation (const Eigen::MatrixBase< Derived > &p) |
| SignalProxy< void()> | sigStateChanged () |
| void | notifyStateChange () |
| SignalProxy< void(double time)> | sigTimeChanged () |
| void | notifyTimeChange (double time) |
| const Isometry3 & | T_local_org () const |
| void | setLocalAttitude (const Isometry3 &Ta) |
| double | cycle () const |
| void | setCycle (double msec) |
Public Member Functions inherited from cnoid::DeviceState | |
| virtual | ~DeviceState () |
Public Member Functions inherited from cnoid::Referenced | |
| virtual | ~Referenced () |
Protected Member Functions | |
| virtual Referenced * | doClone (CloneMap *cloneMap) const override |
Protected Member Functions inherited from cnoid::Device | |
| Device () | |
| Device (const Device &org, bool copyStateOnly=false) | |
| void | copySpecFrom (const Device *other) |
Protected Member Functions inherited from cnoid::DeviceState | |
| DeviceState () | |
| DeviceState (const DeviceState &) | |
Protected Member Functions inherited from cnoid::Referenced | |
| Referenced () | |
| Referenced (const Referenced &) | |
| int | refCount () const |
| Camera::Camera | ( | ) |
| Camera::Camera | ( | const Camera & | org, |
| bool | copyStateOnly = false |
||
| ) |
| void Camera::clearImage | ( | ) |
|
overridevirtual |
Reimplemented from cnoid::Device.
Reimplemented in cnoid::RangeCamera.
|
overridevirtual |
Implements cnoid::DeviceState.
Reimplemented in cnoid::RangeCamera.
|
inline |
| void Camera::copyStateFrom | ( | const Camera & | other | ) |
|
overridevirtual |
Implements cnoid::DeviceState.
Reimplemented in cnoid::RangeCamera.
|
inline |
Time [s] consumed in shooting the current image
|
overrideprotectedvirtual |
Implements cnoid::ClonableReferenced.
Reimplemented in cnoid::RangeCamera.
|
inline |
|
inline |
|
overridevirtual |
Reimplemented from cnoid::Device.
Reimplemented in cnoid::RangeCamera.
|
inline |
| Image& cnoid::Camera::image | ( | ) |
| Image & Camera::image | ( | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
| Image & Camera::newImage | ( | ) |
|
overridevirtual |
Reimplemented from cnoid::Device.
|
overridevirtual |
Reimplemented from cnoid::Device.
| bool Camera::readSpecifications | ( | const Mapping * | info | ) |
|
overridevirtual |
Implements cnoid::DeviceState.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void Camera::setImage | ( | std::shared_ptr< Image > & | image | ) |
Move semantics. If the use_count() of the given shared image pointer is one, the data is moved to the Camera object and the ownership of the given pointer is released. Otherwise, the data is copied.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
overridevirtual |
Size of the double-precision floating numbers for representing the state.
Implements cnoid::DeviceState.
|
overridevirtual |
Implements cnoid::DeviceState.
Reimplemented in cnoid::RangeCamera.
| bool Camera::writeSpecifications | ( | Mapping * | info | ) | const |
|
overridevirtual |
Implements cnoid::DeviceState.
1.8.17