The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
1answer
22 views

change descriptor Size in SURF

I am trying to change the descriptor Size to be 128 instead of 64 in openCV does anybody know how can I change it here is a part of my code { SurfFeatureDetector detector( minHessian , 1 ...
3
votes
1answer
42 views

Can a python descriptor's __set__ ever get called with instance = None?

Imagine I've got this python descriptor: class MyDesc(object): def __get__(self, instance, instance_type=None): return 'Blue berries' def __set__(self, instance, value): print ...
0
votes
0answers
28 views

Optimal Resolution and Training Set for Feature Based Image Recognition

I am again curious. I am using Android NDK with OpenCV which allowed me to set up pretty robust environment to test out different binary algorithms such as BRIEF, BRISK, FREAK and ORB. My problem ...
8
votes
2answers
158 views

Classifiying a set of Images into Classes

I have the problem that I get a set of pictures and need to classify those. The thing is, i do not really have any knowledge of these images. So i plan on using as many descriptors as I can find and ...
2
votes
1answer
43 views

Python descriptors (__get__, __set__) on function parameters

Normally a descriptor is used on a class attribute like so: class Owner(object): attr = Attr() When getting Owner.attr, Attr.__get__(self, instance, owner) is called where self = Owner.attr, ...
4
votes
1answer
64 views

Confusions about Python Descriptors and <Descriptor HowTo Guide>

Recently I read the official HOW-TO about Python descriptors, which actually derives from an essay written by Raymond Hettinger long time ago. But after reading it for several times, I am still ...
0
votes
0answers
14 views

Is it possible to change the application descriptor file in air?

I would like to have an option in the application: gpu [on/off], but it can't be set in runtime (http://help.adobe.com/en_US/as3/mobile/WS901d38e593cd1bac-3d719af412b2b394529-8000.html). So, if there ...
0
votes
0answers
34 views

AT89C5131A USB device interfacing with pc

I have this development board with this MCU: AT89C5131A (http://www.atmel.com/Images/doc4136.pdf) I am trying to interface the device with the computer via the USB port Host:PC Device: AT89C5131A ...
0
votes
0answers
17 views

How to find location of descriptors in SIFT after using Eucliden Distance?

I have used SIFT on one image, then I used Euclidean Distance between descriptors to find similar ones, now I want to know what is the location of key-points after applying Euclidean Distance? I am ...
1
vote
1answer
32 views

Implementing bound method using descriptor

My question is related to bound method object, more specifically I am trying to imitate the same behavior that functions (which are essentially descriptors) present. Let me first put here my ...
0
votes
1answer
210 views

How to apply RANSAC on SURF, SIFT and ORB mathing results

I'm working on image matching, I did many tests on SURF,SIFT,ORB I'm wondering how can I apply RANSAC on the matches in openCV?
1
vote
1answer
47 views

Understanding USB descriptors in relation to the LUFA library

Can someone please explain how the LUFA library handles USB descriptors? I can't seem to trace the descriptors in any of the examples given back to the source of the library. How do they work? Are ...
4
votes
1answer
28 views

Is there a succint way to get all the desciptors defined in a python class?

Is there a simple method for finding all of the descriptors in a class type? If I have this code: class Descriptor(object): def __init__(self): self._name = '' def __get__(self, ...
0
votes
1answer
216 views

How to training HOG and use my HOGDescriptor?

I want to training data and use HOG algorithm to detect pedestrian. Now I can use defaultHog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector()); in opencv to detection, but the result is not ...
1
vote
0answers
43 views

Combining Sift descriptors of 5 images

I want to combine the descriptors of 5 images of the same object into a single descriptor file, so that I can recognize the object in any of the views of the reference images. I need to eliminate ...
0
votes
1answer
111 views

How to use k-d tree to find nearest neighbor?

I have applied SIFT on one image and got descriptors, then I have used Euclidean distance to find similar descriptors, now I want to use k-d tree to find which descriptors are more similar and ...
3
votes
2answers
77 views

Nesting descriptors/decorators in python

I'm having a hard time understanding what happens when I try to nest descriptors/decorators. I'm using python 2.7. For example, let's take the following simplified versions of property and ...
0
votes
0answers
157 views

Filter doesn't work for telerik Rad gridview it filters already filtered data when we filter second time

I wrote the server side filtering with the RIA service, the problem with this is when we apply filter for the first time it get results from all the pages for the second time it filters only on the ...
0
votes
0answers
22 views

Basic help to compute the hamming embedding

I want to generate the binary code as explained in this paper, Section 3 (page number where it is explained is 6 and steps). This technique is widely used in image retrieval.
0
votes
2answers
94 views

Encoding CV_32FC1 Mat data with base64

Hello I am trying to extract the data from a SURF descriptor, when I try this with an ORB descriptor it works. When I use the SURF one the program quits with a segmentation fault 11 on the base64 ...
0
votes
0answers
90 views

LOG-Polar histogram

I am implementing the shape from context algorithm. I had an issue to calculate the log-polar histogram. I didn't understand how to compute pixels in each bins. Someone have any code to help me? I am ...
0
votes
0answers
42 views

Getting Unwanted Colours in MPEG-7 Colour Layout Descriptor (CLD)

For my project, extracting colours in an image I wanted to use MPEG-7 Colour Layout Descriptor (CLD). Therefore I tried out CLD in img (rummager) tool. I got the following results. For input image I ...
0
votes
0answers
82 views

bad file descriptor when using write() function

I want to write a program that transfers simultaneously more files. At a point I received bad file descriptor error. What I've done? I have all the files in decreasing order by their size ( I open ...
2
votes
0answers
82 views

OpenCV: Issue in running same-code on Android vs OSx

I've wrote simple template-matching program using OpenCV, which produces surprisingly different results on Android and OSx. First, see what I'm doing: IplImage *image = cvLoadImage("test3a.png", ...
1
vote
1answer
55 views

Why descriptors (in Python) cannot be inserted (placed) in ALREADY initialized object?

In a process of coding I have been faced with the need to change behavior of object's property (but NOT a class property). And I found that already initialized object cannot be patched with ...
1
vote
2answers
246 views

At what stage the training exactly takes place in FlannBasedMatcher in OpenCV?

The following code is in C++ and I am using OpenCV for my experiment. Suppose I am using kd-tree (FlannBasedMatcher) in the following way: //these are inputs to the code snippet below. //They are ...
0
votes
0answers
98 views

Android - AssetFileDescriptor referring to wrong file

I am making a simple app with 3 radio buttons in a radio group. When the user selects one of the three, mediaplayer should play the corresponding song, yet all three buttons play the same song, even ...
1
vote
1answer
65 views

Examples of uses of descriptors in Python [closed]

I hope this question isn't too open ended. After reading http://python-history.blogspot.com/2010/06/inside-story-on-new-style-classes.html, I finally "get" descriptors in Python. But everything that ...
0
votes
1answer
209 views

How does the SiftDescriptorExtractor from OpenCV convert descriptor values?

I have a question about the last part of the SiftDescriptorExtractor job, I'm doing the following: SiftDescriptorExtractor extractor; Mat descriptors_object; extractor.compute( ...
0
votes
1answer
149 views

SIFT opencv2.3.1/2.4.3 both Giving very strange descriptors..like 7., 29., 39., 11., 2.3.1 Giving very strange descriptors

This is very simple code for SIFT,I am getting is very strange descriptors.Are they correct? descriptor: [ 0., 7., 29., 39., 11., 0., 0., 0., 32., 30., 39., 52., 16., 0., 1., 12., 38., ...
2
votes
1answer
309 views

Simple joystick hid report descriptor doesn't work

Using atmega8 chip and V-USB library I made a little bridge to connect my NES gamepad to USB. At first I used one of examples as my hid descriptor and so... I had my device correctly recognized in ...
0
votes
0answers
50 views

USB CV 2.0: The test Config descriptor test - Configured state failed

While running the USB 2.0 Command Verifier Chapter 9 test against a USB 1.1 device on Win 7 (x64), the test Config descriptor test - Configured state got failed. Rest all the test passed including ...
0
votes
0answers
153 views

tuning FlannBasedMatcher to be used with BOWImgDescriptorExtractor

I used once before flann library to accelerate keypoints matching from a query against a database of descriptors. That is, BOW technique for images classification. I tried to make a custom loop to ...
2
votes
1answer
59 views

How works pre-defined descriptors in functions?

Python functions have descriptors. I believe, in most cases I shouldn't use this directly, but I want to know how it is works? I tried a couple of manipulations with such objects:   def a(): ...
0
votes
0answers
44 views

Texture/Color Descriptors library as an alternative to MPEG-7

I'm currently trying to find a good library to extract descriptors from an image. I've downloaded the MPEG-7 library but like some people told me, it is badly coded and hard to use. I'm mainly ...
0
votes
1answer
85 views

Printing Keypoints Descriptors

I would print the descriptors of a feature keypoint. My method receive in input a vector of keypoint, and a mat descriptor for that point. Someone know a simply solution? Thanks
1
vote
1answer
386 views

C# read USB Descriptor

How can I read the USB Descriptor by C#? I found LibUSB.NET but I can't get USB devices like in examples: UsbRegDeviceList allDevices = UsbDevice.AllDevices; it returns count = 0
6
votes
2answers
552 views

Why does opencv FREAK extractor remove so many keypoints, specifically using ORB detector

I am using OpenCV 2.4.3 c++ interface to find matching points between two images. The first attempt was using SURF. The only problem is the consuming time, so I tried the new FREAK extractor. Using ...
3
votes
1answer
100 views

opencv descriptor removes keypoint

OpenCV 2.4 have detector and descriptor. I am creating keypoints for a lot of images and the problem is that the detector gets the key points but the descriptor sometimes removes them all. How to ...
0
votes
2answers
173 views

bytecode and ASM

Here is a reference about the INVOKESPECIAL bytecode instruction. If I have an AbstractInsnNode from the ASM framework containing the INVOKESPECIAL instruction,will my node include the method ...
0
votes
0answers
69 views

USB Descriptor for remote controller

I experimenting a remote controller. When I looking over the HID usage tables I saw two codes on android.com: http://source.android.com/tech/input/keyboard-devices.html For example: Power Down ...
0
votes
0answers
63 views

Maven: Nar assembly: Add moduleSet/moduleSets to the componentDescriptor?

I have two files that have some moduleSets that are the same. I want to be able to have a third file that will have that shared information. Example: fileA.xml <assembly ...
0
votes
0answers
67 views

Canny algorithm is enough for creating a feature descriptor image and giving for SVM?

i retrieve contours from images by using canny algorithm. it's enough to have a descriptor image and put in SVM and find similarities? Or i need necessarily other features like elongation, perimeter, ...
1
vote
0answers
73 views

Can a Python descriptor be a persistent iterable?

I'm working on a lightweight class wrapper for XML data, along the lines of http://packages.python.org/dexml/api/dexml.fields.html or https://gist.github.com/485977. The classes contain an elementTree ...
1
vote
1answer
79 views

assigning a variable upon binding a relationship in sqlalchemy

I have the following two classes: class user(Base): .... id=Column(Integer, primary_key=True) address=relationship('Address',backref='user') class Address(Base): ... ...
0
votes
2answers
165 views

Can I have different types of sockets on same port?

I have a weird query. I have learnt that socket is a combination of IP and Port. so, what is socket descriptor ? It`s just n integer what does it do ?? Second thing : Can I have to different Socket ...
-1
votes
1answer
166 views

How is defined the Freak descriptor pattern

I'm have to code my own implementation of FREAK descriptor for a homework. I actually read the original paper but there isn't any explanation of how the build the pattern used. In the OpenCV code is ...
0
votes
2answers
55 views

Descriptors as dict values

I have a dictionary-like object which store descriptors inside: class MyDict(object): def __init__(self): dict.__init__(self) def __getitem__(self, key): v = ...
0
votes
0answers
153 views

App store rejection reason - 8.5, title of your application may infringe on rights

An app I submitted just got rejected for the following reason. (Btw, I know the last thing the world needs is another Justin B app, but this is a re-skin of a really popular dating game I made with ...
3
votes
0answers
289 views

CoreBluetooth writeValue:forDescriptor: issue

My CoreBluetooth application need to enable the "indication bit" in Client Characteristic Configuration descriptors. Here is what I did: Start to scan Start to connect to the device Call ...

1 2 3 4