0
votes
0answers
14 views
Check OpenCV manager
From service don't work checked OpenCV Manager. I try make own void. But result always false, even after the OpenCv Manager. I think that "org.opencv.engine.BIND" dont right. in google I don't found ...
0
votes
1answer
29 views
Convert IplImage to Mat in javacv
I need help to convert my IplImage into Mat. I want to compute HOGDescriptor for my image and then classify it with SVM, but "compute" requires Mat type.
Can you give some example of how to convert ...
0
votes
1answer
28 views
NEXUS 7 “It seems that you device does not support camera”
I am doing an application based in OpenCV, but this week I change my developer's device, I change my "BQ Edison" for a "Nexus 7".
Now, when I run my app, appear a message "It seems that you device ...
2
votes
3answers
51 views
OpenCv crashes when calling from android activity
i have this code in which i use openCV to launch a camera. The code is given below. If this class "MainActivity" is used as the main class then every thing works fine but if i use it from another ...
1
vote
1answer
50 views
Equivalent method for imshow in opencv Java build
sorry if I am asking a silly question, I am trying to learn openCV using Java build. In opencv samples i found there is method imshow in c++ or showImage in python, but i search in opencv Java API, i ...
-1
votes
1answer
52 views
Whats behind the Times now's android alive application? [closed]
Please don't delete this question because of no code inside this question?
I want to develop an application very similar to times alive, which one enables users to scan images and presents a related ...
5
votes
2answers
137 views
+250
Compiling Android JNI for OpenCV on Mac OSX
Bear with me - this is a long description, but I wanted to include all details. I'm trying use android NDK and JNI for building OpenCV Android apps.
I'm following this tutorial to get everything ...
-4
votes
0answers
58 views
markerless augmented reality using opencv and java
i want to develop a Marker-less Augmented Reality application, it is a desktop application, not mobile. the application will detect my face and then put a 2d mask over it. i want to using opencv and ...
-3
votes
1answer
26 views
OpenCV CascadeClassifier error
i'm trying to do face detection through a webcam, but i got an error, cascadeclassifier error.
After do some testing, i found this line of code generate the error
CascadeClassifier face_cascade = ...
1
vote
1answer
37 views
How to use OpenCV with IntelliJ IDEA 12
I'm trying to use IntelliJ IDEA 12 to develop OpenCV 2.4.5 applications in Java. I've followed the instructions for Eclipse from the website here.
The problem I am running into is that I can add the ...
0
votes
2answers
44 views
Best way of matching FREAK descriptors?
So I'm making an application with the use of FAST detectors and FREAK descriptors. When it comes to the matching I wanted to use the BRUTEFORCE_HAMMING matching, but I don't get the expected results ...
1
vote
2answers
76 views
Calculate percentage similarity of two images using OpenCV
I am able to find matching features using bewlow shown code. I want to calculate percentage similarity between two images. I am new to OpenCV. Any kind of help will be highly appreciated.
...
-1
votes
1answer
70 views
Bruteforce and matching gives reverse/wrong results
I've been making an application where 2 images can be compared (2 pictures on my smartphone). There I use a FAST detector and FREAK descriptor on a limited amount of keypoints (i filtered out the 300 ...
0
votes
0answers
19 views
How to insert multiple contours in a CvSeq to use h_next?
I have all contours of a photo, but I want only those selected. The contours are in a CvSeq, in which I move with h_next. I need insert in other CvSeq the contours chosen and continue moving me with ...
2
votes
1answer
82 views
Java real time facial recognition library [closed]
I'm eagerly on the search for a library (that is Java based or has Java bindings), that can perform real time facial recognition:
It should be able to run at 30 frames per second (25 FPS is also ...
1
vote
1answer
63 views
Does Bruteforce matching work with FREAK descriptors?
I've been making an application on the smartphone for Android, where 2 images can be compared (one on the SD card, one from the camera). There I use a FREAK descriptor on a limited amount of keypoints ...
2
votes
1answer
26 views
Convert List<KeyPoint> to MatofKeypoints
So I am working on image recognition with Java and OpenCV, but I am stuck trying to convert the Arraylist back into a MatOfKeyPoint.
List<KeyPoint> newList = new ...
1
vote
2answers
75 views
adding openCV to java buildpath in eclipse
I have problems adding openCV to the buildpath of my eclipse-project. I have followed the instructions in the tutorial on this site: ...
0
votes
0answers
27 views
How could I recognize a specific image within a photo that contains that image? [closed]
For a hackathon, I'm thinking of using a phone to take a photo of a one page document (photos and text), and then having a server component figure out which out of the N (let's say smaller than 100 ...
0
votes
3answers
39 views
How to keep the best 500 Keypoints from an Arraylist in Java/Android?
I am writing code for Android to limit the number of Keypoints I have from the FAST detector (now i get about 9000 keypoints). I want to keep the best 500 Keypoints, based on the Response. I made a ...
0
votes
1answer
77 views
Trying to make java application (Executable Jar) that uses OpenCV portable. Getting unsatisfied link error
I have made a application to grab video from a webcam and detect motion using OpenCV and JavaCV. I am trying to export as an executable jar using eclipse. The program runs fine in eclipse as does the ...
0
votes
0answers
40 views
Android OpenCV application flow: do image processing on button push
I have an OpenCV activity implementing CvCameraViewListener2 with the following:
@Override
public Mat onCameraFrame(CvCameraViewFrame inputFrame) {
//Mat ret = ...
0
votes
0answers
37 views
Android OpenCV descriptorMatcher error
I'm having a really hard time getting the descriptorMatcher to work. I have a template image that I want to look for in every frame of a video feed. Here is the relevant code:
//the following is done ...
0
votes
0answers
26 views
Android OpenCV - using PCAProject
I have trained a PCA system by loading images of a 3D model from different angles, obtaining a mean matrix and eigenvectors matrix.
Now given an input frame from a video feed, Mat inputImage, I want ...
1
vote
0answers
25 views
input Mat used in goodFeatureToTrack
I'm trying to detect feature in face with goodFeatureToTrack function in java. It always crashes there. This is my code:
Mat eyeRegion = detectCascade();//i used here cascadeclassifier to detect eye ...
-5
votes
0answers
49 views
Measuring the size of the object with opencv and Java [closed]
my task is: given an object with some angle to a horizon on a photo. I have to measure the real size of this object.
I have the distance to the object and the angle to a horizon of this object.
Could ...
1
vote
1answer
86 views
Android OpenCV: drawing matches with feature2d
I can't get this function to work. Basically I am doing feature detection and matching with a reference image. I want to overlay the matched features on top of my input image. Here is my code:
public ...
0
votes
1answer
49 views
Android OpenCV using MatOfKeyPoint and feature2d detect
I'm having trouble using the OpenCV Java library properly, the following code is crashing:
MatOfKeyPoint keypoints = new MatOfKeyPoint();
this.myFeatures.detect(inputImage, keypoints);
I thought ...
1
vote
1answer
68 views
I can't initialize openCV data types although i have imported the jar and dll files needed
Im using opencv 2.4.4 and I want to detect and track face with java. I found the example as follow in internet.
example
import hypermedia.video.*;
import java.awt.Rectangle;
float last = millis();
...
1
vote
3answers
269 views
OpenCV as JBoss-as global module
Problem presentation
I try to install OpenCV as global module of a JBoss-as instance. The versions are:
JBoss-as: 7.1.1 Final
OpenCV: 2.4.5 (compiled with Java support)
I started from a fresh ...
0
votes
1answer
41 views
Referencing specific classes in an external library with SWIG
Currently, I'm trying to wrap my custom C++ library for use in Java (and ultimately Android). My library uses the OpenCV Mat and Size classes as input. Below, is an example SWIG interface of what I ...
3
votes
1answer
74 views
Tuitorials on OpenCV 2.4.3 on Android phones
I would appreciate if anyone could show me where i can get good tutorials or documentations for developing Open Cv 2.4.3 for Android.I already gone through the one on the Open Cv site and its more of ...
1
vote
0answers
88 views
How to remove class file editor in the debug perspective in eclipse indigo
I'm trying to run a eye detection app in eclipse. I know that it works on my android device.
However when i tried to set System.out.println on suitable places, it skipped them entirely and launched ...
0
votes
1answer
199 views
Image processing using java and opencv
I have to do a project of image processing using java and opencv libraries. I would know where can I find useful information because the most i've found is for using opencv with C not with java. I ...
0
votes
0answers
52 views
How to Thread this application
I am using Marvin framework and Java CV (OpenCV),
Objective : - To detect Green region in video and make a rectangle over that area.
Solution : - Using Marvin Framework , i have been able to detect ...
0
votes
1answer
117 views
Exception in thread “main” java.lang.RuntimeException: Stub , viewed all thread but of no use
This is a face recognition class which read the faces from data folder but when i run this code i came up with the error given below. All the Related Threads couldn't solve my problem. any help will ...
2
votes
1answer
88 views
Using method convertTo in opencv java wrapper
any body please help me to understand how to use method convertTo in JavaCV. i was trying and searching a lot of time and not find the proper answer. so my problem is, when i try to convert type of ...
4
votes
1answer
176 views
Pass an array of Mats to native code
The native function I want to use requires an array of 7 Mats:
static int nativeCode(cv::Mat &inputImg, cv::Mat bufImgs[7]);
In jni_part I have:
Mat& mRgba = *(Mat*)inRgba;
Mat& ...
0
votes
0answers
45 views
Generate a random matrix using JavaCV
How do you generate a matrix of some size using JavaCV? I'd like to make some random projection matrix for image transformation.
I tried something pretty crazy! I'm pretty sure there's an easier way ...
-1
votes
0answers
185 views
Opencv findContour using Otsu Method giving different Threshold value each time
I am trying to get the Otsu Method to get the threshold value and then use findContour to get all of the clumping circles in the image. The problem is that when i run through my code it would get ...
0
votes
0answers
49 views
JavaCV to Android
Hello
I have developed a project on JavaCV, but i want to port it to Android OpenCV.
Is it possible to use JavaCV project for Android OpenCV?
If yes then, how can i relate my xml files in android ...
0
votes
2answers
101 views
Open2.4.5 Android Crashes when I call Mat
This issue is been driving me crazy for days now. I'm trying to use opencv android the latest package. Everything is inserted and I don't have any errors, until I run the project on android and that's ...
2
votes
1answer
53 views
filter2d in opencv4android
I'm trying to write a simple code in opencv4android using filter2d.
but after calling the function 'filter2d', in the destination mat, i get zeros (it didn't run the function correctly).
the result ...
0
votes
0answers
113 views
Cannot import org.opencv[…] in eclipse from Nvidia Tegra Developer Pack
I have downloaded https://developer.nvidia.com/tegra-android-development-pack which has OpenCV for Tegra 2.4.3.2 included. How to import opencV into the project.
I have installed it and then run the ...
0
votes
0answers
162 views
OpenCV Crop Image using four points
I am trying to crop an image then be able to display the image. I have four points in two arrays and it would make a rectangle shape. I have a code that i think would do the job but it is giving an ...
0
votes
1answer
48 views
How to get an array or any collection of pixels from video in real time using opencv (Android)
Exacly as in the subject I would like to analyse video from android phone using opencv. How to get the access to the pixels(rgb or similar) while recording a video(there can be slight lag)?
I have ...
0
votes
1answer
60 views
read images from my external storage file into native c ( openCV) Android
I need to pass some data from java to OpenCV, I tried saving it into the external storage files, I know how to read it in java, but I don't know how to read it in opencv (native c)
so I guess the ...
0
votes
1answer
103 views
OpenCV on Android converting to grayscale not working
I am trying to convert some OpenCV Mat to grayscale for Contours detection algorithms. For some reason the image after convertion is all black. Mine code (b is Android Bitmap):
Mat tmp = new Mat ...
0
votes
0answers
36 views
GUI for Live feed
I have written a simple C++ code which uses OpenCV to detect objects (basically human faces). Now, I want a window and inside that a portion of it as a panel probably which will show the live feed of ...
2
votes
2answers
134 views
JavaCV/OpenCV: cvLoadImage not working
I installed the JavaCV/OpenCV libraries, and I'm having a problem with the basic example code.
According to several examples that I have looked at, this code should load an image:
IplImage image = ...
