1
I Use This!
Inactive

Commits : Listings

Analyzed about 10 hours ago. based on code collected 1 day ago.
Jun 10, 2025 — Jun 10, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixing bug with pyvision_banner introduced when parameters of image montage were re-named. Also reverted calls of pil.tobytes() to pil.tostring() in the img.py module, as it is incompatible with some installations of PIL. More... almost 12 years ago
Merge branch 'master' of ssh://[email protected]/p/pyvision/git More... almost 12 years ago
Replaced all "import cv" with "import cv2.cv as cv" because the windows pre-built downloads don't have the cv.pyd shared object, and the correct way to access the old "cv" interface is via cv2.cv. More... almost 12 years ago
Updated the pyvision.Timer class. It now supports formatting the float time values in the table using a format_str parameter in the constructor. It also provides a "compact" mode, where the cpu times are hidden, and only wall-clock fields displayed. By using compact mode and a format string like {:0.3f}, the table can be made much more readable and compact. More... about 12 years ago
Modified a call from pil.tostring() to use pil.tobytes() instead. This is in response to a deprecation warning being produced. "DeprecationWarning: tostring() is deprecated. Please call tobytes() instead." More... about 12 years ago
Fixed a small bug in modified annotateRect code that caused rect outlines not to be drawn when using a fill color. More... about 12 years ago
Merge branch 'master' of ssh://[email protected]/p/pyvision/git More... about 12 years ago
Added the capability of Image.annotateRect() to fill the rectangle with partial transparency, controlled by an alpha parameter in range 0-1.0. More... about 12 years ago
Merge branch 'master' of ssh://[email protected]/p/pyvision/git More... over 12 years ago
ImageMontage show() method now returns the key that was pressed, if any, to dismiss the window. More... over 12 years ago
Image montage show() method now returns the keypress from the underlying img.show() method. More... over 12 years ago
Merge branch 'master' of ssh://[email protected]/p/pyvision/git More... over 12 years ago
Updates to ImageMontage class to support highlighting clicked tiles. If the montage is created with highlight_selected = True, then when a tile is clicked, it becomes highlighted in yellow. This toggles, so that if a highlighted tile is clicked it becomes normal. There are two additional methods, setHighlighted() and getHighlighted(). The first might typically be used before showing the montage to initialize a set of tiles to be highlighted. getHighlighted() might typically be used after the montage is closed, for the calling program to determine the final set of tiles selected by the user. This feature works independently of the setSelectHandler() callback, which can still be used to invoke arbitrary actions when a tile is clicked. Now, however, the tile label is passed as an element in the dictionary of the signature of the select handler function. The changes are intended to not break any previous code. More... over 12 years ago
Merging with pyvision master. More... over 12 years ago
Adding an html reporting class. More... over 12 years ago
Updated the fillBuffer() method of ImageBuffer to accept a wider range of input types. You can now fill the buffer using a video object, a list of images, or any iterable that produces pv.Images. More... over 12 years ago
updated .gitignore to include .idea directory More... over 12 years ago
Added a keyword parameter: as_type to the pv.Image.asAnnotated() method, to make it easy if the user would prefer the output be a pyvision image as opposed to the PIL image of the annotations. The default for the parameter keeps current functionality. More... over 12 years ago
Fixed a bug in pvImage.show( size=(x,y) ) where if the user specified a new size, then the non-annotated version of the image is shown. Instead, the user probably expects the same content to be shown, albeit at a different image size. More... over 12 years ago
Docstring comments now delimited with three double-quotes instead of single quotes, and more importantly, docstring parameters were fixed/updated in a couple places. More... over 12 years ago
Still fixing glitches caused by parameter rename. Changed demo_videoMontage() to use the vm.play() method for video playback instead of manually iterating through the frames and calling frame.show(). demo_imageMontage() now closes the cv window when the user hits a key on the window. More... over 12 years ago
WACV ipython notebook tutorials were updated with code interface changes and also to store in newer notebook format. More... over 12 years ago
Fixed a typo in a comment. Switched img.show() origin to be 'upper' for display in ipython notebook. Previously this was 'lower', but with the updated ipython notebook, the origin seems to be different. Fixed the import of ImageFont, which is a module of PIL. More... over 12 years ago
Added a stats model wrapper that allows the models to be pickled. More... over 12 years ago
Updated the progress bar so that it is displayed at most once per second. This should reduce I/O on stdout. More... over 12 years ago
Merged in a number of small changes and documentation updates as well as some enhancements to the video task manager. More... almost 13 years ago
Merge branch 'ver1.0' More... almost 13 years ago
Add runtime statistics to vtm graphs. More... almost 13 years ago
Fixed the profiling sorting key to time to work with older versions of python. More... almost 13 years ago
Added a profiler to the task manager. Updated documentation. More... almost 13 years ago