Tagged Questions
a Java-based public domain image processing program which is extensively used in scientific, in particular biological, image analysis.
3
votes
1answer
529 views
Overlay of multiple colors in ImageJ
I'm writing a little plugin for imageJ and I am drawing several regions as an overlay on the image.
I'm using this code:
ImagePlus imp = getImage();
Overlay ov = new Overlay();
for (int r=0; ...
3
votes
1answer
1k views
How can I do batch image processing with ImageJ in Java or clojure?
I want to use ImageJ to do some processing of several thousand images.
Is there a way to take any general imageJ plugin and apply it to hundreds of images automatically?
For example, say I want to ...
2
votes
1answer
112 views
R/ImageJ: Measuring shortest distance between points and curves
I have some experience with R as a statistics platform, but am inexperienced in image based maths. I have a series of photographs (tiff format, px/µm is known) with holes and irregular curves. I'd ...
2
votes
2answers
1k views
ImageJ Brightness & Contrast over a stack of images
I'm looking through a dataset set of images in ImageJ (a stack of .tif images, about 130 frames), and I have a problem with the dataset. It's a series of microscope images, with each frame being a ...
2
votes
1answer
845 views
Bandpass filter of FFT applied image. (Like ImageJ bandpass filter algorithm)
There is a good function that I need, which is implemented in Java program: ImageJ
I need to understand the algorithm used there.
The function has several parameters:
link text
And before using FFT ...
1
vote
3answers
58 views
video Image processing , how can i?
So Here is the situation.
I have a video that contain some objects that moves (contract to be more accurate),
I'm trying to write a code to calculate these movements in matter of
Frequency of ...
1
vote
1answer
70 views
Java - how to add a listener in ImageJ plugin?
I am writing a plugin for ImageJ that scans the pixels of a desired line for brightness over a series of frames in an AVI video. The data is displayed in 2D graph for the active video frame, pixels on ...
1
vote
1answer
85 views
How to debug a ImageJ plugin in Emacs by using JDEE environment?
I am currently developing a plugin for ImageJ, it's based on Java. I am not familiar with Java much since I used to be a C/C++ developer. It seems that debugging java program has a lot of differences ...
1
vote
1answer
157 views
Hiding ImageJ interface elements
I'm working on a project involving enlisting a large number of
relatively unskilled workers to do repetitive image analysis using
ImageJ. I've written a set of macros which walk them through the
...
0
votes
2answers
56 views
How to debug into dynamically-loaded jars in IntelliJ
I'm writing a plugin for ImageJ, with an Ant script to put all the needed files into a jar. ImageJ loads all the jars in a directory, and I run my plugin. However, when I try to debug my program, ...
0
votes
0answers
80 views
I'd like to have software find and count objects in specific zones of a photo [closed]
I'm looking for some help on a project as I have no experience in image processing. If anyone is looking for some work please contact me and we can go over the details but here are the basics. I'll ...
0
votes
1answer
95 views
I want to display a blurred image in imageJ. Why doesn't this work?
I'm very very new to imageJ but know a little Java.
Essentially I want to open a file from an OpenDialog display the image, then blur the image and display the resulting blurred image. My program ...
0
votes
0answers
113 views
Java: from RGB image stored in ShortBuffer to image file
I am currently trying to capture 16bit raw bayer images from a camera using libdc1394 through JNA and have everything setup to capture and decode the data into an RGB image stored in a ShortBuffer.
...
0
votes
0answers
223 views
How to deal with bitmap object in Android for image processing purpose
I have an image library which can reading images such like
ImagePlus img=IJ.openImage("image.bmp")
Now I got an bitmap object from Gallery, here is the code
bitmap = ...
0
votes
1answer
278 views
Get x and y coordinates into variables in macro ImageJ
I want to be able to place a point in an image using the point selection tool, then read the x and y coordinates to variable in a macro.
I've tried getSelectionCoordinates but that isn't working. I ...
0
votes
2answers
258 views
ImageJ jar file plugin shortcut creation
I have been working on a developmental biology project marking various nuclear markers along with a DAPI stain to determine percentage of marker expression. I have found that the ImageJ plugin ITCN ...
0
votes
1answer
160 views
execute String as code in ImageJ(java)
The code is in the String, example:
String str = "IJ.run(\"FJ Edges\", \"\");";
If str is executed, the corresponding contents will run.
0
votes
2answers
287 views
How to export pixel coordinates of point objects from an image (with imagej?)
I am on a project where I am interested in the spacing & distribution of
point objects in an microscope image.
So the image consists of darker, circular small dots from a rather complex ...
0
votes
2answers
594 views
Saving and accessing a lot of ROI polygons (IDL, ImageJ, Java?, XML?)
I need to save and re-load thousands of ROI polygons on a stack of images, actually a 30-frame-per second movie for 30+ minutes, so at least 54,000 frames. There can be multiple ROIs on a single ...
0
votes
2answers
315 views
Harris corner detecion problem
I have problem with Harris corner detection algorithm in ImageJ.
Some info about it: http://www.cim.mcgill.ca/~dparks/CornerDetector/harris.htm
I use Sobel filter for each block 3x3 to get ...