Questions tagged [mser]

In computer vision, maximally stable extremal regions (MSER) are used as a method of blob detection in images.

This technique is used to find correspondences between image elements from two images with different viewpoints. This method of extracting a comprehensive number of corresponding image elements contributes to the wide-baseline matching, and it has led to better stereo matching and object recognition algorithms.

63 questions
3
votes
1 answer

centroid ellipse MSER OPENCV

I am working on an image registration method and I would like to work with region based feature detectors. As representative and because it is already implemented in opencv, i thought of MSER. I know how to detect the MSER regions.MSER detector…
Ivánovick
  • 267
  • 1
  • 5
  • 17
3
votes
1 answer

How to use the () operator of mser of opencv

I am using opencv MSER class, cannot compile a use of () operator. I am not a c++ expert, so post question here, hope somebody can help. MSER class is defined including a () operator: class CV_EXPORTS_W MSER : public CvMSERParams { public: ... …
yorkdu
  • 103
  • 2
  • 12
3
votes
2 answers

MSER full implementation in MATLAB

I wanted to know if there is a full implementation of MSER (Maximally stable extremal regions) in MATLAB? The ones at VLFeat are Mex or C++ implementations and are imported to Matlab Thanks for the guidance.
user349026
2
votes
1 answer

How to remove overlapping contours and separate each character as an individual contour for character extraction?

I am trying to implement character extraction from images in Python using the MSER in opencv. This is my code till now: import cv2 import numpy as np # create MSER object mser = cv2.MSER_create() # convert image to grayscale gray =…
Shantanu Shinde
  • 932
  • 3
  • 23
  • 48
2
votes
1 answer

How to reduce the number of boxes/regions created in MSER

I have been trying to get less boxes with MSER since I have too many boxes created on the same element repeatedly with very little pixel differences. My code is as below: ## Get mser, and set parameters _delta = 10 _min_area = 250 _max_area =…
sayan_sen
  • 345
  • 4
  • 15
2
votes
1 answer

MSER Feature extraction in Python 3.5

I want to extract MSER features from an image in python3.5 but I am unable to find any solution. I am trying following code: import cv2 import sys mser = cv2.MSER_create() img = cv2.imread('signboard.jpg') gray = cv2.cvtColor(img,…
Asghar
  • 31
  • 4
2
votes
1 answer

Extract HOG from a single pixel using VLFEAT

I'm trying to extract points of interest to perform an image registration of clinical images. I've detected MSER from an image "I" using vl_mser: [R, F] = VL_MSER(...) which returns a region of seeds R and ellipsoids F. Now I would like to…
2
votes
0 answers

Mser Regions to surf and surf to Mser regions in Matlab

I am using matlab detectMSERFeatures to detect mser regions (in between two images). After that I am using surf to find out the the corresponding mser pair in the images. The function matchFeatures returns the pairs of points (x,y). My question is…
2
votes
2 answers

MSER Sample in OpenCV 2.4.2 on Visual Studio 2012

I'm running OpenCV 2.4.2, on Visual Studio 2012. I want to use MSER to detect text in images. I started off with the sample MSER sample program provided in the OpenCV directory, #include "opencv2/highgui/highgui.hpp" #include…
Riddhiman Dasgupta
  • 363
  • 1
  • 6
  • 22
2
votes
1 answer

Controlling the color used by MSERRegions.plot() in MATLAB?

I would like to visualize the partitioning of a number of MSER regions by plotting them in different colors, but the MSERRegions.plot() method from the Computer Vision toolbox doesn't accept a 'Color' argument. Nor does using hold all cause…
Kaelin Colclasure
  • 3,925
  • 1
  • 26
  • 36
1
vote
0 answers

Is there any library implementing MSER running on GPU?

I am using maximally stable extremal region (MSER) detector in OpenCV. However, the speed is slow when the image size is big. Is there any library (free or commercial) that has GPU version of MSER? I found from some online documents that MSER…
J S
  • 21
  • 4
1
vote
0 answers

How do I count the number of features detected through MSER?

I am trying to count the number of features detected by MSER feature detection algorithm in OPenCV Python. I have no idea how to do that. I would greatly appreciate it if someone helped me figure out the code. Below is the code I used for…
1
vote
1 answer

Maximally Stable Extremal Regions (MSER) Implementation in Document Image Character Patch Identification

My task is to identify character patches within the document image. Consider the image below: Based from the paper, to extract character patches, the MSER based method will be adopted to detect character candidates. "The main advantage of the…
alyssaeliyah
  • 2,214
  • 6
  • 33
  • 80
1
vote
0 answers

Dynamic localization of digits from a number from images in Python

I am working on a dynamic digit localization problem from a number in images in Python. What I exactly mean is: if I have an image like this: I want to separate all the digits like, 8, 0, 1 like this: I have tried and explored with MSER, but did…
Aditya Bhattacharya
  • 914
  • 2
  • 9
  • 22
1
vote
1 answer

Why to reshape MSER contours before detecting texts?

I am using MSER from opencv-python to detect text using the code from this stackoverflow question. Can anyone help me understand why the contour p is being reshaped to (-1, 1, 2) before computing the convex hull of the objects? The code is as…
Shreyas Moolya
  • 339
  • 4
  • 19