Questions tagged [openimaj]

Open Intelligent Multimedia Analysis toolkit for Java (OpenIMAJ)

https://sourceforge.net/p/openimaj/home/OpenIMAJ/

image analysis tools written purely in java 1.6. It includes tools for: basic image manipulation, feature extraction, cluster generation as well as tools to support parallelisation of these tasks using the Hadoop Map/Reduce framework

72 questions
1
vote
0 answers

eclipse-maven- OpenIMAJ

I want to index videos. So, first I have captured audio from a video using xuggle and openIMAJ libraries. Now, I have the audio in xuggle audio format. How do I convert the audio to text? I also need the text along with its corresponding…
Rohit ZP
  • 212
  • 2
  • 7
1
vote
1 answer

OpenImaj Tutorial and EigenFaces

I do not know if this is a relevant forum, but I have been following this tutorial here: http://www.openimaj.org/tutorial/eigenfaces.html For some reason it is not clear enough for me. There are some things I do not understand. It says at one…
Trt Trt
  • 5,330
  • 13
  • 53
  • 86
1
vote
0 answers

Using DoGSIFTFeatureComparator throw NullPointerException

I was attempting to use the DoGSIFTFeatureComparator with the FaceSimilarityEngine. Here's my code: import java.io.File; import java.io.IOException; import java.util.Map; import java.util.Map.Entry; import…
1
vote
0 answers

OpenImaj - ArithmeticException: / by zero in ResizeProcessor.resizeMaxArea(FImage, int)

I've submitted this as a potential bug on OpenImaj's github issues board, but wanted to reach out on SO and see if this has been encountered before (it's not an obscure class / method and I would be surprised if I am the first to come across this…
Brooks
  • 7,099
  • 6
  • 51
  • 82
1
vote
1 answer

OpenImaj AdaptiveLocalThresholdContrast null pointer exception

I'm trying to learn how to use OpenImaj's AdaptiveLocalThresholdContrast thresholder to process an image into two "segments" and then view the processed image. When I run the following code: AdaptiveLocalThresholdContrast thresholder = new…
jgloves
  • 719
  • 4
  • 14
1
vote
1 answer

OpenIMAJ and Image Read Exception

I'm following the OpenIMAJ tutorial, and when I run the following code: import java.io.IOException; import java.net.URL; import org.openimaj.image.ImageUtilities; import org.openimaj.image.MBFImage; import…
jgloves
  • 719
  • 4
  • 14
1
vote
1 answer

Face alignment using openImaj API libraries

I want to align several faces I have at my disposal here using openImaj. I want to read a jpg face photo, align it and finally save it as in jpg after alignment. Here is where I am stuck. See below public class FaceImageAlignment { /** …
Joseph
  • 789
  • 1
  • 9
  • 23
1
vote
1 answer

How to save the trained data in openimaj?

I'm working on a project which is about taking attendance of a class through the class video. I'm training the data when the program is running and it is taking a lot of time to train the data. Is there any way by which I can save the trained data…
1
vote
1 answer

Is there a concrete implementation of OCRProcessor in openimaj

I am trying to do text extraction using openimaj and I am using LiuSamarabanduTextExtractorBasic text extractor subclass. But this class needs an OCRProcessor implementation to do that actual OCR. Following is the javadoc public void…
Keshava
  • 702
  • 1
  • 7
  • 20
1
vote
1 answer

Extract frames from a video using OpenImaj in Java

for (MBFImage mbfImage : video) { DisplayUtilities.displayName(mbfImage.process(new CannyEdgeDetector()), "videoFrames"); I need to extract frames from a video and I'm using Java platform. I'm expecting to use the OpenIMAJ Library to do that. I…
akiaWT
  • 50
  • 1
  • 4
  • 13
1
vote
1 answer

OpenIMAJ not able to access video file

I am using OpenIMAJ to draw facial keypoints on a video but it is stuck at the first step itself. Here is the code I am trying to run:: Video video; video = new XuggleVideo("file://E:/AV/out2.flv");//XuggleVideo("file:"+fileName); …
Sudh
  • 1,265
  • 2
  • 19
  • 30
1
vote
0 answers

java.lang.IllegalArgumentException

I want to extract BOVW from an image using OpenImaj Library. I have met the error when I am implementing extractFeatureFromQuantised method of BagOfVisualWords class Exception in thread "main" java.lang.IllegalArgumentException: length must be…
nawara
  • 1,157
  • 3
  • 24
  • 49
1
vote
2 answers

use of BagOfVisualWord class in OpenImaj library

So in my case i should provide to computeQuantisedFeatures method two arguments , the second one is of type List>> i try to pass my imagekeypoints list which is of type …
nawara
  • 1,157
  • 3
  • 24
  • 49
0
votes
0 answers

Openimaj - Feature matching - Best way to insure good performence

I am using OpenImaj to extract features from images and then comparing them using DoGSIFTEngine. As far as I understand, here is the process: I extract keypoints feature from image and saving them. (file or database text) Extracted keypoints are in…
Med A
  • 1
0
votes
1 answer

How to read trained file to FaceRecognitionEngine object in OpenImaj

I am using OpenImaj for face recognition. Due to the long time it takes train the data at runtime, I am saving the already trained data to system to use it later. I am using the below code to save the trained data IOUtils.writeToFile(faceEngine, new…
Emperor
  • 81
  • 1
  • 9