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
0
votes
1 answer

Using OpenIMAJ, which FaceAligner is suitable for constructing images that are used for eigenface?

In order to calculate eigenfaces, Which FaceAligner is more suitable for constructing face images that better preserves the facial features? The face images were not taken specifically for calculating eigenfaces, the face images are detected from…
0
votes
3 answers

OpenIMAJ Jar Files

I am new to openIMAJ and I want to process some pictures using it. There are a lot of tutorial available but they all tell using Maven. Does anyone know from where I can download the jar files of openIMAJ to directly use in my Java project? Thanks!
Tauqeer Ahmad
  • 43
  • 1
  • 11
0
votes
1 answer

Why can't sbt resolve OpenIMAJ dependency?

Here is the build.sbt I use in a project: name := "FaceReg" version := "1.0" libraryDependencies += "org.openimaj" % "image-processing" % "1.2.1" While updateing the project, sbt reports UNRESOLVED DEPENDENCIES: [info] Resolving…
Nagarjuna Pamu
  • 14,737
  • 3
  • 22
  • 40
0
votes
1 answer

rfaces.get(0).getSecondObject() in OpenIMAJ face recognition always returns null

import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import javax.imageio.ImageIO; import…
Nagarjuna Pamu
  • 14,737
  • 3
  • 22
  • 40
0
votes
1 answer

Setting up openIMAJ in Intellij IDEA

I'a having trouble setting up openIMAJ in Intellij Idea. I've checked out the library from svn and added it to the project via File->Project structure->Libraries. The code completion in IDEA kinda works (completes import statements) but when I try…
0
votes
1 answer

mulitple cameras at the same time openimaj

I am currently working on an image processing project using Java OpenIMAJ library. I need to grab frames from multiple cameras (using Logitech C270 USB Webcams right now) to perform manipulations on the grabbed frames. I have hit a snag right now. I…
Devanand
  • 3
  • 1
0
votes
0 answers

Identifying differences between two images using OpenIMAJ

I am working on an image processing project. I am using two images taken from the same webcam from the same stationary position. one is an image of a surface, (like my table) another is of the same surface, but with an object placed in the field of…
0
votes
1 answer

Can I capture video from an IP camera using OpenIMAJ?

Using the OpenIMAJ library can I capture and record video from an IP camera and also show live video in a web application?
rpandidurai
  • 307
  • 1
  • 5
  • 13
0
votes
2 answers

How to create pom.xml for openimaj?

I am trying to run "mvn install" as described here: http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20From%20Source/ I have downloaded the svn of openimaj and the pom.xml files is in: C:\Users\[user]\openimaj When I try to run "mvn install" it…
anon
-1
votes
1 answer

OutOfMemoryError after Facededetion

package facerec; import java.awt.event.KeyAdapter; import java.awt.event.KeyEvent; import java.util.List; import javax.swing.JOptionPane; import javax.swing.SwingUtilities; import org.openimaj.feature.DoubleFVComparison; import…
Simon
  • 13
  • 1
-1
votes
1 answer

openIMAJ face detection - uncaught IOException

I have this method(simplified) for detecting faces(count) on images(URLs): private int processImage(String urlString) { InputStream is = null; URLConnection resource; int facesCount = 0; try { resource = new…
GuirNab
  • 193
  • 3
  • 7
-1
votes
1 answer

Openimaj: SuzukiContourProcessor does not return all holes or even crashes

I am new to openimaj and i cannot find any tutorials with detailed informations about it. I only found the tutorial-pdf from openimaj.org. So i tried myself starting with contours. But the SuzukiContourProcessor does not work for me. Here's my…
chris
  • 1,685
  • 3
  • 18
  • 28
1 2 3 4
5