Your message dated Thu, 14 May 2015 10:52:15 +0000 with message-id <[email protected]> and subject line Bug#763440: fixed in gamera 3.4.2+svn1431-1 has caused the Debian Bug report #763440, regarding python-gamera: segfault when accessing pixels of an RLE image connected component to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 763440: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=763440 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: python-gamera Version: 3.4.1-1 The attached test program segfaults: $ python test.py Segmentation fault Backtrace: #0 0xf79392c2 in get (point=..., this=0x8557a30) at include/connected_components.hpp:177 #1 image_get (self=self@entry= <Cc(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65c8c>, last_display=None, name='Untitled', _display=None) at remote 0xf61088ec>, point=...) at src/imageobject.cpp:764 #2 0xf79397a9 in image_get ( self=<Cc(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65c8c>, last_display=None, name='Untitled', _display=None) at remote 0xf61088ec>, args=((0, 0),)) at src/imageobject.cpp:879 #3 0x081073bd in call_function (oparg=<optimized out>, pp_stack=<optimized out>) at ../Python/ceval.c:4021 #4 PyEval_EvalFrameEx () at ../Python/ceval.c:2667 #5 0x08105f4d in PyEval_EvalCodeEx () at ../Python/ceval.c:3253 #6 0x0813a88c in PyEval_EvalCode ( locals={'HEURISTIC': 2, 'nested_list_to_image': <function at remote 0xf77bc294>, 'init_gamera': <function at remote 0xf77bc33c>, 'CONFIDENCE_DEFAULT': 0, 'image': <Image(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65bfc>, last_display=None, name='Untitled', _display=None) at remote 0xf610879c>, 'CONFIDENCE_INVERSEWEIGHT': 2, 'CONFIDENCE_KNNFRACTION': 1, 'COMPLEX': 5, 'RGBPixel': <type at remote 0xf7955e00>, 'GREYSCALE': 1, 'load_image': <function at remote 0xf796bcdc>, 'ImageData': <type at remote 0xf7956040>, 'display_multi': <function at remote 0xf77bc304>, 'CONFIDENCE_NUN': 4, 'GREY16': 2, '__package__': None, 'UNCLASSIFIED': 0, 'cc': <Cc(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65c8c>, last_display=None, name='Untitled', _display=None) at remote 0xf61088ec>, 'image_info': <function at remote 0xf77bc2cc>, 'CONFIDENCE_AVGDISTANCE': 6, '__doc__': None, 'Rect': <type at remote 0xf7955740>, 'Dim': <type at remote 0xf7955600>, 'ONEBIT': 0, 'DENSE': 0, '__builtins__': <modul...(truncated), globals={'HEURISTIC': 2, 'nested_list_to_image': <function at remote 0xf77bc294>, 'init_gamera': <function at remote 0xf77bc33c>, 'CONFIDENCE_DEFAULT': 0, 'image': <Image(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65bfc>, last_display=None, name='Untitled', _display=None) at remote 0xf610879c>, 'CONFIDENCE_INVERSEWEIGHT': 2, 'CONFIDENCE_KNNFRACTION': 1, 'COMPLEX': 5, 'RGBPixel': <type at remote 0xf7955e00>, 'GREYSCALE': 1, 'load_image': <function at remote 0xf796bcdc>, 'ImageData': <type at remote 0xf7956040>, 'display_multi': <function at remote 0xf77bc304>, 'CONFIDENCE_NUN': 4, 'GREY16': 2, '__package__': None, 'UNCLASSIFIED': 0, 'cc': <Cc(feature_functions=[[], 0], properties=<Properties at remote 0xf6a65c8c>, last_display=None, name='Untitled', _display=None) at remote 0xf61088ec>, 'image_info': <function at remote 0xf77bc2cc>, 'CONFIDENCE_AVGDISTANCE': 6, '__doc__': None, 'Rect': <type at remote 0xf7955740>, 'Dim': <type at remote 0xf7955600>, 'ONEBIT': 0, 'DENSE': 0, '__builtins__': <modul...(truncated), co=0xf7ce7ba8) at ../Python/ceval.c:667 #7 run_mod.lto_priv () at ../Python/pythonrun.c:1371 #8 0x08131578 in PyRun_FileExFlags () at ../Python/pythonrun.c:1357 #9 0x08130725 in PyRun_SimpleFileExFlags () at ../Python/pythonrun.c:949 #10 0x080daaa7 in Py_Main () at ../Modules/main.c:640 #11 0x080da50b in main (argc=2, argv=0xffffd884) at ../Modules/python.c:23It might or might not be related to #757168, which also involves connected components of RLE images.-- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'experimental') Architecture: i386 (x86_64) Foreign Architectures: amd64 Kernel: Linux 3.16-2-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-gamera depends on: ii dpkg 1.17.13 ii libc6 2.19-11 ii libgcc1 1:4.9.1-15 ii libgomp1 4.9.1-15 ii libpng12-0 1.2.50-2 ii libstdc++6 4.9.1-15 ii libtiff5 4.0.3-10 ii python 2.7.8-1 Versions of packages python-gamera recommends: ii python-imaging 2.5.3-1 ii python-numpy 1:1.8.2-2 ii python-wxgtk2.8 2.8.12.1+dfsg2-2 -- Jakub Wilk#!/usr/bin/python from gamera.core import * init_gamera() image = Image(Point(0, 0), Point(10, 10), ONEBIT, RLE) image.set((0, 0), 1) for cc in image.cc_analysis(): print cc.get((0, 0))
--- End Message ---
--- Begin Message ---Source: gamera Source-Version: 3.4.2+svn1431-1 We believe that the bug you reported is fixed in the latest version of gamera, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Stender <[email protected]> (supplier of updated gamera package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Thu, 14 May 2015 12:22:43 +0200 Source: gamera Binary: python-gamera python-gamera-dbg python-gamera-dev gamera-gui gamera-doc Architecture: source all amd64 Version: 3.4.2+svn1431-1 Distribution: unstable Urgency: medium Maintainer: Daniel Stender <[email protected]> Changed-By: Daniel Stender <[email protected]> Description: gamera-doc - documentation for the Gamera framework gamera-gui - GUI for the Gamera framework python-gamera - framework for building document analysis applications python-gamera-dbg - framework for document analysis applications (debug symbols) python-gamera-dev - framework for document analysis applications (header files) Closes: 763440 784795 Changes: gamera (3.4.2+svn1431-1) unstable; urgency=medium . * Updated source to SVN r1431 (Closes: #763440, #784795). Checksums-Sha1: 96abb9c5b500e6330276ecd26857cb6dcd4a7b53 2538 gamera_3.4.2+svn1431-1.dsc 49f0215b162a76a42f5495fe23a09b013fd47366 4630403 gamera_3.4.2+svn1431.orig.tar.bz2 1a296cc0bcbea2af8a3f2f936ee9648197ecbb06 31108 gamera_3.4.2+svn1431-1.debian.tar.xz 8544cb8d30d640fccb163ec51f85787f7f76fefb 158710 python-gamera-dev_3.4.2+svn1431-1_all.deb b7dbcd9bee1a974cc4c07e6f411ab6381a0bf559 372486 gamera-gui_3.4.2+svn1431-1_all.deb 08fe3b060ebf08f82f0e363de98392cd98def3e0 2753262 gamera-doc_3.4.2+svn1431-1_all.deb a64b42e396bc4099d4b77853e859688ed57a5b32 2364914 python-gamera_3.4.2+svn1431-1_amd64.deb 23e7e175345bee30ce05dc5fc4956cd59b872acb 45951474 python-gamera-dbg_3.4.2+svn1431-1_amd64.deb Checksums-Sha256: 88a019c466e36918f24a06f5a53c09094ae5677ba48260ea3447d06633caf1e7 2538 gamera_3.4.2+svn1431-1.dsc e6bb2eae2a2f42b21e7c2a534e1db44a3d8ed2d09f480020c61c3fc2b2c0048d 4630403 gamera_3.4.2+svn1431.orig.tar.bz2 4f711634e7f4ff0c988232be995594bae7f706c142ece608736f41f78139a361 31108 gamera_3.4.2+svn1431-1.debian.tar.xz d1f785e1e210b896c2a471a13b786785d3533431bdf2a72e62d3bfc34a215b25 158710 python-gamera-dev_3.4.2+svn1431-1_all.deb abe44edb2badeba93f5ff2bf0d6aba97616e393318328530597aaffd2f5ce8a2 372486 gamera-gui_3.4.2+svn1431-1_all.deb 433a211436e3eb2a9bc39b3cf3ac26284ed984d1056a7f858138e4d52529fb7d 2753262 gamera-doc_3.4.2+svn1431-1_all.deb 6fdcf7d86427c3e2346b7039cf5ea35cd5ec7c9c3ee1380943f0561c0573ed7a 2364914 python-gamera_3.4.2+svn1431-1_amd64.deb 3d514960c3d9de19ae6703feba88175be146046a3e330c223f4ea88103bb0b6a 45951474 python-gamera-dbg_3.4.2+svn1431-1_amd64.deb Files: 371e0755747f69861761afffb8aed9c9 2538 python optional gamera_3.4.2+svn1431-1.dsc 282d22ddae8beeff814d81baa1d96419 4630403 python optional gamera_3.4.2+svn1431.orig.tar.bz2 e407d257d8e2d797054ed89f4ee9dbb7 31108 python optional gamera_3.4.2+svn1431-1.debian.tar.xz 1db3286772ea8b985a8bcbf88f81711f 158710 python optional python-gamera-dev_3.4.2+svn1431-1_all.deb e23959be5a8a43caf0e91d8fe6b7dd00 372486 python optional gamera-gui_3.4.2+svn1431-1_all.deb 5ebefd9942255d453c23f74909db7a7a 2753262 doc optional gamera-doc_3.4.2+svn1431-1_all.deb 793f24532e1ece5f3cd092443d68f13a 2364914 python optional python-gamera_3.4.2+svn1431-1_amd64.deb c20285d9da010af474e365d5c4d28b47 45951474 debug extra python-gamera-dbg_3.4.2+svn1431-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCgAGBQJVVHoCAAoJEBXgmvTfUYLI09sP+gOAyS4qor0xeX/cWTTZpqc2 /k5Z9lpTInf9z4eYCZn0RcjW7LtOQwe+YYk7/sayuKXc55C5LCl5gASm+Vu2Pyw1 CaDGp+dhbJ5/1eXbAy5F6T1kwoaf0bO/KIEW8oT2DQ2p2Jq0ZBeIvx26ZQbBcvmQ pZGTotE54dphdPfF5xZKJ5mW83efxCsHryM9FHqt7ooJaIGUkzNGaaKhwlGGYXqf LO5v9dlW/9XItejhJZxQAuEwd/bE5nk3W6tJlmeuzhRxnXCIIgtCeQorI1lBgW9f Eoa7Gxx8OXZsh4077R4bY9hBX9w1jKIyvXZXgcyBqPams1btTnC0lyjloOlp5Sld f3TCJAsiH2Ip0oJOwuZXwvL8ml55H+VoMjkuTKiZmIrS4bXzlJtVHkA6YzI1MNUa xiI3gb/SU9JmRSbQ0y/9kglw2yMLGzi7CH62q/tplCKt/jhoq6G2JybQ+/SGpl/O XGLfmjikd7n2c/hbGefcvHIX1MCpKq0AvB5PzSHWMZey3FDFmzRO7L7Mj3ed1AHx 32MFSNCLKFE5WORWCLsuvZJMjtcrd1j4FiRha0FYdZ2VC/MmGfLmLiNfa2dsFEOa rAq0h+hOeuNu7bh0m/qWG9a1BpJrLxm2hGVt5o4XC7pnI4KnHaYqEEV3I0A4NXKs BYRwePwRfe5wx625g52y =y1R2 -----END PGP SIGNATURE-----
--- End Message ---

