/// <summary>
        /// Read the real value on the yarp port.
        /// Convert the image into a vector.
        /// </summary>
        public override void ReadRealValue()
        {
            Sound s = portReal.read(isBlockingRead);

            if (s != null)
            {
                RealValue = Sound2Vector(s);
            }
        }