Tagged Questions
0
votes
1answer
56 views
Skin detection from hue-saturation histogram - OpenCV Python
I'm working on a little program in python to estimate the direction of pointing gestures with 2D picture from a monocular camera and I'm using OpenCV 2.3.
I know it's a bit tricky but I'm motivated! ...
0
votes
1answer
55 views
compare 2 histograms with Chi-Square
i want to compare 2 Histograms, which have 2 dimensions.
For this i want to use the Chi-Square-Metric.
My comparator looks like this function:
double Histogram::compareHistogram(Histogram *hist){
...
0
votes
1answer
35 views
Determine maximum distance using Earths Movers Distance
I'm trying to determine what is the maximum distance possible that could exist between any 2 histograms using the function EMD in OpenCV.
The reason is that I need to normalize (scale them on a range ...
1
vote
0answers
373 views
OpenCV HOG data layout?
I'm working with OpenCV's CPU version of Histogram of Oriented Gradients (HOG). I'm using a 32x32 image with 4x4 cells, 4x4 blocks, no overlap among blocks, and 15 orientation bins. OpenCV's ...
4
votes
3answers
255 views
Is it safe to do histogram comparison in this case?
As I don't know the limit of histogram comparison ,I decided to ask the wonderful community.
I have some images and I want to group them according to its similarity.every image has a unique colored ...
3
votes
1answer
523 views
Selecting best range of values from histogram curve
Scenario :
I am trying to track two different colored objects. At the beginning, user is prompted to hold the first colored object (say, may be a RED) at a particular position in front of camera ...
0
votes
1answer
322 views
Face detection using local binary pattern
As you know, LBP is a strong feature for face detection. Usually, SVM or other similar classifier is used for classification purpose for this feature.
But in some paper, Adaptive Boosting methods like ...
0
votes
1answer
585 views
Face recognition - Local Binary Pattern Histogram comparison
I have two images, i convert them to gray scale and find out the Local Binary Pattern for both of them. How can i compare the histograms to see if they match?. What is the formula? (also what is ...
0
votes
0answers
171 views
how to use libsvm with histograms of bags of words
I have managed to convert images into histogram representation of visual words. It could be something simple like the following(normalized):
[0.1, 0.2, 0, 0.1, 0, 0.05, 0.3, 0, 0, 0, 0.2, 0.05, 0]
...
7
votes
1answer
4k views
Drawing Histogram in OpenCV-Python
I was just trying to draw histogram using new OpenCV Python interface ( cv2 ).
Below is the code i tried:
import cv2
import numpy as np
import time
img = cv2.imread('zzz.jpg')
h = ...
1
vote
1answer
244 views
merging two cvHistograms in opencv
Is there a way to merge two CvHistograms?
Say we have CvHistogram* hist1 and CvHistogram* hist2.
Then, is there an automated way to produce a third histogram (hist3) with the addition of each color ...
0
votes
2answers
108 views
Grauman & Darrells' pyramid match kernel
I am student. My assignment is to pick a computer vision paper (from a provided list) and implement its algorithm. I chose Grauman and Darrells' The Pyramid Match Kernel:
Discriminative Classification ...
4
votes
1answer
761 views
Improving Speed of Histogram Back Projection
I am currently using OpenCV's built-in patch-based histogram back projection (cv::calcBackProjectPatch()) to identify regions of a target material in an image. With an image resolution of 640 x 480 ...
1
vote
1answer
1k views
Using skewness and kurtosis functions in image matching
I am using the skewness and kurtosis functions for image color Histogram in image retrieval system as a statistical color features then using these features to compare between two images to retrieve ...
