-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from timholy/teh/gtkr
Rewrite ImageView based on GtkReactive
- Loading branch information
Showing
32 changed files
with
1,554 additions
and
1,625 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# New in 0.5 | ||
|
||
ImageView has been rewritten from scratch. Effort was made to maintain | ||
backward compatibility where possible. | ||
|
||
## Breaking changes | ||
|
||
- The return value of `imshow` has changed; it is now a `Dict` that | ||
stores Gtk widgets, Reactive signals, etc. | ||
|
||
## Major features | ||
|
||
- This package now uses Gtk. Rendering is considerably faster in some | ||
cases, and the package is faster to load due to precompilation. | ||
|
||
- Navigation and zoom region are controlled by GtkReactive/Reactive | ||
signals, allowing one to more easily extract this information for | ||
reuse elsewhere. Examples are shown in the README. | ||
|
||
- A new contrast GUI is independent of any plotting package, leading | ||
to faster loading and faster time-to-first-plot. | ||
|
||
- One can now display objects that are not subtypes of | ||
`AbstractArray`. See `test/cone.jl` for a demonstration. | ||
|
||
## Deprecations | ||
|
||
- `canvasgrid` now returns more arguments; a deprecation warning | ||
encourages transitioning to the new syntax | ||
|
||
- `pixelspacing` is deprecated as a keyword (use an `AxisArray` instead) | ||
|
||
- The `xy` keyword has become `axes`, and it takes dimension integers | ||
or Symbols (if the image is an AxisArray) |
Oops, something went wrong.