-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Renderfacility #93
Open
dominikl
wants to merge
3
commits into
ome:master
Choose a base branch
from
dominikl:renderfacility
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Renderfacility #93
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
161 changes: 161 additions & 0 deletions
161
src/main/java/omero/gateway/facility/RenderFacility.java
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,161 @@ | ||
/* | ||
*------------------------------------------------------------------------------ | ||
* Copyright (C) 2024 University of Dundee. All rights reserved. | ||
* | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
*------------------------------------------------------------------------------ | ||
*/ | ||
package omero.gateway.facility; | ||
|
||
import omero.api.RenderingEnginePrx; | ||
import omero.gateway.Gateway; | ||
import omero.gateway.SecurityContext; | ||
import omero.gateway.exception.DSAccessException; | ||
import omero.gateway.exception.DSOutOfServiceException; | ||
import omero.gateway.model.ImageData; | ||
import omero.romio.PlaneDef; | ||
|
||
import java.awt.image.BufferedImage; | ||
|
||
public class RenderFacility extends Facility { | ||
/** | ||
* Creates a new instance | ||
* | ||
* @param gateway Reference to the {@link Gateway} | ||
*/ | ||
RenderFacility(Gateway gateway) { | ||
super(gateway); | ||
} | ||
|
||
/** | ||
* Get a RenderingEngine for an image. | ||
* | ||
* @param ctx The security context. | ||
* @param imageId The image ID | ||
* @param initDefaultSettings Flag to create default rendering settings if the | ||
* image doesn't have any for the current user. | ||
* @return A RenderingEngine for the image | ||
* @throws DSOutOfServiceException If the connection is broken, or not logged in | ||
* @throws DSAccessException If an error occurred while trying to retrieve data from OMERO | ||
* service. | ||
*/ | ||
public RenderingEnginePrx getRenderingEngine(SecurityContext ctx, long imageId, boolean initDefaultSettings) | ||
throws DSOutOfServiceException, DSAccessException { | ||
try { | ||
long pixelsId = gateway.getFacility(LoadFacility.class).getImage(ctx, imageId).getDefaultPixels().getId(); | ||
RenderingEnginePrx re = gateway.getRenderingService(ctx, pixelsId); | ||
if (!re.lookupRenderingDef(pixelsId)) { | ||
if (initDefaultSettings) { | ||
re.resetDefaultSettings(true); | ||
re.lookupRenderingDef(pixelsId); | ||
} else { | ||
throw new DSOutOfServiceException("Image doesn't have rendering settings."); | ||
} | ||
} | ||
re.load(); | ||
return re; | ||
} catch (Throwable t) { | ||
handleException(this, t, "Could not load RenderingEngine."); | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Checks if an image is an RGB(A) image. | ||
* | ||
* @param ctx The security context. | ||
* @param imageId The image ID | ||
* @return True if the image is RGB(A) | ||
* @throws DSOutOfServiceException If the connection is broken, or not logged in | ||
* @throws DSAccessException If an error occurred while trying to retrieve data from OMERO | ||
* service. | ||
*/ | ||
public boolean isRGB(SecurityContext ctx, long imageId) throws DSOutOfServiceException, DSAccessException { | ||
try { | ||
ImageData img = gateway.getFacility(LoadFacility.class).getImage(ctx, imageId); | ||
int nChannles = img.getDefaultPixels().getSizeC(); | ||
if (nChannles < 3 || nChannles > 4) | ||
return false; | ||
boolean r = false, g = false, b = false; | ||
RenderingEnginePrx re = getRenderingEngine(ctx, imageId, true); | ||
for (int i=0; i<nChannles; i++) { | ||
int[] ch = re.getRGBA(i); | ||
if (!r && ch[0] == 255 && ch[1] == 0 && ch[2] == 0) | ||
r = true; | ||
if (!g && ch[1] == 255 && ch[0] == 0 && ch[2] == 0) | ||
g = true; | ||
if (!b && ch[2] == 255 && ch[0] == 0 && ch[1] == 0) | ||
b = true; | ||
} | ||
return r && g && b; | ||
} catch (Throwable t) { | ||
handleException(this, t, "Could not check image."); | ||
} | ||
return false; | ||
} | ||
|
||
/** | ||
* Renders the selected z, t plane of the given image as RGB image. | ||
* @param ctx The security context. | ||
* @param imageId The image ID | ||
* @param z The z plane | ||
* @param t The time point | ||
* @return An RGB image ready to be displayed on screen. | ||
* @throws DSOutOfServiceException If the connection is broken, or not logged in | ||
* @throws DSAccessException If an error occurred while trying to retrieve data from OMERO | ||
* service. | ||
*/ | ||
public int[] renderPlane(SecurityContext ctx, long imageId, int z, int t) | ||
throws DSOutOfServiceException, DSAccessException { | ||
try { | ||
RenderingEnginePrx re = getRenderingEngine(ctx, imageId, true); | ||
PlaneDef plane = new PlaneDef(omeis.providers.re.data.PlaneDef.XY, 0, | ||
0, z, t, null, -1); | ||
return re.renderAsPackedInt(plane); | ||
} catch (Throwable e) { | ||
handleException(this, e, "Could not render plane."); | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Renders the selected z, t plane of the given image as BufferedImage. | ||
* @param ctx The security context. | ||
* @param imageId The image ID | ||
* @param z The z plane | ||
* @param t The time point | ||
* @return A BufferedImage ready to be displayed on screen. | ||
* @throws DSOutOfServiceException If the connection is broken, or not logged in | ||
* @throws DSAccessException If an error occurred while trying to retrieve data from OMERO | ||
* service. | ||
*/ | ||
public BufferedImage renderPlaneAsBufferedImage(SecurityContext ctx, long imageId, int z, int t) | ||
throws DSOutOfServiceException, DSAccessException { | ||
try { | ||
ImageData img = gateway.getFacility(LoadFacility.class).getImage(ctx, imageId); | ||
int[] pixels = renderPlane(ctx, imageId, 0, 0); | ||
int w = img.getDefaultPixels().getSizeX(); | ||
int h = img.getDefaultPixels().getSizeY(); | ||
BufferedImage image = new BufferedImage(w, h, | ||
BufferedImage.TYPE_INT_ARGB); | ||
image.setRGB(0, 0, w, h, pixels, 0, w); | ||
return image; | ||
} catch (Throwable e) { | ||
handleException(this, e, "Could not render plane."); | ||
} | ||
return null; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo in variable names