Feature detection is a process in computer vision that aims to find visual features within the image with particular desirable properties. Detected features can be points, image regions or continuous curves in the image. Interesting properties can include invariance to noise, perspective ...
2
votes
1answer
19 views
JS feature detection to detect the usage of -webkit-calc over calc
So I'm quite aware that in general, one should use feature detection in JS vs. browser detection. A good example of this being pushed is jQuery 1.9's drop of $.browser.
In addition, in every article ...
4
votes
1answer
31 views
How can I feature test a browser's ability to use video as a canvas source
As some of you might know it's not possible to use HTML5 video as an image source for canvas elements on mobile devices (the video will be opened in an external player instead of the browser). I need ...
0
votes
0answers
24 views
Feature detection for CSS3 3d support (Opera Issues)
I'm trying to apply different styles for browsers that don't support CSS3 3d transforms. But for some reason, when I preview the page in opera it applies the styles for a 3D browser, even though it ...
0
votes
0answers
15 views
Detect “shake” compatibility in mobile browser
I'm using this wonderful jQuery shake plugin by GerManson. Works like a charm!
However, I want to show an icon indicating that a shaking functionality is available on the page. Can/how do I use this ...
2
votes
2answers
57 views
Feature flags best practice: condition inside or outside of a method?
We're using feature flags in order to enable/disable certain features in our system.
I had a discussion with my colleague over what's the standard way of adding feature flags to the code itself:
...
1
vote
2answers
64 views
Access violation reading in FeatureDetector OpenCV 2.4.5
I tried the sample codes about matching to many images in OpenCV 2.4.5 and I modified that code. I found the error code:
Unhandled exception at 0x585a7090 in testing.exe:
0xC0000005: Access violation ...
0
votes
0answers
14 views
Feature Detect proper handling of Content-Disposition: attachment?
There is a known issue where ios Safari will ignore Content-Disposition: attachment headers. This is a fairly bit problem when trying to trigger downloads from a single page application (using the ...
-4
votes
0answers
32 views
What is the best API for Human Anatomy Detection in images? [closed]
I am looking to recognize certain parts of the human anatomy in a relatively clean image environment. I have looked into openCV & Haar Object Detection as they seem to be very viable options, ...
0
votes
0answers
42 views
Haar Object Detection patent issue
I would like to know if all of the Haar Object Detection Api (Python) in OpenCV patent protected? As I understand it SIFT, SURF, & Haar Cascade are patented, but I am not really clear as to what ...
0
votes
1answer
28 views
Font-face check from Modernizr
Modernizr detects CSS3 font-face support.
http://modernizr.com/download/
How do I get only the source of the font-face test outside the modernizr?
There's a file in repo related to this test, but ...
1
vote
2answers
70 views
OpenCV: howto use mask parameter for feature point detection (SURF)
I want to limit a SurfFeatureDetector to a set of regions (mask). For a test I define only a single mask:
Mat srcImage; //RGB source image
Mat mask = Mat::zeros(srcImage.size(), srcImage.type());
Mat ...
2
votes
1answer
46 views
How to identify changes in two images of same object
I have two images which I know represent the exact same object. In the picture below, they are referred as Reference and Match.
The image Match can undergo the following transformations compared ...
0
votes
0answers
27 views
What feature detection code can I replace this with?
I wonder if anyone can help with something. I work on a website which contains a form. When the form is submitted, we display an overlay which contains an animated gif - a 'please wait' type thing.
...
0
votes
0answers
23 views
Run my own video on BoofCv StereoVisual Odometry
I want to run my own video on the boofCv code existed on visula Odometry implemented based on boofCv library
I downloaded the code, change the motion jpeg files ( left and right ) and by using ant ...
3
votes
2answers
49 views
How to Handle Occlusion and Fragmentation
I am trying to implement a people counting system using computer vision for uni project. Currently, my method is:
Background subtraction using MOG2
Morphological filter to remove noise
Track blob
...
1
vote
1answer
82 views
correlation of a 3d matrix with a vector in matlab
I have a KxLxM matrix A which is an image with a feature vector, length M, for each pixel location.
I have also have a feature vector v, length M. At each pixel location of image A i want to calculate ...
0
votes
0answers
9 views
Detect if browser supports formatting in console
I am attempting to write to the console, in Chrome and Firefox, i can console.whatever "%c message","font-weight:bold" to get bold in the console. IE does not have the ability to do this. I am ...
1
vote
3answers
77 views
Downsides of using the navigator object / user-agent sniffing for detecting IE versions
With the release of jQuery 2.0, there has been a lot of talk about how to identify if the user is using an IE version which is supporting it or not (jQuery 2.0 only supports IE9 and later).
My ...
0
votes
0answers
29 views
How to use Phase demodulation using Gabor 2d filters?
I am using 2d Gabor filters as my feature encoding algorithm. I have refered various papers, in majority of the paper they get 2048 bits after applying the algorithm. But if i apply 2d algorithm i ll ...
0
votes
1answer
125 views
OpenCV Motion Tracking Using Feature Detector
I was wondering If I can detect motion more reliably by using Feature Detectors (like SURF, ORB, etc...)... Will it work for human beings in a video stream?
2
votes
1answer
133 views
How to detect corner with specific angle degree
I have an image with a equilateral triangle and a rectangle:
And I want to detect 3 corner of the triangle only. I follow the OpenCV Harris corner detector tutorial I see that all the corner-point of ...
0
votes
0answers
18 views
Dectecting how HTML5 video will be displayed
Is it possible to do a feature test on whether or not the browsing device will automatically display a video in fullscreen mode on play?
i.e. Whether the browser is a desktop that will play the video ...
1
vote
1answer
37 views
Feature detection for the vector-effect property in SVG?
SVG Tiny 1.2 defines a property called vector-effect.
<path vector-effect="non-scaling-stroke" stroke-width="2"></path>
With the above path, the stroke width will always be 2 pixels, ...
7
votes
1answer
99 views
FeatureDetector vs. FeatureFinder in OpenCV
I'm trying to understand the difference between the FeatureDetector class and the FeatureFinder class. I've seen panorama examples written in OpenCV use both of these classes and it appears to be ...
0
votes
0answers
91 views
Check if keyboard focus can be set by JavaScript?
On iOS 6.0 Safari, it is not possible to assign (hardware, on-screen) keyboard focus to an input element with JavaScript, except perhaps when the current script is running in response to a user ...
7
votes
1answer
127 views
feature detect incorrect overflow with border-radius
As we know does overflow: hidden in combination with border-radius not work in all browser as it should — namely Safari and Opera have problems cutting the rounded corners off contained images.
...
0
votes
1answer
61 views
How to detect rotated and quite deformed object
I have an A4 paper with some black stroked rectangle. I scan the image and try to use some basic OpenCV's function like template matching but I see the image I recive sometime rotated when I put it to ...
0
votes
0answers
35 views
Using FLANN with separate *double arrays
I'm working on a piece of code that performs feature matching with 128 dimensional descriptors.
All descriptors for an image are stored in a std::vector, where InterestPoint contains a member *double ...
0
votes
1answer
123 views
ORB Feature Detector
I'm working on a Marker less augmented reality project with Open CV. Currently i'm using ORB to detector features and augment 3D Objects. So far the models are augmented well but the augmentation is ...
1
vote
1answer
128 views
BoW in OpenCV using precomputed features
I need to do BOW (bag of words) but I only have the described keypoints of the images.
For the moment, I have obtained the vocabulary using:
cv::BOWKMeansTrainer bowtrainerCN(numCenters); //num ...
0
votes
0answers
36 views
Detect if Firefox has the ability render transform:rotate3d properly
I know detecting hardware acceleration support in browser isn't easy (see this SO), but I would like to be able to switch off my transform:rotate3d property in this particular scenario:
Recent ...
0
votes
1answer
38 views
Appropriateness of an artificial neural network in pose estimation
I am working on a project for uni which requires markerless relative pose estimation. To do this I take two images and match n features in certain locations of the picture. From these points I can ...
2
votes
1answer
235 views
cvSnakeImage() OpenCV API example/documentation
Can anyone refer me any tutorial/documentation on how to use cvSnakeImage().
I have refered this link but example has not been provided.
I want to use this cvSnakeImage() to perfrom Active contour ...
0
votes
1answer
38 views
If I want to make my computer be able to 'see' itself, would examining the clipboard after a call to PrtSc be a wise method?
I have become increasingly interested in artifical intelligence, but I am still learning the basics of the windows API. My current goal is to create a c++ process which calls SendInput to simulate ...
0
votes
1answer
100 views
Feature extraction for images of text
What is a good feature extraction algorithm for images consisting largely of text (possibly rotated and scaled)?
An example use-case would be that I scan a document, extract features from it, and ...
0
votes
0answers
22 views
Serverside mp3 in <audio> support detection?
Is there a way to detect is users browser/device has support for mp3 as src in html5 <audio> tag? I'm looking for solutions in php maybe .htaccess , basically I want to redirect users without ...
0
votes
0answers
90 views
iOS - OpenCV 2.4.3 - Find whether the entire object is found in the scene
I'm trying to figure out how to find whether a sample image can be found in a scene image in its entirety. That is, I want to be able to get a positive answer when the entire sample image can be seen ...
1
vote
0answers
121 views
Saving ORB feature vectors using OpenCV4Android (java API)
I have a training set of images, for each of which I've detected and computed their feature vectors (using ORB feature descriptors and extractors. The questions is: since I need to save those features ...
0
votes
1answer
59 views
How to detect automatic hyphenation support?
I would like to use hyphenation polyfill (e. g. hypher.js or hyphenator.js) only when CSS hyphenation not available, i. e.:
if (!Modernizr.hyphenation) {
$('p').hyphenate('en-us')
}
But there is ...
0
votes
1answer
92 views
how to calcualte Binary histogram of an image?
suppose a color image of size 256x256, how can I calculate the bianry histogram of the image? also which is the data structure suited to store the histogram if I want to cluster similar images?
...
2
votes
1answer
121 views
How can I consistently detect browser support for HTML5 search inputs?
I have a search input on an HTML 5 page that I need to work in multiple browsers:
<input type="search" placeholder="type here..." />
I detect whether the browser supports search by seeing ...
0
votes
0answers
129 views
The Harris & Stephens corner detection algorithm: determinant always 0 (zero)
As part of my Bachelor-Thesis, I'm trying to implement a corner detector with the Harris and Stephens algorithm:
A combined Corner and Edge Detector
I do calculate:
The x- and y- deviations with ...
8
votes
1answer
168 views
Detect browser support for inter-window communication
I have some javascript that relies on the use of window.open and inter-window communication (where the new 'child' window communicates success / failure to the 'parent' window).
This (inter-window ...
1
vote
1answer
19 views
Is it possible to feature test for dataTransfer.files support?
Modernizr provides a way to detect if browser has support for drag and drop, but it fails to adequately tell if browser supports drag and drop for files. Is it possible to feature test this? Or it's ...
0
votes
0answers
213 views
How to sort blobs vertically with AForge.NET BlobCounter?
I have zebra-striped images where each fringe is to be considered a blob for further processing, but which also contains blobs that should not be considered. I am using AForge.NET / C# / ...
6
votes
4answers
1k views
OpenCV image comparison in Android
[EDIT]
I have devised some code for image comparison. The matching part is still a bit flawed and I would love some assitance. The project can be found at - GitHub.
I have these two images :
Img1
...
0
votes
1answer
143 views
Modernizr tests/YepNope on Wordpress page
For the last few hours I've tried getting YepNope and some Modernizr tests working, but without any luck.
Modernizr is loaded in the head, jQuery, plugins.js and script.js at the bottom of the page ...
1
vote
1answer
57 views
Ace and IE: editable content cutting off at 2nd line of code
Edit SOLVED:
Initially I got under the impression that Ace will be completely unusable due to editable code cutting off on 2nd line. So I thought 'let's not even load it in IE'. Turns our the bug was ...
0
votes
0answers
106 views
How can I get a descriptor (SURF descriptor) for a given point?
I have a problem where I have a point in an image and I want to find the most similar point in another image. In order to do so I tried declaring my own keypoint and extracting a descriptor using ...
5
votes
1answer
367 views
Classification of detectors, extractors and matchers
I am new to opencv and trying to implement image matching between two images. For this purpose, I'm trying to understand the difference between feature descriptors, descriptor extractors and ...
