openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
ImageJ2
Settings
|
Report Duplicate
6
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
High Activity
Commits
: Listings
Analyzed
about 5 hours
ago. based on code collected
2 days
ago.
Jun 09, 2024 — Jun 09, 2025
Showing page 656 of 676
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
change name to not include "Test" so that Maven does not try to run its nonexistent tests
Barry DeZonia
More...
over 14 years ago
Initial version of imagej 2 project split.
Barry DeZonia
More...
over 14 years ago
Changed project name to 'ImageJ2'
Grant Harris
More...
over 14 years ago
Clarify project descriptions.
Curtis Rueden
More...
over 14 years ago
Ignore Eclipse metadata and build folder.
Curtis Rueden
More...
over 14 years ago
Add project for experimental ImageJ RCP work.
Curtis Rueden
More...
over 14 years ago
Ignore Eclipse metadata.
Curtis Rueden
More...
over 14 years ago
Inherit from latest base POM (require Java 1.6).
Curtis Rueden
More...
over 14 years ago
Move ImageJX back to trunk.
Curtis Rueden
More...
over 14 years ago
Initial code into sandbox
Grant Harris
More...
over 14 years ago
PluginDiscover - started to extract necessary functionality from ij.Menus to discover user plugins and jar plugins.
Grant Harris
More...
over 14 years ago
noticed that newer types not included in getBytesPerPixel()
Barry DeZonia
More...
over 14 years ago
- Startup dialog that chooses GUI version - IJ rearraged into functional groups (with code-folding). - IJ#convert() – changed name to convertRenamedCommands (Converts commands that have been renamed so macros using the old names continue to work.) - Added CentralLookup (uses Lookup API). - New KeyboardHandler class - Moved KeyListener out of IjxApplication into KeyboardHandler, then changed to addKeyListener(CentralLookup.getDefault().lookup(KeyboardHandler.class)); - Changed to Composition, rather than inheritance, for display components; AbstractImageCanvas contains a Component, for Swing, an ImagePanel that extends JPanel and overrides paint(). AbstractImageWindow contains a Container paint(graphics g) & update() moved to the display component; There may be some remaining issues re: repaint(), etc. ijx.gui.AbstractImageCanvas (and Window); The actual display panel: private Component panel; // Factory creates ImagePanelSwing or ImagePanelAWT… Actually, panel is a Component that implement IjxImageDisplayPanel#setDrawingDelegate(AbstractImageCanvas) which passes update, paint, and/or paintComponent back to paintMe(Graphics g) to draw rois, etc. - In Opener, imp = new CompositeImage(imp, CompositeImage.COMPOSITE); - NewImage – openImage() made public; call to it removed from constructor. - Accomodation of MDI - TopComponentMDI is a JFrame containing a JDesktop; Windows are InternalFrames; The window component is passed as a Container, so it has to be cast … For example, public void dispose() { if (Frame.class.isAssignableFrom(w.getClass())) { // is an awt.Frame or swing.JFrame ((Frame) w).dispose(); } if (w instanceof JInternalFrame) { // is a swing.JInternalFrame ((JInternalFrame) w).hide(); } - Menus - Call to static methods in Menus (static) are forwarded to the corresponding instance method in MenusAWT or MenusSwing; IjxMenus menus = CentralLookup.getDefault().lookup(IjxMenus.class); Check for type: if(menus instanceof MenusAWT) {} and if(menus instanceof MenusSwing) {} - Added e.printStackTrace() to Executor .run() for debugging with IDE
Grant Harris
More...
over 14 years ago
Basic skeleton for ImageJ2 project.
Curtis Rueden
More...
over 14 years ago
cosmetic changes
Barry DeZonia
More...
over 14 years ago
Removed unused imports.
Aivar Grislis
More...
over 14 years ago
* remove dependence of unary functions on imglib * do some speed optimization by creating more specific functions
Barry DeZonia
More...
over 14 years ago
* remove dependence of binary functions on imglib * do some speed optimization by creating more specific functions
Barry DeZonia
More...
over 14 years ago
minor refactoring
Barry DeZonia
More...
over 14 years ago
* add long and unsigned 12 bit support to ImageUtilsTest * remove empty test class GenericBlitterTest
Barry DeZonia
More...
over 14 years ago
improve unsigned 12 bit testing
Barry DeZonia
More...
over 14 years ago
improve long support in logical functions in imagej.process.function.*
Barry DeZonia
More...
over 14 years ago
integrate use of instance variable ijType
Barry DeZonia
More...
over 14 years ago
12 bit support in setImagePlanePixels()
Barry DeZonia
More...
over 14 years ago
final touches on 12 bit support
Barry DeZonia
More...
over 14 years ago
finish 12 bit support and related tests
Barry DeZonia
More...
over 14 years ago
add Unsigned12BitType support to Set/GetPlaneOperations. Also define test classes.
Barry DeZonia
More...
over 14 years ago
make ImgLibProcessor functions (various assign() and transform() methods) positionally aware
Barry DeZonia
More...
over 14 years ago
support for 12 bit images
Barry DeZonia
More...
over 14 years ago
support for 12 bit images
Barry DeZonia
More...
over 14 years ago
←
1
2
…
652
653
654
655
656
657
658
659
660
…
675
676
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree