The instructions for installing OMERO on Mac OS X using Homebrew are available in the OMERO documentation.
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
Buildfile: /Users/sebastien/code/openmicroscopy/build.xml | |
check-ivy: | |
Created dir: /Users/sebastien/code/openmicroscopy/target | |
:: Ivy 2.1.0 - 20090925235825 :: http://ant.apache.org/ivy/ :: | |
:: loading settings :: file = /Users/sebastien/code/openmicroscopy/etc/ivysettings.xml | |
build-scons: | |
Expanding: /Users/sebastien/code/openmicroscopy/lib/repository/scons-local-1.2.0.d20090223.zip into /Users/sebastien/code/openmicroscopy/target/scons | |
Entering /Users/sebastien/code/openmicroscopy/components/dsl... |
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
omes-MacBook-Pro-15:openmicroscopy ome$ java -version | |
Error occurred during initialization of VM | |
Unable to load native library: libjava.jnilib | |
omes-MacBook-Pro-15:openmicroscopy ome$ unset DYLD_LIBRARY_PATH | |
omes-MacBook-Pro-15:openmicroscopy ome$ java -version | |
java version "1.6.0_31" | |
Java(TM) SE Runtime Environment (build 1.6.0_31-b04-415-10M3646) | |
Java HotSpot(TM) Client VM (build 20.6-b01-415, mixed mode) |
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
%% Create session | |
loadOmero | |
client = omero.client('localhost', 4064); | |
session = client.createSession('sebastien', 'omero'); | |
% Create id list | |
ids = java.util.ArrayList(); | |
ids.add(java.lang.Long(326)); | |
ids.add(java.lang.Long(327)); |
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
import omero | |
from omero.gateway import BlitzGateway | |
conn = BlitzGateway('sebastien', 'omero', port=4064, host='localhost') | |
conn.connect() | |
imageId = [326,327] | |
for i in imageId: | |
# Get the image | |
print 'Image ' + str(i) | |
image = conn.getObject("Image", i) |
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
#! /usr/local/bin/python | |
import omero | |
from omero.gateway import BlitzGateway | |
import omero.scripts | |
def runTests(): | |
# List users to test | |
users = ["sebastien","test"] | |
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
%% Compare bfsave with imwrite | |
bfCheckJavaPath() | |
path = '/tmp/test.ome.tiff'; | |
N = [10 20 50 100 200 500]; | |
T = [10 20 50 100 200 500]; | |
r= zeros(numel(N),numel(T)); | |
for i = 1:numel(N) | |
for j = 1:numel(T) | |
I = uint8(rand(N(i),N(i),1,1,T(j))*(2^8-1)); |
See http://www.openmicroscopy.org/site/support/omero5/sysadmins/unix/server-install-homebrew.html for instructions on how to install OMERO via Homebrew
This gist has migrated to https://github.com/openmicroscopy/ome-release
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 gist is being merged into the OME mainline. Please see: | |
https://github.com/snoopycrimecop/snoopycrimecop/blob/master |
OlderNewer