image_view.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2012, Willow Garage, Inc.
00004 # All rights reserved.
00005 #
00006 # Redistribution and use in source and binary forms, with or without
00007 # modification, are permitted provided that the following conditions
00008 # are met:
00009 #
00010 #  * Redistributions of source code must retain the above copyright
00011 #    notice, this list of conditions and the following disclaimer.
00012 #  * Redistributions in binary form must reproduce the above
00013 #    copyright notice, this list of conditions and the following
00014 #    disclaimer in the documentation and/or other materials provided
00015 #    with the distribution.
00016 #  * Neither the name of Willow Garage, Inc. nor the names of its
00017 #    contributors may be used to endorse or promote products derived
00018 #    from this software without specific prior written permission.
00019 #
00020 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00021 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00022 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00023 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00024 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00025 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00026 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00027 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00028 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00029 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00030 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00031 # POSSIBILITY OF SUCH DAMAGE.
00032 
00033 from PIL import Image
00034 
00035 # HACK workaround for upstream pillow issue python-pillow/Pillow#400
00036 import sys
00037 from python_qt_binding import QT_BINDING_MODULES
00038 if (
00039     not QT_BINDING_MODULES['QtCore'].__name__.startswith('PyQt5') and
00040     'PyQt5' in sys.modules
00041 ):
00042     sys.modules['PyQt5'] = None
00043 from PIL.ImageQt import ImageQt
00044 
00045 from rqt_bag import TopicMessageView
00046 from rqt_bag_plugins import image_helper
00047 
00048 from python_qt_binding.QtGui import QPixmap
00049 from python_qt_binding.QtWidgets import QGraphicsScene, QGraphicsView
00050 
00051 
00052 class ImageView(TopicMessageView):
00053 
00054     """
00055     Popup image viewer
00056     """
00057     name = 'Image'
00058 
00059     def __init__(self, timeline, parent, topic):
00060         super(ImageView, self).__init__(timeline, parent, topic)
00061 
00062         self._image = None
00063         self._image_topic = None
00064         self._image_stamp = None
00065         self.quality = Image.NEAREST  # quality hint for scaling
00066 
00067         # TODO put the image_topic and image_stamp on the picture or display them in some fashion
00068         self._overlay_font_size = 14.0
00069         self._overlay_indent = (4, 4)
00070         self._overlay_color = (0.2, 0.2, 1.0)
00071 
00072         self._image_view = QGraphicsView(parent)
00073         self._image_view.resizeEvent = self._resizeEvent
00074         self._scene = QGraphicsScene()
00075         self._image_view.setScene(self._scene)
00076         parent.layout().addWidget(self._image_view)
00077 
00078     # MessageView implementation
00079     def _resizeEvent(self, event):
00080         # TODO make this smarter. currently there will be no scrollbar even if the
00081         # timeline extends beyond the viewable area
00082         self._scene.setSceneRect(
00083             0, 0, self._image_view.size().width() - 2, self._image_view.size().height() - 2)
00084         self.put_image_into_scene()
00085 
00086     def message_viewed(self, bag, msg_details):
00087         """
00088         refreshes the image
00089         """
00090         TopicMessageView.message_viewed(self, bag, msg_details)
00091         topic, msg, t = msg_details[:3]
00092         if not msg:
00093             self.set_image(None, topic, 'no message')
00094         else:
00095             self.set_image(msg, topic, msg.header.stamp)
00096 
00097     def message_cleared(self):
00098         TopicMessageView.message_cleared(self)
00099         self.set_image(None, None, None)
00100 
00101     # End MessageView implementation
00102     def put_image_into_scene(self):
00103         if self._image:
00104             resized_image = self._image.resize(
00105                 (self._image_view.size().width() - 2, self._image_view.size().height() - 2), self.quality)
00106 
00107             QtImage = ImageQt(resized_image)
00108             pixmap = QPixmap.fromImage(QtImage)
00109             self._scene.clear()
00110             self._scene.addPixmap(pixmap)
00111 
00112     def set_image(self, image_msg, image_topic, image_stamp):
00113         self._image_msg = image_msg
00114         if image_msg:
00115             self._image = image_helper.imgmsg_to_pil(image_msg)
00116         else:
00117             self._image = None
00118         self._image_topic = image_topic
00119         self._image_stamp = image_stamp
00120         self.put_image_into_scene()


rqt_bag_plugins
Author(s): Aaron Blasdel, Tim Field
autogenerated on Thu Jun 6 2019 18:52:53