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 from PIL.ImageQt import ImageQt
00035 
00036 from rqt_bag import TopicMessageView
00037 import image_helper
00038 
00039 from python_qt_binding.QtGui import QGraphicsScene, QGraphicsView, QPixmap
00040 
00041 
00042 class ImageView(TopicMessageView):
00043     """
00044     Popup image viewer
00045     """
00046     name = 'Image'
00047 
00048     def __init__(self, timeline, parent, topic):
00049         super(ImageView, self).__init__(timeline, parent, topic)
00050 
00051         self._image = None
00052         self._image_topic = None
00053         self._image_stamp = None
00054         self.quality = Image.NEAREST  # quality hint for scaling
00055 
00056         # TODO put the image_topic and image_stamp on the picture or display them in some fashion
00057         self._overlay_font_size = 14.0
00058         self._overlay_indent = (4, 4)
00059         self._overlay_color = (0.2, 0.2, 1.0)
00060 
00061         self._image_view = QGraphicsView(parent)
00062         self._image_view.resizeEvent = self._resizeEvent
00063         self._scene = QGraphicsScene()
00064         self._image_view.setScene(self._scene)
00065         parent.layout().addWidget(self._image_view)
00066 
00067     # MessageView implementation
00068     def _resizeEvent(self, event):
00069         # TODO make this smarter. currently there will be no scrollbar even if the timeline extends beyond the viewable area
00070         self._scene.setSceneRect(0, 0, self._image_view.size().width() - 2, self._image_view.size().height() - 2)
00071         self.put_image_into_scene()
00072 
00073     def message_viewed(self, bag, msg_details):
00074         """
00075         refreshes the image
00076         """
00077         TopicMessageView.message_viewed(self, bag, msg_details)
00078         topic, msg, t = msg_details[:3]
00079         if not msg:
00080             self.set_image(None, topic, 'no message')
00081         else:
00082             self.set_image(msg, topic, msg.header.stamp)
00083 
00084     def message_cleared(self):
00085         TopicMessageView.message_cleared(self)
00086         self.set_image(None, None, None)
00087 
00088     # End MessageView implementation
00089     def put_image_into_scene(self):
00090         if self._image:
00091             resized_image = self._image.resize((self._image_view.size().width() - 2, self._image_view.size().height() - 2), self.quality)
00092 
00093             QtImage = ImageQt(resized_image)
00094             pixmap = QPixmap.fromImage(QtImage)
00095             self._scene.clear()
00096             self._scene.addPixmap(pixmap)
00097 
00098     def set_image(self, image_msg, image_topic, image_stamp):
00099         self._image_msg = image_msg
00100         if image_msg:
00101             self._image = image_helper.imgmsg_to_pil(image_msg)
00102         else:
00103             self._image = None
00104         self._image_topic = image_topic
00105         self._image_stamp = image_stamp
00106         self.put_image_into_scene()


rqt_bag_plugins
Author(s): Aaron Blasdel, Tim Field
autogenerated on Mon Oct 6 2014 07:15:50